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
Hi,
I have some code written in Erlang that consumes from a topic, but after about 8-10 min, I get the error "payload connection down
reason:{shutdown,ssl_closed}". I'm consuming other topics under the same bootstrap server and none of them shuts down, it's only this topic. This is the config I have, brod version is 3.15.0
I initially tried adding this line in the config first: {reconnect_cool_down_seconds, 10} and then {extra_sock_opts, [{keepalive, true}]}, but both didn't resolve the issue.
Would someone have an idea what could be the issue? Let me know if you need more information.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi,
I have some code written in Erlang that consumes from a topic, but after about 8-10 min, I get the error "payload connection down
reason:{shutdown,ssl_closed}". I'm consuming other topics under the same bootstrap server and none of them shuts down, it's only this topic. This is the config I have, brod version is 3.15.0
I initially tried adding this line in the config first: {reconnect_cool_down_seconds, 10} and then {extra_sock_opts, [{keepalive, true}]}, but both didn't resolve the issue.
Would someone have an idea what could be the issue? Let me know if you need more information.
Config =
[
{ssl, true},
{reconnect_cool_down_seconds, 10},
{sasl, {scram_sha_512, get_user(), get_password()}}
]
ok = brod:start_client(Bootstrap_endpoints, Client_id, Config)
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions