Replies: 1 comment 1 reply
-
what about using not the same database, but on the same postgres server? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I don't really know how to ask this and it is super easy to do with redis. I have 2 different S3 buckets with different access/secret keys that I need to mount at different locations. However, we have an initiative to move them to postgres instead of redis for the metadata. These are new mounts and we will manually copy the actual content over.
Doing this in redis is easy because I can do something like
and the
/1
and/2
of redis allows for multiple logical allocations. However, if I try doing the same thing but instead of redis doing something likeit works for the first but errors for the second. I don't have the option of creating a new database schema for every new setup. Is there a way to pass a flag or something to provide it with a logical id like how it works for redis. What is the way to support multiple storages using the same database? FYI, I have over 300 of these to do.
Beta Was this translation helpful? Give feedback.
All reactions