We have a bunch of micro services running each in its own Docker container in a shared AWS EC2 instance.
Giving the excellent results obtained when running locally now we are trying to use Chronicle queues as a way to communicate between our micro…
We had a micro service approach for one of our systems using Kafka as an event bus.
We had some latency problems and experimented with replacing Kafka topics with a bunch of Chronicle queues. When running locally on a developer machine the results…
In case anyone is using Chronicle Map, can you tell if Chronicle maps and queues sizes are part of application JVM heap or not.
I have an application which listens on Chronicle Queue and then has multiple Chronicle maps. I have allocated 16GB as max…
One of our system has a micro service architecture using Apache Kafka as a service bus.
Low latency is a very important factor but reliability and consistency (exactly once) are even more important.
When we perform some load tests we noticed…
Hi guys I have developed a multithread application that use Chronicle Queue to persist the data exchanged. For each thread I create a new chronicle queue instance, all of than pointing to the same file. When the number of the threads increase (or…
We're wondering why ChronicleQueue always seems to touch the first data file. Is there a reason for it?
The other filer don't seem to be affected, even if data is read from them. Are we doing something wrong?
Currently we're using version…
A single appender writes messages into Chronicle Queue inside Docker without any tailer). The VmRSS keeps growing until daily rolling. Is it expected?
**The machine has plenty of memory and without swap space
I am trying to build a service where I will get a one type of message on one chronicle queue and another type of message on another chronicle queue within the same process. I don’t want to give 2 dedicated threads to each of these queues as…
I mean when I write to java.util.concurrent.LinkedBlockingQueue I have a visibility guarantee happens-before. Single object put to the queue happens-before pull of the same object from the queue.
So I can assume in the reading thread, that any…
Why has this particular component been deprecated? Is Java moving away from supporting mapped memory? We have a special use case where this would be nice to have, two applications that should never have been uncoupled and are currently…
lets say I have two threads which want to communicate using the same Chronicle queue,
writer:
SingleChronicleQueue queue_en = SingleChronicleQueueBuilder.binary(path).build();
ExcerptAppender appender =…
Is it possible to use groups in chronicle consumer, so that multiple instances watching the queue whose message is consumed once for every message if these instances are grouped together?
I have modified the basic code here [github]https://github.com/OpenHFT/Chronicle-Queue/blob/master/docs/How_it_works.adoc
Basically I am shooting chronicle queue some of the same Marshallable-ized objects. I included some print statements to show…
When reading a document from chronicle queue, what is the best way to skip the current document when I am not interested in it?
I.e. given the following code, what do I put instead of the comment?
try (DocumentContext context =…