您好,登錄后才能下訂單哦!
這篇文章主要講解了“Knative Serving SDK開發的方法是什么”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Knative Serving SDK開發的方法是什么”吧!
在正式開始介紹 Knative Serving SDK 之前,我們先簡單介紹一下 Golang Context 的機理。因為在 Knative Serving 中 client、Informer 的初始化和信息傳遞完全是基于 Golang Context 實現的。
Golang 是從 1.7 版本開始引入的 Context ,Golang 的 Context 可以很好的簡化多個 goroutine 之間以及請求域間的數據傳遞、取消信號和截至時間等相關操作。Context 主要有兩個作用:
傳輸必要的數據;
進行協調控制,比如終止 goroutein、設置超時時間等。
Context 本身是一個接口。
type Context interface { Deadline() (deadline time.Time, ok bool) Done() <-chan struct{} Err() error Value(key interface{}) interface{} }
這個接口中定義了四個方法,下面分別介紹:
Deadline 方法是獲取設置的截止時間的意思,到了這個時間點,Context 會自動發起取消請求;
Done 方法返回一個只讀的 chan,如果該方法返回的 chan 可以讀取,則意味著 parent Context 已經發起了取消請求, 此時應該做清理操作,然后退出 goroutine 并釋放資源;
Err 方法返回取消的錯誤原因;
Value 方法獲取該 Context 上綁定的值,是一個鍵值對。所以要通過一個 Key 才可以獲取對應的值,這個值是線程安全的。
關于 Context 主要記住一點:可以通過 Value 傳遞數據,Value 是一個鍵值對結構。更多詳細的介紹可以參見下面這些文章:
Concurrency Patterns in Go
How to correctly use context.Context in Go 1.7
Using context cancellation in Go
Go Context
在 Context 的這些特性中,Knative Serving 中重度依賴的是 Value 功能。以 Service 的 Informer 初始化為例進行說明,這里可以看到源碼。
Informer “構造函數”是在 init 函數中自動注冊到 injection.Default 中的。當 Informer “構造函數”被調用之后會自動把生成的 Informer 注入到 Context 中 context.WithValue(ctx, Key{}, inf), inf.Informer()
。
從上圖中可以看到:Informer 初始化的時候需要調用 factory,而 factory 本身是從 Context 中獲取的。下面我們再看看 factory 是怎么初始化的。factory 的初始化。
上圖可以發現,factory 也是把“構造函數”注冊到 injection.Default 中,并會將生成的 SharedInformerFactory 注入到 Context 中。而且 factory 中使用的 client (鏈接 kube-apiserver 使用的對象)也是從 Context 獲取到的。
可以說 Knative Serving SDK 初始化的過程是面向 Context 編程的。關鍵對象是自動注入到 Context,在使用的時候從 Context 中取出。
順帶提一點,Knative Serving 的日志對象也是在 Context 保存的,當需要打印日志的時候先通過 logger := logging.FromContext(ctx)
從 Context 中拿到 logger,然后就可以使用了。這樣做的好處是可以通過管理 logger 對象,比如做 trace 功能。
如下所示是基于 logger 打印出來的日志,可以看到對于同一個請求的處理是可以通過 traceID 進行追蹤的。下面這段日志都是對 577f8de5-cec9-4c17-84f7-f08d39f40127
這個 trace 的處理。
{"level":"info","ts":"2019-08-28T20:24:39.871+0800","caller":"controller/service.go:67","msg":"Reconcile: default/helloworld-go","knative.dev/traceid":"be5ec711-6ca3-493c-80ed-dddfa21fd576","knative.dev/key":"default/helloworld-go"} {"level":"info","ts":"2019-08-28T20:24:39.871+0800","caller":"controller/controller.go:339","msg":"Reconcile succeeded. Time taken: 487.347μs.","knative.dev/traceid":"90653eda-644b-4b1e-8bdb-4a1a7a7ff0d8","knative.dev/key":"eci-test/helloworld-go"} {"level":"info","ts":"2019-08-28T20:24:39.871+0800","caller":"controller/service.go:106","msg":"service: default/helloworld-go route: default/helloworld-go ","knative.dev/traceid":"be5ec711-6ca3-493c-80ed-dddfa21fd576","knative.dev/key":"default/helloworld-go"} {"level":"info","ts":"2019-08-28T20:24:39.872+0800","caller":"controller/service.go:67","msg":"Reconcile: eci-test/helloworld-go","knative.dev/traceid":"22f6c77d-8365-4773-bd78-e011ccb2fa3d","knative.dev/key":"eci-test/helloworld-go"} {"level":"info","ts":"2019-08-28T20:24:39.872+0800","caller":"controller/service.go:116","msg":"service: default/helloworld-go revisions: 1 ","knative.dev/traceid":"be5ec711-6ca3-493c-80ed-dddfa21fd576","knative.dev/key":"default/helloworld-go"} {"level":"info","ts":"2019-08-28T20:24:39.872+0800","caller":"controller/service.go:118","msg":"service: default/helloworld-go revision: default/helloworld-go-cgt65 ","knative.dev/traceid":"be5ec711-6ca3-493c-80ed-dddfa21fd576","knative.dev/key":"default/helloworld-go"} {"level":"info","ts":"2019-08-28T20:24:39.872+0800","caller":"controller/controller.go:339","msg":"Reconcile succeeded. Time taken: 416.527μs.","knative.dev/traceid":"be5ec711-6ca3-493c-80ed-dddfa21fd576","knative.dev/key":"default/helloworld-go"} {"level":"info","ts":"2019-08-28T20:24:39.872+0800","caller":"controller/service.go:106","msg
介紹完 Knative Serving client 的初始化過程,下面我們看一下應該如何在代碼中用 Knative Serving SDK 進行編碼。 示例參見:https://github.com/knative-sample/serving-controller/blob/v0.1/cmd/app/app.go
這個示例中首先使用配置初始化 *zap.SugaredLogger
對象,然后基于 ctx := signals.NewContext()
生成一個 Context。signals.NewContext()
作用是監聽 SIGINT 信號,也就是處理 CTRL+c 指令。這里用到了 Context 接口的 Done 函數機制。
接著使用 ctx, informers := injection.Default.SetupInformers(ctx, cfg)
構造出所有的 informer,然后調用下面這段代碼執行注入,把 informer 注入到 Context 中。
// Start all of the informers and wait for them to sync. logger.Info("Starting informers.") if err := controller.StartInformers(ctx.Done(), informers...); err != nil { logger.Fatalw("Failed to start informers", err) }
實例代碼: https://github.com/knative-sample/serving-controller/blob/v0.1/pkg/controller/controller.go
如上所示,所有的 informer 都是從 Context 中獲取的。
最后 Controller 初始化一個 Reconciler 接口,接口的定義如下, 里面只有一個 Reconcile 函數。這個使用方式和 sigs.k8s.io/controller-runtime
使用的邏輯是一樣的。如果你之前寫過 Operator 之類的功能,對這個操作應該不會陌生。
// Reconciler is the interface that controller implementations are expected // to implement, so that the shared controller.Impl can drive work through it. type Reconciler interface { Reconcile(ctx context.Context, key string) error }
代碼示例: https://github.com/knative-sample/serving-controller/blob/v0.1/pkg/controller/service.go
現在就可以在 Reconcile 中通過 c.serviceLister.Services(namespace).Get(name)
這種方式直接操作 Seving 資源了。
感謝各位的閱讀,以上就是“Knative Serving SDK開發的方法是什么”的內容了,經過本文的學習后,相信大家對Knative Serving SDK開發的方法是什么這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。