maedhroz commented on code in PR #2451:
URL: https://github.com/apache/cassandra/pull/2451#discussion_r1245557357
##########
src/java/org/apache/cassandra/index/sai/disk/v1/MetadataWriter.java:
##########
@@ -43,17 +43,17 @@ public Builder builder(String name)
return new Builder(name);
}
- public class Builder extends RAMIndexOutput implements Closeable
+ public class Builder extends ResettableByteBuffersIndexOutput implements
Closeable
{
private Builder(String name)
{
- super(name);
+ super(1024, name);
Review Comment:
Curious about why 1024 made the most sense here...
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]