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
{{ message }}
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.
Describe the bug
As zookeeper takes lock for any operation, it creates znodes in below format
/conductor/conductor-lock/workflow-uuid/sequential-epephermal-uuid
Now these epephermal nodes get deleted but the the znode at workflow uuid is persistence once and is not getting deleted, and and we have more and more workflows getting processed, number of these persistence znodes increase inside the parent conductor-lock znode. Zookeeper suggests max size of znode to be 1 MB, this ever growing znode is a problem.
To Reproduce
Steps to reproduce the behavior:
Go to conductor
connect to zookeeper server
run a workflow and check znodes getting created for workflow
even after worklow execution has completed, workflow znode stays
Expected behavior
workflow znode should be deleted after workflow is finalized
The text was updated successfully, but these errors were encountered:
Hi @mithlesh135 I would recommend using Redis for locks. Zookeeper support exists for the legacy reasons and is quite a heavy solution to maintain. Redis based locks are going to be much more lightweight.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Describe the bug
As zookeeper takes lock for any operation, it creates znodes in below format
/conductor/conductor-lock/workflow-uuid/sequential-epephermal-uuid
Now these epephermal nodes get deleted but the the znode at workflow uuid is persistence once and is not getting deleted, and and we have more and more workflows getting processed, number of these persistence znodes increase inside the parent conductor-lock znode. Zookeeper suggests max size of znode to be 1 MB, this ever growing znode is a problem.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
workflow znode should be deleted after workflow is finalized
The text was updated successfully, but these errors were encountered: