您好,登錄后才能下訂單哦!
上一期我們介紹了如何基于 Knative Serverless 技術(shù)實(shí)現(xiàn)天氣服務(wù)-上篇,首先我們先來(lái)回顧一下上篇介紹的內(nèi)容:
接下來(lái)我們介紹如何通過(guò)表格存儲(chǔ)提供的通道服務(wù),實(shí)現(xiàn) Knative 對(duì)接表格存儲(chǔ)事件源,訂閱并通過(guò)釘釘發(fā)送天氣提醒通知。
回顧一下整體架構(gòu):
cdn.com/b4bb37ed5338e0a138c76a2e72a4a9583dbf7236.png">
首先我們介紹一下表格存儲(chǔ)提供的通道服務(wù)。通道服務(wù)(Tunnel Service)是基于表格存儲(chǔ)數(shù)據(jù)接口之上的全增量一體化服務(wù)。通道服務(wù)為您提供了增量、全量、增量加全量三種類型的分布式數(shù)據(jù)實(shí)時(shí)消費(fèi)通道。通過(guò)為數(shù)據(jù)表建立數(shù)據(jù)通道,您可以簡(jiǎn)單地實(shí)現(xiàn)對(duì)表中歷史存量和新增數(shù)據(jù)的消費(fèi)處理。通過(guò)數(shù)據(jù)通道可以進(jìn)行數(shù)據(jù)同步、事件驅(qū)動(dòng)、流式數(shù)據(jù)處理以及數(shù)據(jù)搬遷。這里事件驅(qū)動(dòng)正好契合我們的場(chǎng)景。
先看一下處理流程圖:
下面我們來(lái)詳細(xì)介紹一下。
在 Knative 中自定義事件源其實(shí)很容易,可以參考官方提供的自定義事件源的實(shí)例:https://github.com/knative/docs/tree/master/docs/eventing/samples/writing-a-source。
我們這里定義數(shù)據(jù)源為 AliTablestoreSource。代碼實(shí)現(xiàn)主要分為兩部分:
關(guān)于自定義 TableStore 事件源實(shí)現(xiàn)參見(jiàn) GitHub 源代碼:https://github.com/knative-sample/tablestore-source
部署自定義事件源服務(wù)如下:
從 https://github.com/knative-sample/tablestore-source/tree/master/config 中可以獲取事件源部署文件,執(zhí)行下面的操作:
kubectl apply -f 200-serviceaccount.yaml -f 201-clusterrole.yaml -f 202-clusterrolebinding.yaml -f 300-alitablestoresource.yaml -f 400-controller-service.yaml -f 500-controller.yaml -f 600-istioegress.yaml
部署完成之后,我們可以看到資源控制器已經(jīng)開(kāi)始運(yùn)行:
[root@iZ8vb5wa3qv1gwrgb3lxqpZ config]# kubectl -n knative-sources get pods
NAME READY STATUS RESTARTS AGE
alitablestore-controller-manager-0 1/1 Running 0 4h22m
由于我們是通過(guò) Knative Eventing 中 Broker/Trigger 事件驅(qū)動(dòng)模型對(duì)天氣事件進(jìn)行處理。首先我們創(chuàng)建用于數(shù)據(jù)接收的 Broker 服務(wù)。
apiVersion: eventing.knative.dev/v1alpha1
kind: Broker
metadata:
name: weather
spec:
channelTemplateSpec:
apiVersion: messaging.knative.dev/v1alpha1
kind: InMemoryChannel
這里需要說(shuō)明一下,創(chuàng)建事件源實(shí)例其實(shí)就是在表格存儲(chǔ)中創(chuàng)建通道服務(wù),那么就需要配置訪問(wèn)通道服務(wù)的地址、accessKeyId 和 accessKeySecret,這里參照格式:{ "url":"https://xxx.cn-beijing.ots.aliyuncs.com/", "accessKeyId":"xxxx","accessKeySecret":"xxxx" }
設(shè)置并進(jìn)行 base64 編碼。將結(jié)果設(shè)置到如下 Secret 配置文件?alitablestore
屬性中:
apiVersion: v1
kind: Secret
metadata:
name: alitablestore-secret
type: Opaque
data:
# { "url":"https://xxx.cn-beijing.ots.aliyuncs.com/", "accessKeyId":"xxxx","accessKeySecret":"xxxx" }
alitablestore: "<base64>"
創(chuàng)建 RBAC 權(quán)限:
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: eventing-sources-alitablestore
subjects:
- kind: ServiceAccount
name: alitablestore-sa
namespace: default
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: eventing-sources-alitablestore-controller
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: alitablestore-sa
secrets:
- name: alitablestore-secret
創(chuàng)建 AliTablestoreSource 實(shí)例,這里我們?cè)O(shè)置接收事件的 sink
為上面創(chuàng)建的 Broker 服務(wù)。
---
apiVersion: sources.eventing.knative.dev/v1alpha1
kind: AliTablestoreSource
metadata:
labels:
controller-tools.k8s.io: "1.0"
name: alitablestoresource
spec:
# Add fields here
serviceAccountName: alitablestore-sa
accessToken:
secretKeyRef:
name: alitablestore-secret
key: alitablestore
tableName: weather
instance: knative-weather
sink:
apiVersion: eventing.knative.dev/v1alpha1
kind: Broker
name: weather
創(chuàng)建完成之后,我們可以看到運(yùn)行中的事件源:
[root@iZ8vb5wa3qv1gwrgb3lxqpZ config]# kubectl get pods
NAME READY STATUS RESTARTS AGE
tablestore-alitablestoresource-9sjqx-656c5bf84b-pbhvw 1/1 Running 0 4h9m
如何進(jìn)行釘釘通知呢,我們可以創(chuàng)建一個(gè)釘釘?shù)娜航M(可以把家里人組成一個(gè)釘釘群,天氣異常時(shí),給家人一個(gè)提醒),添加群機(jī)器人:
獲取 webhook :
這里我們假設(shè)北京 (110000),日期:2019-10-13, 如果天氣有雨,就通過(guò)釘釘發(fā)送通知提醒,則服務(wù)配置如下:
apiVersion: serving.knative.dev/v1beta1
kind: Service
metadata:
name: day-weather
spec:
template:
spec:
containers:
- args:
- --dingtalkurl=https://oapi.dingtalk.com/robot/send?access_token=xxxxxx
- --adcode=110000
- --date=2019-10-13
- --dayweather=雨
image: registry.cn-hangzhou.aliyuncs.com/knative-sample/dingtalk-weather-service:1.2
關(guān)于釘釘提醒服務(wù)具體實(shí)現(xiàn)參見(jiàn) GitHub 源代碼:https://github.com/knative-sample/dingtalk-weather-service
最后我們創(chuàng)建 Trigger訂閱天氣事件,并且觸發(fā)天氣提醒服務(wù):
apiVersion: eventing.knative.dev/v1alpha1
kind: Trigger
metadata:
name: weather-trigger
spec:
broker: weather
subscriber:
ref:
apiVersion: serving.knative.dev/v1alpha1
kind: Service
name: day-weather
訂閱之后,如果北京 (110000),日期:2019-10-13, 天氣有雨,會(huì)收到如下的釘釘提醒:
這里其實(shí)還有待完善的地方:
有興趣的可以繼續(xù)完善當(dāng)前的天氣服務(wù)功能。
本文介紹了如何在 Knative 中自定義事件源,并通過(guò)事件驅(qū)動(dòng)接收天氣變化信息,訂閱并通過(guò)釘釘推送通知提醒。這樣基于 Knative Serverless 技術(shù)實(shí)現(xiàn)天氣服務(wù)整體實(shí)現(xiàn)就介紹完了。有興趣的同學(xué)可以針對(duì)上面提到的不足繼續(xù)研究。還是那句話,做好天氣服務(wù)不容易,但還好我有 Knative。
“ 阿里巴巴云×××icloudnative×××erverless、容器、Service Mesh等技術(shù)領(lǐng)域、聚焦云原生流行技術(shù)趨勢(shì)、云原生大規(guī)模的落地實(shí)踐,做最懂云原生開(kāi)發(fā)×××
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。