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
The subscriber actor reported an error to subscribe to a new topic with error zk: could not connect to a server;
More than a minute after the first error the second one appeared but this time it was zk: node does not exist;
From that moment on error zk: node does not exist kept reappearing every 500ms;
My theory is that after the initial connection error it took the ZooKeeper client so long to re-establish the connection that our ephemeral registration node expired but the subscriber kept acting as if it existed. To fix this issue we need to make the subscriber handle the case of missing registration gracefully.
The text was updated successfully, but these errors were encountered:
Following sequence of events was observed:
zk: could not connect to a server
;zk: node does not exist
;zk: node does not exist
kept reappearing every 500ms;My theory is that after the initial connection error it took the ZooKeeper client so long to re-establish the connection that our ephemeral registration node expired but the subscriber kept acting as if it existed. To fix this issue we need to make the subscriber handle the case of missing registration gracefully.
The text was updated successfully, but these errors were encountered: