Giter Club home page Giter Club logo

Comments (3)

alitto avatar alitto commented on May 14, 2024

Hey @mylxy!
The value reported by pool.RunningWorkers() is the number of worker gorutines that is currently running (either executing a task or idle), so it won't necessarily match the total number of tasks that were submitted to the pool.
In this example, you are instantiating the pool with a limit of 10 workers (first argument passed to pond.New), which means there cannot be more than 10 goroutines processing tasks at any given time.
Once all 20 tasks have completed, workers start to become idle since there are no more tasks in the queue. This is why the number of idle workers starts to increase. But at the same time, idle workers are gradually killed and that's why you see 9 instead of 10. That indicates one of the idle workers was killed. If you extend the time this example runs, you will see that the pool eventually reaches 0 running workers and 0 idle.

from pond.

mylxy avatar mylxy commented on May 14, 2024

An idle thread is also running at the same time, can a thread have both states at the same time?

from pond.

alitto avatar alitto commented on May 14, 2024

pool.RunningWorkers() reflects the total number of worker goroutines that are running (either busy or idle), while pool.IdleWorkers() only returns the number of worker goroutines that are not currently processing any task.
You could also calculate the number of "busy" worker goroutines by doing pool.RunningWorkers() - pool.IdleWorkers().
Cheers!

from pond.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.