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
From the gearadmin --help output one might get the impression that gearman does not deduplicate jobs and that it holds internally a number of jobs that could be greater than the number of unique jobs (all-duplicate=unique):
--show-unique-jobs Show unique jobs on server.
--show-jobs Show all jobs on the server.
The text was updated successfully, but these errors were encountered:
octavn
changed the title
Confusing --show-unique-jobs explainer in gearadmin --help
Confusing: --show-unique-jobs explainer in gearadmin --help
May 16, 2022
esabol
added a commit
to esabol/gearmand
that referenced
this issue
May 16, 2022
From the
gearadmin --help
output one might get the impression that gearman does not deduplicate jobs and that it holds internally a number of jobs that could be greater than the number of unique jobs (all-duplicate=unique):The
gearadmin --show-unique-jobs
command collects the unique jobs information from theshow unique jobs
command available in the gearmand TEXT protocol which "List all of the unique job ids that the server currently is processesing or waiting to process.".To avoid/remove the confusion, the above one liner explanation for
--show-unique-jobs
should be changed to "Show the unique ids for the jobs on the server" in https://github.com/gearman/gearmand/blob/master/bin/gearadmin.cc#L142.The text was updated successfully, but these errors were encountered: