Core.async and crashing the repl

I’ve started playing around with core.async recently and I noticed that if there is crash in an async process it seems to crash the repl. Is there anything that can be done to avoid this? Restarting the repl messes with my workflow. :sweat_smile:

Any tips would be greatly appreciated. :smiley:

Hello, @andersmurphy!

I feel your pain. I’ve been near there. Trying to learn core.async, and repeatedly having to restart my REPL because I launched a background process I couldn’t stop, or did something else I didn’t intend.

My conclusion:

  • Accept that restarting the REPL a lot in the beginning might be necessary
  • Consider using a system such as Integrant to start and stop background processes

A bit further out there:

  • Consider wrapping some core.async to ensure that channels can be stopped. Register all channels to a global atom, and provide a stop-everything! or similar.

I don’t really consider this solutions, though, just where I’d go if I wanted to push the issue a bit further.

Teodor

1 Like

Same problem when I first started messing with it. It’s very easy to get the threadpool locked up…
By default, there’s nothing really keeping track of the lifetime of any go-loops or threads. It’s very easy to spawn off infinite processes. So…always ensure there’s some lifetime management, such as an atom, timeouts, or a poison pill channel.

I rigged up a system infrastructure to help manage this kind of stuff when I was experimenting. There’s an example here of using it. The basic premise is having a process abstraction to keep a handle for communicating with the async stuff, and providing means to start/stop/kill, etc. So really just any way to provide visibility on the stuff you’re spooling up. I actually found it to be quite a useful exercise to build something like this since it helped me learn more about core.async in the process.

Another one is the default (chan) will have a 1 for 1 channel. I found that - when experimenting early on - using something more forgiving like dropping channels were helpful to at least keep things “moving” when I screwed up.

I think there are some better libraries for process management (even an erlang OTP actor-like one with supervisors). That gets you a bit away from learning core.async, but they could be useful down the road.

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.