larry-robotics / elkodon

Elkodon - true zero-copy inter-process-communication in rust
Apache License 2.0
16 stars 2 forks source link

Cleanup tool/internal service for resources of crashed applications #65

Open elfenpiff opened 10 months ago

elfenpiff commented 10 months ago

Brief feature description

When an application crashes, it can happen that a service is only partially removed and becomes unusable. An internal service and/or a command line application shall cleanup the remainders of such services.

The following use cases shall be considered:

elBoberido commented 10 months ago

Could this be done on the startup of the application?

elfenpiff commented 10 months ago

Could this be done on the startup of the application?

Yes. The basic idea would be to implement a "function" that does it in a thread-safe manner and then either everyone can do this in a decentral fashion or one central daemon or command line tool does this.

This is then up to the deployment/user.