Open
Description
Product: Tarantool
Since: 3.3
Root documents: https://www.tarantool.io/en/doc/latest/reference/internals/iproto/requests/
https://www.tarantool.io/en/doc/latest/reference/internals/iproto/keys/#internals-iproto-keys-features
Available IPROTO_FEATURES are the following:
- IPROTO_FEATURE_INSERT_ARROW = 12 - Support of data insertion in Arrow
format.
IPROTO version supporting the this feature is 10 or newer.
Client-server requests and responses:
- IPROTO_INSERT_ARROW = 0x11 - Insert Arrow data request.
The structure of the IPROTO_INSERT_ARROW
request is similar to
IPROTO_INSERT
, the only difference is IPROTO_ARROW : MP_ARROW
instead of IPROTO_TUPLE : MP_ARRAY
.
The response to IPROTO_INSERT_ARROW
contains an empty body.
Requested by @Gumix in tarantool/tarantool@be34a84.