Can I parse the chronicle queue file

Viewed 40
  1. Write data to Chronicle queue.
  2. This creates/updates the chronicle queue file and is written in 20220525F.cq4

Query :- Is it possible to parse the file 20220525F.cq4 , what is the data format used to write the file ?

2 Answers

You can use the chronicle queue tailer to read the contents of a chronicle queue, or net.openhft.chronicle.queue.ChronicleQueue#dump() to dump the queue out as text, but apart from the tools offered by Chronicle-Queue, there is no simple way to parse the queue file.

Related