Questions tagged [distributedlog]

A high-throughput, low-latency replicated log service, offering durability, replication and strong consistency.

DistributedLog is a high-throughput, low-latency replicated log service, offering durability, replication and strong consistency on top of Apache Bookkeeper.

Where to start:

Projects using it:

3 questions
2
votes
1 answer

Using Opentelemetry to write logs for Python

We are using Python and we want to use Opentelemetry for logs. I see that Logs for Python are not supported yet(https://opentelemetry.io/docs/instrumentation/python/) and for C++/.NET it is in beta/experimental. My question is will it make any sense…
1
vote
1 answer

When does a leader ACKs client in DistributedLog?

I'm having difficulty to understand when does a leader actually ACKs client. Here is part of a DistributedLog documentation: Each batched entry appended to a log segment will be assigned a monotonically increasing entry id by the log segment…
Majid Azimi
  • 5,575
  • 13
  • 64
  • 113
0
votes
1 answer

what is the difference between transaction id and sequence id of a distributedlog record?

I used distributedlog AsyncLogReader to read records out of a distributedlog stream. for each log record in the stream, I found there are two sequence numbers associated with it, one is transaction id and one is sequence id. Which one should I use…