-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
Support custom endpoint for S3 Chunk Store #699
Comments
Filed PR in Cortex: cortexproject/cortex#1476 |
PR in Cortex merged, need to port back to Loki. |
port back to Loki PR: #705 |
@mizeng would love to know if you've got Loki now working with Ceph as we're about to try doing the same thing... |
@ahrkrak Ceph Object Store? Yes, it is working. |
@mizeng do you run the rgw on http or https? |
My loki configuration of support ceph as below, worked well
|
@mizeng @ningyougang can you please help me to access the ceph object storage with loki |
Is your feature request related to a problem? Please describe.
I use Ceph Object Store which has S3 compatible API. However it uses
Path style
S3 URL like (http://s3endpoint/BUCKET), and it can not support by current Loki.Loki put the bucket prefixed to the endpoint (
Virtual-hosted Style
)as the final endpoint (http://BUCKET.s3endpoint), which can not be used here. And I always get error like below:For the details of the 2 styles, reference can be found here
Describe the solution you'd like
Provide a new config to let user choose use
Path style
orVirtual-hosted Style
.Thanks to the answer in aws/aws-sdk-go#1585.
The text was updated successfully, but these errors were encountered: