Is it possible the env var isn't being
# spicedb
b
Is it possible the env var isn't being picked up? I feel like
SPICEDB_DATASTORE_READ_REPLICA_CONN_POOL_READ_MAX_OPEN
isn't being respected either because I have it set to
10
and I see 60 connections to the replica 😐
v
it's entirely possible it's not properly wired up, mind opening an issue?
k
It seems like the flag is registered as
datastore-read-replica-conn-pool-max-open
without the “read” after “conn-pool” (manpage also says the same), small fix for that https://github.com/authzed/spicedb/pull/2276
b
I guess the question is - is the documentation incorrect or the flag? The extra "read" does seem superfluous given it's the read replica
v
The PR above got merged, so it just changes the name to follow the convention of the previous flags. It's redundant, but it also follows the intuition of the other flags.