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
Afaict lua-cassandra doesn't automatically detect changes in the ring topology. You have to manually call cluster:refresh() for it to pick up any change.
This is a problem when we're replacing nodes in the C* cluster since the driver will keep trying to connect to the old ones and ignore any new host.
We should just call refresh() even N seconds, ideally after the response has been returned.
The text was updated successfully, but these errors were encountered:
Afaict lua-cassandra doesn't automatically detect changes in the ring topology. You have to manually call
cluster:refresh()
for it to pick up any change.This is a problem when we're replacing nodes in the C* cluster since the driver will keep trying to connect to the old ones and ignore any new host.
We should just call
refresh()
even N seconds, ideally after the response has been returned.The text was updated successfully, but these errors were encountered: