sashapolo commented on code in PR #6577:
URL: https://github.com/apache/ignite-3/pull/6577#discussion_r2341338328
##########
modules/raft/src/main/java/org/apache/ignite/internal/raft/storage/segstore/SegmentFile.java:
##########
@@ -35,6 +36,11 @@
* <p>This implementation is thread-safe in terms of concurrent writes.
*/
class SegmentFile implements ManuallyCloseable {
+ /**
+ * Byte order of the buffers used by {@link WriteBuffer#buffer}.
+ */
+ static final ByteOrder BYTE_ORDER = ByteOrder.nativeOrder();
Review Comment:
That's what WAL uses in GG8. But now I think we may want to change this
behavior, makes sense to have the same storage binary format everywhere
--
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]