Mention batch index is a 2 byte int

This commit is contained in:
Andrew Noyes 2022-10-11 14:15:04 -07:00
parent 7fc5f03b81
commit 13c5e7f240
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ Commit proxies would combine idempotency IDs for transactions within a batch. Th
${protocol_version}(${n (1 byte)}${idempotency_id (n bytes)}${low_order_byte_of_batch_index})*
```
The batch index for each idempotency id can be reconstructed from the high order byte and low order bytes stored in the key and value, respectively. This is necessary for an "unknown_committed" transaction to recover their full version stamp.
The batch index for each idempotency id can be reconstructed from the high order byte and low order bytes stored in the key and value, respectively. This is necessary for an "unknown_committed" transaction to recover their full version stamp. Batch index is a `short int`, i.e. 2 bytes.
# Cleaner worker