You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently to change the configs such as pg_net.ttl/pg_net.batch_size we need to restart the worker. This generates a failure plus some unnecessary log lines.
Solution
With shared memory, plus a GucStringAssignHook we don't need to restart the worker. Once a user does SET pg_net.batch_size this should change the config on the next worker iteration.
The text was updated successfully, but these errors were encountered:
Problem
Currently to change the configs such as
pg_net.ttl
/pg_net.batch_size
we need to restart the worker. This generates a failure plus some unnecessary log lines.Solution
With shared memory, plus a
GucStringAssignHook
we don't need to restart the worker. Once a user doesSET pg_net.batch_size
this should change the config on the next worker iteration.The text was updated successfully, but these errors were encountered: