Git Product home page Git Product logo

Comments (2)

alitto avatar alitto commented on May 13, 2024

Hey @anpenggang!

What happens to the pool when a worker panic?

When a task panics, the worker goroutine that was executing it calls the configured PanicHandler function passing the captured panic object and then continues processing other tasks. The default panic handler simply logs the panic and its stack trace, so you should see something like this:

Worker exits from a panic: 11111
Stack trace: goroutine 7 [running]:
runtime/debug.Stack()
        /usr/local/go/src/runtime/debug/stack.go:24 +0x65
github.com/alitto/pond.defaultPanicHandler({0x4988c0, 0x4c84f8})
...

You can also override the default panic handler to perform some custom handling. E.g.:

myPanicHandler := func(p interface{}) {
	fmt.Printf("Task panicked: %v", p)
}

pool := pond.New(10, 1000, pond.PanicHandler(myPanicHandler)))

I see you posted some error logs after your question, but I couldn't reproduce it using the example you provided. This is the code I executed:

package main

import (
	"fmt"
	"runtime"

	"github.com/alitto/pond"
)

func main() {

	pool := pond.New(10, 50)
	defer pool.StopAndWait()

	group := pool.Group()
	group.Submit(func() {
		fmt.Println("NumGoroutine:", runtime.NumGoroutine())
		panic(11111)
	})
	group.Wait()
}

Could you provide more context about those errors?

from pond.

anpenggang avatar anpenggang commented on May 13, 2024

Thanks,it‘s not pond's problem. i have a global map to write by group, but map is not safety,so the process panic

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.