You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As we adapt the publisher pipeline to work with https://github.com/elastic/elastic-agent-shipper, we want new code to be able to work with established components like the memory queue. However, the memory queue is heavily tied to the specific data types in the current pipeline, particularly publisher.Event. (This dependency isn't used to access the type's contents, but rather to optimize heap layout.)
Modify the memory queue so that it handles essential metadata on input / output, but otherwise uses opaque pointers for its primary contents, allowing it to handle events ingested via a shipper RPC endpoint.
The text was updated successfully, but these errors were encountered:
As we adapt the publisher pipeline to work with https://github.com/elastic/elastic-agent-shipper, we want new code to be able to work with established components like the memory queue. However, the memory queue is heavily tied to the specific data types in the current pipeline, particularly
publisher.Event
. (This dependency isn't used to access the type's contents, but rather to optimize heap layout.)Modify the memory queue so that it handles essential metadata on input / output, but otherwise uses opaque pointers for its primary contents, allowing it to handle events ingested via a shipper RPC endpoint.
The text was updated successfully, but these errors were encountered: