Henry Haiying Cai
Henry Haiying Cai
The latest secor is using micrometer 1.6.1 On Tue, Dec 1, 2020 at 5:44 AM Paulius wrote: > Looks like micrometer-metrics/micrometer#2238 > > > It is a bug in micrometer...
We can create a new tag as well if the code at head fixes the problem. On Wed, Dec 2, 2020 at 12:45 AM Paulius wrote: > The latest secor...
You can turn on secor debug and check the following log line to see how many writers are created: LOG.debug("created writer for path {}", path.getLogFilePath()); From the code, we are...
From the code, it doesn't look like writers are going to be shared between threads. The edge case I can think of is when the consumer group rebalances, some of...
You can use 'jmap -histo' to print out the number of objects per class, run it a few times to see which class of objects keep increasing. On Tue, Jun...
Secor use ZK for 2 purposes: 1. keep track of kafka message progress per topic/partition 2. use ZK as a distributed lock during file uploading Purpose 1 can be switched...
For purpose 1, I think there are still some code that writes the offset to ZK (while also writing to kafka), but the reader is only reading offsets from Kafka....
I think 'dual.commit.enabled' = false, the offsets will be written to ZK as default. On Thu, Dec 3, 2020 at 5:22 AM DomWos wrote: > Hey @HenryCaiHaiying , > I...
Are you planning to merge this PR to upstream? Looks like it's quite a big change which might need some explanation and discussion.
@Sab8 Are you still working on this PR?