Skip to content

Commit 08fde33

Browse files
authored
[doc] Add blob document (#6757)
1 parent 0fa11ce commit 08fde33

File tree

3 files changed

+628
-0
lines changed

3 files changed

+628
-0
lines changed

docs/content/concepts/data-types.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,5 +175,12 @@ All data types supported by Paimon are as follows:
175175
<code>The type can be declared using ROW&lt;n0 t0 'd0', n1 t1 'd1', ...&gt; where n is the unique name of a field, t is the logical type of a field, d is the description of a field.</code>
176176
</td>
177177
</tr>
178+
<tr>
179+
<td><code>BLOB</code></td>
180+
<td><code>Data type of a binary large object.</code><br><br>
181+
<code>Designed for storing large binary data such as images, videos, audio files, and other multimodal data. Unlike BYTES type which stores data inline, BLOB stores large binary data in separate files and maintains references to them, providing better performance for large objects.</code><br><br>
182+
<code>Note: Requires 'row-tracking.enabled' and 'data-evolution.enabled' to be set to true. See <a href="{{< ref "concepts/spec/blob" >}}">Blob Specification</a> for details.</code>
183+
</td>
184+
</tr>
178185
</tbody>
179186
</table>

0 commit comments

Comments
 (0)