-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(s3stream/wal): group commit #422
Conversation
Signed-off-by: Ning Yu <ningyu@automq.com>
Signed-off-by: Ning Yu <ningyu@automq.com>
Signed-off-by: Ning Yu <ningyu@automq.com>
Signed-off-by: Ning Yu <ningyu@automq.com>
Signed-off-by: Ning Yu <ningyu@automq.com>
Signed-off-by: Ning Yu <ningyu@automq.com>
Signed-off-by: Ning Yu <ningyu@automq.com>
Signed-off-by: Ning Yu <ningyu@automq.com>
Signed-off-by: Ning Yu <ningyu@automq.com>
Signed-off-by: Ning Yu <ningyu@automq.com>
Signed-off-by: Ning Yu <ningyu@automq.com>
Signed-off-by: Ning Yu <ningyu@automq.com>
Signed-off-by: Ning Yu <ningyu@automq.com>
Signed-off-by: Ning Yu <ningyu@automq.com>
Signed-off-by: Ning Yu <ningyu@automq.com>
Signed-off-by: Ning Yu <ningyu@automq.com>
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #422 +/- ##
============================================
+ Coverage 58.79% 60.07% +1.27%
- Complexity 773 792 +19
============================================
Files 94 94
Lines 5655 5686 +31
Branches 525 528 +3
============================================
+ Hits 3325 3416 +91
+ Misses 2014 1951 -63
- Partials 316 319 +3
|
Qodana for JVM3 new problems were found
💡 Qodana analysis was run in the pull request mode: only the changed files were checked Contact Qodana teamContact us at qodana-support@jetbrains.com
|
// TODO use composite buffer | ||
if (requiredCapacity > data.capacity()) { | ||
int newCapacity = Math.max(data.capacity() * 2, (int) requiredCapacity); | ||
ByteBuffer newData = ByteBuffer.allocate(newCapacity); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use DirectByteBufAlloc to alloc and free bytebuf
to #173 |
Signed-off-by: Ning Yu <ningyu@automq.com>
No description provided.