Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tarantool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
tarantool
Commits
e22d6bf0
Commit
e22d6bf0
authored
9 years ago
by
ocelot-inc
Browse files
Options
Downloads
Patches
Plain Diff
Fixes gh-1195 Better documentation for slab_alloc_maximal
parent
47799741
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/sphinx/book/box/limitations.rst
+18
-11
18 additions, 11 deletions
doc/sphinx/book/box/limitations.rst
with
18 additions
and
11 deletions
doc/sphinx/book/box/limitations.rst
+
18
−
11
View file @
e22d6bf0
...
...
@@ -2,17 +2,6 @@
Limitations
-------------------------------------------------------------------------------
* :ref:`Number of fields in an index <lim_fields_in_index>`
* :ref:`Number of indexes in a space <lim_indexes_in_space>`
* :ref:`Number of fields in tuple <lim_fields_in_tuple>`
* :ref:`Number of spaces <lim_number_of_spaces>`
* :ref:`Number of connections <lim_number_of_connections>`
* :ref:`Space size <lim_space_size>`
* :ref:`Update operations count <lim_update_ops>`
* :ref:`Number of users and roles <lim_users_and_roles>`
* :ref:`Length of an index name or space name or user name<lim_length>`
* :ref:`Limitations which are only applicable for the sophia storage engine<lim_sophia>`
.. _lim_fields_in_index:
**Number of fields in an index**
...
...
@@ -36,6 +25,24 @@
:ref:`field_count <space-object-field-count>`
member, or the maximum tuple length.
.. _lim_bytes_in_tuple:
**Number of bytes in a tuple**
By default the value of :confval:`slab_alloc_maximal`
is 1048576, and the maximum tuple length is approximately one quarter of that:
approximately 262,000 bytes. To increase it, when starting the server,
specify a larger value. For example
:code:`box.cfg{slab_alloc_maximal=2*1048576}`.
which is one quarter of 1048576 -- :ref:`field_count <space-object-field-count>`.
The theoretical maximum is 2147483647 (``box.schema.FIELD_MAX``). The
practical maximum is whatever is specified by the space's
:ref:`field_count <space-object-field-count>`
member, or the maximum tuple length.
.. _lim_number_of_spaces:
**Number of spaces**
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment