Skip to content

Commit

Permalink
Manually fixing docs, since gendocs messes up the links.
Browse files Browse the repository at this point in the history
  • Loading branch information
lavalamp committed Sep 11, 2015
1 parent b225c1d commit 82d6489
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/design/event_compression.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Instead of a single Timestamp, each event object [contains](http://releases.k8s.

Each binary that generates events:
* Maintains a historical record of previously generated events:
* Implemented with ["Least Recently Used Cache"](https://github.com/golang/groupcache/blob/master/lru/lru.go) in [`pkg/client/unversioned/record/events_cache.go`](../../pkg/client/unversioned/record/events_cache.go).
* Implemented with ["Least Recently Used Cache"](https://github.com/golang/groupcache/blob/master/lru/lru.go) in [`pkg/client/record/events_cache.go`](../../pkg/client/record/events_cache.go).
* The key in the cache is generated from the event object minus timestamps/count/transient fields, specifically the following events fields are used to construct a unique key for an event:
* `event.Source.Component`
* `event.Source.Host`
Expand Down
2 changes: 1 addition & 1 deletion docs/proposals/apiserver-watch.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,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/unversioned/cache/reflector.go)
[Reflector](../../pkg/client/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
Expand Down

0 comments on commit 82d6489

Please sign in to comment.