Skip to content

Commit fd7f46b

Browse files
committed
Improve caption about record batch size
1 parent ef90663 commit fd7f46b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: _posts/2025-01-07-arrow-result-transfer.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ CSV is an example of a streamable data format, because the column names (if incl
9393
Arrow is a streamable data format. A dataset can be represented in Arrow as a sequence of record batches that all have the same schema. Arrow defines a [streaming format](https://arrow.apache.org/docs/format/Columnar.html#ipc-streaming-format) consisting of the schema followed by one or more record batches. A system receiving an Arrow stream can process the record batches sequentially as they arrive.
9494

9595
<figure style="text-align: center;">
96-
<img src="{{ site.baseurl }}/img/arrow-result-transfer/part-1-figure-2-arrow-stream.png" width="100%" class="img-responsive" alt="Figure 2: An illustration of an Arrow stream transmitting the data from a logical table with three columns. The first record batch contains the values for the first three rows, the second record batch contains the values for the next three rows, and so on. Actual Arrow record batches typically contain tens of thousands to hundreds of thousands of rows.">
97-
<figcaption>Figure 2: An illustration of an Arrow stream transmitting the data from a logical table with three columns. The first record batch contains the values for the first three rows, the second record batch contains the values for the next three rows, and so on. Actual Arrow record batches typically contain tens of thousands to hundreds of thousands of rows.</figcaption>
96+
<img src="{{ site.baseurl }}/img/arrow-result-transfer/part-1-figure-2-arrow-stream.png" width="100%" class="img-responsive" alt="Figure 2: An illustration of an Arrow stream transmitting the data from a logical table with three columns. The first record batch contains the values for the first three rows, the second record batch contains the values for the next three rows, and so on. Actual Arrow record batches might contain thousands to millions of rows.">
97+
<figcaption>Figure 2: An illustration of an Arrow stream transmitting the data from a logical table with three columns. The first record batch contains the values for the first three rows, the second record batch contains the values for the next three rows, and so on. Actual Arrow record batches might contain thousands to millions of rows.</figcaption>
9898
</figure>
9999

100100
### 5. The Arrow format is universal.

0 commit comments

Comments
 (0)