-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* vendor: update cortex Don't be blocked on cortexproject/cortex#1345 to be merged and still maintain the fork Signed-off-by: Goutham Veeramachaneni <gouthamve@gmail.com> * add memcached ksonnet Signed-off-by: Goutham Veeramachaneni <gouthamve@gmail.com> * commit generated proto Signed-off-by: Goutham Veeramachaneni <gouthamve@gmail.com>
- Loading branch information
Showing
29 changed files
with
397 additions
and
263 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
local memcached = 'memcached/memcached.libsonnet'; | ||
|
||
memcached { | ||
// Memcached instance used to cache chunks. | ||
memcached_chunks: $.memcached { | ||
name: 'memcached', | ||
max_item_size: '2m', | ||
memory_limit_mb: 4096, | ||
}, | ||
|
||
// Dedicated memcached instance used to temporarily cache index lookups. | ||
memcached_index_queries: $.memcached { | ||
name: 'memcached-index-queries', | ||
max_item_size: '5m', | ||
}, | ||
|
||
// Dedicated memcached instance used to dedupe writes to the index. | ||
memcached_index_writes: $.memcached { | ||
name: 'memcached-index-writes', | ||
}, | ||
} |
46 changes: 13 additions & 33 deletions
46
vendor/github.com/cortexproject/cortex/pkg/chunk/aws/dynamodb_storage_client.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
vendor/github.com/cortexproject/cortex/pkg/chunk/cache/background.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
60 changes: 30 additions & 30 deletions
60
vendor/github.com/cortexproject/cortex/pkg/chunk/cache/cache.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
vendor/github.com/cortexproject/cortex/pkg/chunk/cache/diskcache.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.