Github user aweisberg commented on a diff in the pull request:

    https://github.com/apache/cassandra/pull/239#discussion_r202480493
  
    --- Diff: 
src/java/org/apache/cassandra/db/streaming/CassandraStreamHeader.java ---
    @@ -168,10 +232,35 @@ public void serialize(CassandraStreamHeader header, 
DataOutputPlus out, int vers
                 header.calculateCompressionInfo();
                 CompressionInfo.serializer.serialize(header.compressionInfo, 
out, version);
                 out.writeInt(header.sstableLevel);
    +
                 SerializationHeader.serializer.serialize(header.version, 
header.header, out);
    +
    +            header.tableId.serialize(out);
    +            out.writeBoolean(header.fullStream);
    +
    +            if (header.fullStream)
    +            {
    +                out.writeInt(header.components.size());
    +                for (ComponentInfo info : header.components)
    +                    ComponentInfo.serializer.serialize(info, out, version);
    +
    +                
ByteBufferUtil.writeWithShortLength(header.firstKey.getKey(), out);
    --- End diff --
    
    OK, actually Jeff pointed out that we do have partitioners where decorated 
keys are not hashes. So either we find out what the max length is or just use 
an int/varint and call it good. We don't send this often so it's fine.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: pr-unsubscr...@cassandra.apache.org
For additional commands, e-mail: pr-h...@cassandra.apache.org

Reply via email to