Replies: 1 comment 2 replies
-
When redis gets full thing among other things you will not be able to add more jobs. There is nothing special about this, as maintainer of your redis instance you must make sure that it does not get full, set a warning when it reaches 80% or so. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I read at this issue, that
noeviction
should be set as Redis eviction policy. (And the same developer tellsnoeviction
must be used with bull on thetaskforcesh
version of this queue.)In this case, what would happen if the Redis gets full and
noeviction
is set? Would the queue crash or hang, because it might not be able to maintain its internal Redis keys? Or could the queue go on, especially if we stopped feeding the queue with jobs?(Bonus question: what is the relationship between the OptimalBits and taskforcesh version of bull?)
Beta Was this translation helpful? Give feedback.
All reactions