Submit Search
Serverless Event Streaming with Pulsar Functions-xiaolong
•
3 likes
•
215 views
StreamNative
Follow
Google DevFest 2019 in Beijing
Read less
Read more
1 of 45
Download now
More Related Content
Serverless Event Streaming with Pulsar Functions-xiaolong
1.
Serverless Event Streaming With
Pulsar Functions Xiaolong Ran @wolfstudy 2019/12/08
2.
• 开源项⽬爱好者,Go 语⾔爱好者 •
TiDB -> BitMain -> StreamNative • Apache Pulsar committer • Go Functions • pulsar-client-go • pulsarctl • … • https://github.com/wolfstudy Who am I
3.
⽬录 Apache Pulsar 简介 Apache
Pulsar 架构 Go Function 的设计 Go Function 的实现 Go Function 使⽤示例 Pulsar Function Runtime Pulsar Function Worker
4.
What is Apache
Pulsar
5.
为什么要“造轮⼦” • 没有系统能够解决遇到的问题和规模 • 多租户
- 百万 Topics - 低延时 - 持久化 - 跨地域复制 • 已有的系统存在的问题 • 分区模型紧耦合(存储和计算)- 不是云原⽣的设计 • 存储模型过于简单,强依赖⽂件系统 • I/O 不隔离:消费者在清除 backlog 的时候会影响其它⽣产者和消费者 • 运维太痛苦 - 替换机器、服务扩容需要强制 reblance 导致服务对外不可⽤ • 可能出现消息丢失的情况
6.
Flexible Messaging
7.
Flexible Messaging • One
data, different ways to consume • Queuing (aka stateless messaging) • Shared (* RabbitMQ) • Streaming (aka stateful messaging) • Exclusive • Failover (* Kafka) • Key_Shared
8.
Multi Tenancy
9.
Geo-Replication
10.
Cloud-native Architecture 计算存储分离 •独⽴扩展 • 瞬时失效恢复 •
扩容⽆需数据均衡
11.
Pulsar View -
Topic
12.
Pulsar View -
Partition
13.
Pulsar View -
Segment
14.
Event Stream is
the right foundation for your data
15.
Apache pulsar ⽣态
16.
When Event Streaming Meets
Serverless
17.
Introduce Pulsar Functions
18.
Pulsar Functions • A
serverless event streaming framework • Lightweight computation • Event - first, Stream - first • Multi languages • Multi runtimes • SDK - less && SDK
19.
Pulsar Functions
20.
Pulsar Functions
21.
Pulsar Functions
22.
Pulsar Functions 反射 Plugin
23.
Pulsar Functions 反射 Plugin • Go
是⼀⻔静态类型的语⾔ • 反射⽀持的相对较弱 • 注⼊⾮法模块,会带来⼀定安全隐患 • 如果模块出现问题,会导致服务奔溃 • 给版本管理带来了困难 • 社区不成熟
24.
Go functions User
Rule func () func () error func (input) error func () (output, error) func (input) (output, error) func (context.Context) error func (context.Context, input) error func (context.Context) (output, error) func (context.Context, input) (output, error)
25.
Go functions User
Rule Start() 函数的⼊参必须是函数类型 ⽤户函数的输⼊参数可以是 0-2 个 如果有两个参数,第⼀个必须是 context.Context 如果只有⼀个输⼊参数,必须是 context.Context ⽤户函数的输出参数可以是 0-2 个 如果返回两个参数,第⼆个参数必须是 error 如果只返回⼀个参数,必须是 error
26.
Go functions Context
27.
Go functions -
Use Case
28.
Go functions -
Use Case
29.
Pulsar Functions -
CLI
30.
Go functions -
Close channel 没有简单易⾏的⽅法去检查管道是否没有通过改变它的状态来 关闭。 关闭⼀个已经关闭的管道会触发 panic,所以,关闭者不知道 管道是否关闭仍去关闭它,这是⼀个危险的⾏为。 发送数据到⼀个关闭的管道会触发 panic, 所以,发送者不知 道管道是否关闭仍去发送消息给它,这是⼀个危险的⾏为。 原则:要在 producer 端关闭 channel
31.
Pulsar functions 使⽤场景 ETL Data
Enrichment Data Filtering Dynamic Routing Alerts and Threholds
32.
Flexible Runtime Colocate with
Broker - Thread & Process Managed Function Workers - Thread & Process External Schedulers - Container Kubernetes
33.
Colocate with Brokers
34.
Manager Function Workers
35.
External Schedulers -
Kubernetes
36.
Auto load balancing Pulsar
Functions use Pulsar’s auto-balancing mechanism on consumer Shared Subscription Failover Subscription Key-Shared Subscription (feature)
37.
Pulsar Function worker
38.
Pulsar Function worker •
存放元数据信息 • 接收并存储 Function 所有的状态请求 • 为了防⽌ topic 变⼤,写⼊时会进⾏压缩 • 所有数据使⽤ FQFN 作为 key 写⼊
39.
Pulsar Function worker •
存放调度分配信息 • 接收并存储 leader 监听到的所有状态请求 • 使⽤垃圾收集,防⽌ topic 变⼤ • 所有 worker 会订阅 assignment topic
40.
Pulsar Function worker •
管理 Functions Worker 的 Membership • 每⼀个 Functions Worker 都会订阅 Coordination Topic • Pulsar Broker 会跟踪处于活跃状态的 consumer • 通过查询活跃状态的 consumer,获取所有处于活跃状 态的 Functions Worker
41.
Complex Event Processing
Pipelines
42.
Community • Mailing lists:
[email protected]
[email protected]
•
Github: https://github.com/apache/pulsar https://github.com/apache/pulsar-translation • Slack: https://apache-pulsar.slack.com/ https://apache-pulsar.herokuapp.com/ • WeChat
43.
Apache Pulsar Users(China)
44.
Apache Pulsar Users(global)
45.
Thanks
Download