Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Understanding the interface #82

Closed
MarkVaughn opened this issue Feb 26, 2015 · 3 comments
Closed

Understanding the interface #82

MarkVaughn opened this issue Feb 26, 2015 · 3 comments

Comments

@MarkVaughn
Copy link

I am not sure where to find support for this, please check this image of my console
beanstalk

I'm not sure what the total-jobs column means? First I thought it was completed jobs but reading your tooltip
"cumulative count of jobs created in this tube in the current beanstalkd process"
sounds like I have 400+ jobs in memory hung up in some sort of infinity state? how can I see the jobs "in the process"

also is current using + current watching mean there are 5 processes trying to work through this?

@pentium10
Copy link
Collaborator

total-jobs as the protocol says is how many jobs were on that tube since beanstalkd server is up (not your script).

you don't have any jobs to process, and total is just a stat value so those messages are not in memory.

  • "current-using" is the number of open connections that are currently
    using this tube.
  • "current-waiting" is the number of open connections that have issued a
    reserve command while watching this tube but not yet received a response.
  • "current-watching" is the number of open connections that are currently
    watching this tube.

you can ask support questions on stackoverflow, make sure you tag the question with beanstalkd

http://stackoverflow.com/questions/tagged/beanstalkd

@MarkVaughn
Copy link
Author

thanks for clarifying, so I have 5 connections to beanstalkd right (3+2)?

@pentium10
Copy link
Collaborator

you have 3 connections

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants