You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add representation details for records field in course-definition.yml
Updated the documentation to specify that the `records` field is represented as `COMPACT_NULLABLE_BYTES`, including details about its structure and length.
Copy file name to clipboardExpand all lines: course-definition.yml
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -858,6 +858,7 @@ stages:
858
858
- The `partition_index` field is `0`.
859
859
- The `error_code` field is `0` (No Error).
860
860
- The `records` array has 1 element.
861
+
- The `records` field is represented as `COMPACT_NULLABLE_BYTES`. It starts with an UNSIGNED_VARINT length of N+1, followed by N bytes.
861
862
- The entire `RecordBatch` content is read from disk. (We will compare the contents of the `RecordBatch` with the contents of the log file to verify this.)
862
863
863
864
### Notes
@@ -904,6 +905,7 @@ stages:
904
905
- The `partition_index` field matches what was sent in the request.
905
906
- The `error_code` field is `0` (No Error).
906
907
- The `records` array has the correct number of elements.
908
+
- The `records` field is represented as `COMPACT_NULLABLE_BYTES`. It starts with an UNSIGNED_VARINT length of N+1, followed by N bytes.
907
909
- The entire `RecordBatch` content is read from disk. (We will compare the contents of the `RecordBatch` with the contents of the log file to verify this.)
0 commit comments