refactor(ipc): replace Malt+BSON with binary protocol #388
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I noticed that serialisation with BSON.jl was generating a large amount of allocations. This switches it out for a much simpler, less generic, custom format that that reduces allocations in the boundary between runner and workers significantly. Also removes all uses of
evalin the transport layer, which was a hold-over fromMaltusage, but isn't strictly needed for our simpler needs here. Finally, theMaltimplementation itself has been replaced a simpler implementation since we needed need all those features listed above. Things like the "message boundary marker" has been replaced with a length-encoded protocol to ensure we don't encounter that magic boundary marker in real data. Some potential race conditions have also been fixed up in both the worker and runner logic.