diff options
| author | grodrigues3 <grodrigues3@users.noreply.github.com> | 2017-03-31 10:18:47 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-31 10:18:47 -0700 |
| commit | afb89a48ff88c456601461e6fa55d479e93b9fb4 (patch) | |
| tree | 95a87d683c36d38032a0c137d32f20462abc4074 | |
| parent | 0acb016b484a649de90bb97f0fe17a3ebb55fd01 (diff) | |
| parent | a42614312f0f0375d8675f52392888c334a90c51 (diff) | |
Merge pull request #412 from guangxuli/fix_error_link
Update the file link path
| -rw-r--r-- | contributors/design-proposals/apiserver-watch.md | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/contributors/design-proposals/apiserver-watch.md b/contributors/design-proposals/apiserver-watch.md index 2fc8900a..ef395036 100644 --- a/contributors/design-proposals/apiserver-watch.md +++ b/contributors/design-proposals/apiserver-watch.md @@ -123,8 +123,7 @@ watch to etcd, responsible for watching all the changes of objects of a given resource type. However, this watch can potentially expire at any time and reconnecting can return "too old resource version". In that case relisting is necessary. In such case, to avoid LIST requests coming from all watchers at -the same time, we can introduce an additional etcd event type: -[EtcdResync](../../pkg/storage/etcd/etcd_watcher.go#L36) +the same time, we can introduce an additional etcd event type: EtcdResync Whenever relisting will be done to refresh the internal watch to etcd, EtcdResync event will be send to all the watchers. It will contain the @@ -133,7 +132,7 @@ the same time, we can introduce an additional etcd event type: Thus, we need to create the EtcdResync event, extend watch.Interface and its implementations to support it and handle those events appropriately in places like - [Reflector](../../pkg/client/cache/reflector.go) + [Reflector](https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/client-go/tools/cache/reflector.go) However, this might turn out to be unnecessary optimization if apiserver will always keep up (which is possible in the new design). We will work |
