-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Remove shared_store and shared_store_key_prefix from shipper and compactor #10840
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
a043c56
6eb0245
450c748
b5ff6a9
bedaac8
3e01c94
b64fd40
7272225
a3d0395
b8a7d59
7c5abbe
cd70820
fd8c322
7bfff9b
203c422
fb73c48
0d4416a
58f7935
6f2f476
22f8f97
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,6 @@ storage_config: | |
tsdb_shipper: | ||
active_index_directory: /loki/index | ||
cache_location: /loki/index_cache | ||
shared_store: s3 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same question as before I think the names of the examples need to be changed, otherwise it's confusing to not see S3 anywhere in the example. (Same for the other examples, not going to comment on every single one.) Also kind of wondering if having a dozen examples makes sense anymore if they're all going to mostly be the same... |
||
aws: | ||
s3: s3://access_key:secret_access_key@custom_endpoint/bucket_name | ||
s3forcepathstyle: true | ||
s3forcepathstyle: true |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,4 +20,3 @@ schema_config: | |
index: | ||
period: 24h | ||
prefix: index_ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure about removing them. Shouldn't we rather deprecate them first and later remove it?
IIUC, as it currently works, you can write index files and chunks to different storages. I doubt anyone will be doing this but If we remove this, any user in this situation won't be able to upgrade Loki. Instead, by deprecating it, we let the user upgrade and do their diligence to deprecate it on their end.