ProducerFencedException after 30k Inserts Using Tansu as Log Implementation in XTDB #349
Unanswered
sahidrahman404
asked this question in
Q&A
Replies: 2 comments 4 replies
|
Could you share a docker compose of your setup please (preferably), or share some logs? |
3 replies
|
Thanks very much for putting this together. I'm still investigating:
If you're interested you can get the tansu logs with: docker compose logs --no-color --no-log-prefix tansu>tansu.logThe produced records are using SNAPPY compression. The records are decompressed OK at batch sizes of 100 and 500. Any bigger batch size results in a decompression error: The inflator code is at: The Java SNAPPY compressor adds a header of b"\x82SNAPPY\0", which is removed before inflating. Just wanted to let you know where I've landed so far. |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi, I'm currently experimenting with XTDB (a bitemporal database) using Tansu as the log implementation. After around 30,000 inserts, I consistently hit a ProducerFencedException. This doesn’t occur when using Buffstream as the log.
Is this possibly due to a missing feature or incomplete implementation in Tansu that's required by XTDB's log producer?
All reactions