else {
// Read parameters from file
ByteBuffer buf = ByteBuffer.allocate(HEADER_LENGTH);
fileChannel.read(buf, 0L);
buf.rewind();
@SuppressWarnings("unused")
int fileFormatVersion = buf.getInt();
this.blockSize = buf.getInt();
this.valueSize = buf.getInt();