25.6.17.4 The ndbinfo blobs Table (original) (raw)
The world's most popular open source database
25.6.17.4 The ndbinfo blobs Table
This table provides about blob values stored inNDB
. The blobs
table has the columns listed here:
table_id
Unique ID of the table containing the columndatabase_name
Name of the database in which this table residestable_name
Name of the tablecolumn_id
The column's unique ID within the tablecolumn_name
Name of the columninline_size
Inline size of the columnpart_size
Part size of the columnstripe_size
Stripe size of the columnblob_table_name
Name of the blob table containing this column's blob data, if any
Rows exist in this table for those NDB
table columns that store BLOB,TEXT values taking up more than 255 bytes and thus require the use of a blob table. Parts ofJSON values exceeding 4000 bytes in size are also stored in this table. For more information about how NDB Cluster stores columns of such types, seeString Type Storage Requirements.
The part and inline sizes of NDB
blob columns can be set using CREATE TABLE andALTER TABLE statements containingNDB
table column comments (seeNDB_COLUMN Options); this can also be done in NDB API applications (seeColumn::setPartSize() andsetInlineSize()).