Trying to see if Garage works as a backend state store for Apache Flink #975
Labels
No labels
action
check-aws
action
discussion-needed
action
for-external-contributors
action
for-newcomers
action
more-info-needed
action
need-funding
action
triage-required
kind
correctness
kind/experimental
kind
ideas
kind
improvement
kind
performance
kind
testing
kind
usability
kind
wrong-behavior
prio
critical
prio
low
scope
admin-api
scope
admin-sdk
scope
background-healing
scope
build
scope
documentation
scope
k8s
scope
layout
scope
metadata
scope
ops
scope
rpc
scope
s3-api
scope
security
scope
telemetry
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: Deuxfleurs/garage#975
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Hi There,
I was testing with my local instance, seeing if I can use Garage as a target bucket for Flink, but I've tried many different combo's of settings and keep getting a 403 as folllows.
Just wondering if this is something that can be got working by tuning some settings or whether I'm flogging a dead horse and should resign myself to use MinIo?
garage server:
flink errors:
Thanks,
Jon.
Hello,
Thanks for trying out Garage.
Unless Flink is trying to use unsupported s3 features, which is not the case here, this should work. Invalid signature errors are generally caused by a bad configuration of the access credentials, or by reverse proxies that mess with the headers.
I don't see an obvious error in the configuration you gave, but it's worth double-checking. In particular, the region parameter should match the value you put in your
garage.toml
configuration file.You can enable debug mode for the API part by setting the environment variable
RUST_LOG=garage_api=debug,garage_api_common=debug,garage_api_s3=debug
, your logs should then contain more details about the signature which could help us troubleshoot the issue.