About Minio... I tried to find reason
About Minio... I tried to find reason for signature mismatch but my rust skills are limited...
15 Replies
MinIO
MinIO | S3 Compatible Storage for AI
MinIO's High Performance Object Storage is Open Source, Amazon S3 compatible, Kubernetes Native and is designed for cloud native workloads like AI.
if it's S3 compatible, it should work. We have instructions on how to use R2 which is another S3 compatible objectstore.
https://github.com/get-convex/convex-backend/tree/main/self-hosted#using-s3-storage
@Spioune helped implement it and may be able to give you pointers if they're around.
GitHub
convex-backend/self-hosted at main · get-convex/convex-backend
The open-source reactive database for app developers - get-convex/convex-backend
@Erkka @Nipunn I just tried with a minio docker container and everything works fine
docker-compose.yaml
.env
for HA, only one instance of the convex backend can run at the same time (because of transactions) but I guess with docker swarm/kubernetes if the server crashes you can spawn another instance on another node
I see you don't use https. Problem is with signed urls
assuming your database and minio are HA also
ah I will try with https later and let you know
What I know is that most open source solutions use path style and I assume my problem has something to do with virtual host style paths (although in minio those "seem" to work okay)
you are using a subdomain?
library used forces virtual host style
I
I'm not sure how endpoint should look like in that case but it seems to add bucket to endpoint url as well (maybe that is reason for signature mismatch)
How does your S3_ENDPOINT_URL env variable look like ?
it is the minio lb url
or ingress
but I can see from Convex logs that bucket has been added in front
did you set MINIO_DOMAIN env variable ? (To enable virtual host style url)
no because I use minio-operator. Like I said virtual hosts seem to work in minio side...
Do you have a way to inspect http requests to your minio instance with something like wireshark ?
I suspect some header mismatch
maybe you need to set the Host header with your reverse proxy (nginx, traefik, caddy...)
just be very careful to ensure locking if you use HA
if two committers were accidentally running at the same time, it could be bad. like "data corruption" bad, in terms of transactional consistency
we utliize some pretty careful database locks to prevent this in the cloud product