fission / fission-workflows

Workflows for Fission: Fast, reliable and lightweight function composition for serverless functions
Apache License 2.0
361 stars 40 forks source link

Graceful stopping of controller #224

Closed erwinvaneyk closed 5 years ago

erwinvaneyk commented 5 years ago

Currently stopping the controller will not await any of the currently running tasks, even though --- most of the time --- these tasks finish in at most a few seconds.

This change adds a graceful stopping feature to the invocation controller, making it wait for the current tasks to finish before fully stopping the controller and related structures.

As a flyby, this PR...