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
Add support for a live tail approach where a client like pb or console can hookup to a Parseable instance and live stream all the logs for a given stream.
The stream will start the moment client hooks on and will end when client stops listening. Server will simply send all the events received in the log stream for this live tail. Client will be responsible for filtering etc.
This PR adds support for live tailing a stream. With this PR,
server exposes a gRPC server on a configurable port (default 8001)
and uses Arrow Flight as the communication protocol.
As live tail is requested for a stream, Server sends events from
that steam, before the local staging and parquet conversion.
This means, server will use the event record batch to create a
flight stream and send over to the client.
fixes#503
Add support for a live tail approach where a client like
pb
orconsole
can hookup to a Parseable instance and live stream all the logs for a given stream.The stream will start the moment client hooks on and will end when client stops listening. Server will simply send all the events received in the log stream for this live tail. Client will be responsible for filtering etc.
Relevant client side issues:
The text was updated successfully, but these errors were encountered: