Hi I am a new user of Chronicle Products and till now documentation/usage looks pretty smooth.
Though I have a question when Map data is shared across JVM's on the same host does consumer JVM waiting on the data receive any sort of callback or…
I have an application that writes entries to a Chronicle Queue (V3) that also retains excerpt entry index values in other (Chronicle)Maps by way of providing indexed access in the queue. Sometimes we fail to find a given entry that we've earlier…
I'm using the SingleChronicleQueue implementation to keep track of the last element I processed from my data queue (also a SingleChronicleQueue).
In order to recover from a crash I need to read the last element in my state queue which will give me…
What would cause Chronicle Queue to segfault? I assume I've missed a configuration somewhere. I have a readOnly Chronicle Queue created like this:
ChronicleQueue readQueue = SingleChronicleQueueBuilder.binary (readBasePath).readOnly (true).build…
I am really confused about chronicle's connection interface.
I couldn't find any test code or source code about it.
I want to catch disconnection and on-connection events.
My setup looks like (vanilla chronicle 3.6.2.);
Two identical process,…
I want my two JVM applications speak to each other on the same machine. I considered using RMI, but then I found Chronicle Queue which claims that it is very fast. I wonder whether I can use Chronicle to invoke a method on the other JVM and wait for…
Using Chronicle with vertx.io...
I create a new Chronicle per per verticle. I.e: one instance per thread.
chronicle = ChronicleQueueBuilder.indexed("samePath").build(); <-- This is created per thread to the same queue.
Now for each web http POST…
I am using the Indexed Chronicle queue (version 3.4.3) in a latency sensitive application. To smooth out the latency spikes, I have a blocking queue, in front of the chronicle, where producers drop the messages. A background thread then polls the…
I'm developing a proof of concept using Chronicle Queue to create a journal. I have just one thread writing and no threads or other processes reading.
During my validations on a 'silent machine', I've came across crash dumps two times.
It's possible…
I have N sets of 1 producer to 1 consumer. The consumer will write to Chronicle Queue. I just found out today that there is an error I have not previously seen before.
Exception in thread "TaskConsumer2" Exception in thread "TaskConsumer0"…
Multiple publishers will send their message to a central node which is responsible for sequencing these messages before they reach the subscribers. Does there exist a chronicle service that already does this?
Should be doable with Chronicle queue
I have a process that runs at 1 am and is stopped at 11pm everyday using crontab. This creates a chronicle queue file everyday, and because cleaning up is tedious, I changed the crontab to only run on weekdays on Apr 14. Today Apr 17, I checked the…
Currently I am able to read a chronicle queue's excerpt appender and read all excerpts in it. However, I want to be able to simulate the real time reading of data when Chronicle Queue persisted the data when I read the data from the Tailer. So for…
I am trying to implement a named tailer to pickup where a task was previously left off. But in between continuing from a task, I may want to check the contents of the most recent roll cycle. I then tried to test if I can get the most recent roll…