Getting a connection error when we try to update t...
# ask-questions
g
Getting a connection error when we try to update the metrics in experiment, not sure what it means, something we need to change on our connection permission?
here's the error screenshot
f
Can you check what the connection limit is currently for the GrowthBook user?
select * from pg_user_info
If it's really low, you can just increase it with something like
ALTER USER growthbook CONNECTION LIMIT 20;
If it's already pretty high, that might indicate a memory leak in our query engine that we need to fix.
g
cool thanks, let me check