box.space._schema
-
box.space._schema _schemais a system space.This space contains the following tuples:
versiontuple with version information for this Tarantool instance,clustertuple with the instance’s replica set ID,max_idtuple with the maximal space ID,once...tuples that correspond to specific box.once() blocks from the instance’s initialization file. The first field in these tuples contains thekeyvalue from the correspondingbox.once()block prefixed with ‘once’ (e.g.oncehello), so you can easily find a tuple that corresponds to a specificbox.once()block.
Example:
Here is what
_schemacontains in a typical installation (notice the tuples for twobox.once()blocks,'oncebye'and'oncehello'):tarantool> box.space._schema:select{} --- - - ['cluster', 'b4e15788-d962-4442-892e-d6c1dd5d13f2'] - ['max_id', 512] - ['oncebye'] - ['oncehello'] - ['version', 1, 7, 2]