User Tools

ColumnStore System Variables

Variables

This section lists ColumnStore variables, regardless in which version they were introduced ormwhether they were removed.

To obtain a full list of the ColumnStore variables present in your ColumnStore version, run this query:

  SHOW GLOBAL VARIABLES LIKE 'columnstore%';

In very old versions of ColumnStore, these variables prefix was infinidb_. Later, it was changed to columnstore_ to reflect the software name change.

Name Cmd-Line Scope Data type Default Value Range Status
columnstore_cache_flush_threshold 500000 Present
columnstore_cache_inserts OFF Present
columnstore_cache_use_import OFF Present
columnstore_compression_type Yes Both enumeration 2 0,2 Present
columnstore_decimal_overflow_check OFF Present
columnstore_derived_handler ON Present
columnstore_decimal_scale Yes Both numeric 8 Present
columnstore_diskjoin_bucketsize Yes Both numeric 100 Present
columnstore_diskjoin_largesidelimit Yes Both numeric 0 Present
columnstore_diskjoin_smallsidelimit Yes Both numeric 0 Present
columnstore_double_for_decimal_math Yes Both enumeration OFF OFF, ON Present
columnstore_import_for_batchinsert_delimiter Yes Both numeric 7 Present
columnstore_import_for_batchinsert_enclosed_by Yes Both numeric 17 Present
columnstore_local_query Yes Both enumeration 0 0,1 Present
columnstore_group_by_handler ON Present
columnstore_orderby_threads 16 Present
columnstore_ordered_only Yes Both enumeration OFF OFF, ON Present
columnstore_replication_slave OFF Present
columnstore_select_handler ON Present
columnstore_select_handler_in_stored_procedures ON Present
columnstore_string_scan_threshold Yes Both numeric 10 Present
columnstore_stringtable_threshold Yes Both numeric 20 Present
columnstore_um_mem_limit Yes Both numeric 0 Present
columnstore_use_decimal_scale Yes Both enumeration OFF OFF, ON Present
columnstore_use_import_for_batchinsert Yes Both enumeration ON OFF, ON Present
columnstore_varbin_always_hex Yes Both enumeration ON OFF, ON Present
infinidb_vtable_mode Yes Both enumeration 1 0, 1, 2 Removed

Compression mode

MariaDB ColumnStore has the ability to compress data and this is controlled through a compression mode. This compression mode may be set as a default for the instance or set at the session level.

To set the compression mode at the session level, the following command is used. Once the session has ended, any subsequent session will return to the default for the instance.

  SET columnstore_compression_type = n;

where n is:

  • 0: compression is turned off. Any subsequent table create statements run will have compression turned off for that table unless any statement overrides have been performed. Any alter statements run to add a column will have compression turned off for that column unless any statement override has been performed.
  • 2: compression is turned on. Any subsequent table create statements run will have compression turned on for that table unless any statement overrides have been performed. Any alter statements run to add a column will have compression turned on for that column unless any statement override has been performed. ColumnStore uses snappy compression in this mode.

ColumnStore decimal to double math

MariaDB ColumnStore has the ability to change intermediate decimal mathematical results from decimal type to double. The decimal type has approximately 17-18 digits of precision, but a smaller maximum range. Whereas the double type has approximately 15-16 digits of precision, but a much larger maximum range. In typical mathematical and scientific applications, the ability to avoid overflow in intermediate results with double math is likely more beneficial than the additional two digits of precisions. In banking applications, however, it may be more appropriate to leave in the default decimal setting to ensure accuracy to the least significant digit.

Enable/Disable decimal to double math

The columnstore_double_for_decimal_math variable is used to control the data type for intermediate decimal results. This decimal for double math may be set as a default for the instance, set at the session level, or at the statement level by toggling this variable on and off.

To enable/disable the use of the decimal to double math at the session level, the following command is used. Once the session has ended, any subsequent session will return to the default for the instance.

  SET columnstore_double_for_decimal_math = n;

where n is:

  • OFF (disabled, default)
  • ON (enabled)

ColumnStore decimal scale

ColumnStore has the ability to support varied internal precision on decimal calculations. columnstore_decimal_scale is used internally by the ColumnStore engine to control how many significant digits to the right of the decimal point are carried through in suboperations on calculated columns. If, while running a query, you receive the message “aggregate overflow”, try reducing columnstore_decimal_scale and running the query again. Note that,as you decrease columnstore_decimal_scale, you may see reduced accuracy in the least significant digit(s) of a returned calculated column. columnstore_use_decimal_scale is used internally by the ColumnStore engine to turn the use of this internal precision on and off. These two system variables may be set as a default for the instance or set at the session level.

Enable/disable decimal scale

To enable/disable the use of the decimal scale at the session level, the following command is used. Once the session has ended, any subsequent session will return to the default for the instance.

  SET columnstore_use_decimal_scale = n;

where n is OFF (disabled) or ON (enabled).

Set decimal scale level

To set the decimal scale at the session level, the following command is used. Once the session has ended, any subsequent session will return to the default for the instance.

  SET columnstore_decimal_scale = n;

where n is the amount of precision desired for calculations.

Disk-based joins

Joins are performed in-memory on the UM node. When a join operation exceeds the memory allocated on the UM for query joins, the query is aborted with an error code IDB-2001. Disk-based joins enable such queries to use disk for intermediate join data in case when the memory needed for join exceeds the memory limit on the UM. Although slower in performance as compared to a fully in-memory join, and bound by the temporary space on disk, it does allow such queries to complete.

Note: Disk-based joins does not include aggregation and DML joins.

The following variables in the HashJoin element in the Columnstore.xml configuration file relate to disk-based joins. Columnstore.xml resides in the etc directory for your installation(/usr/local/mariadb/columnstore/etc).

  • AllowDiskBasedJoin – Option to use disk-based joins. Valid values are Y (enabled) or N (disabled). Default is disabled.
  • TempFileCompression – Option to use compression for disk join files. Valid values are Y (use compressed files) or N (use non-compressed files).
  • TempFilePath – The directory path used for the disk joins. By default, this path is the tmp directory for your installation (i.e., /usr/local/mariadb/columnstore/tmp). Files (named infinidb-join-data*) in this directory will be created and cleaned on an as needed basis. The entire directory is removed and recreated by ExeMgr at startup.)
Note: When using disk-based joins, it is strongly recommended that the TempFilePath reside on its own partition as the partition may fill up as queries are executed.

Per user join memory limit

In addition to the system wide flags, at SQL global and session level, the following system variables exists for managing per user memory limit for joins.

  • columnstore_um_mem_limit - A value for memory limit in MB per user. When this limit is exceeded by a join, it will switch to a disk-based join. By default the limit is not set (value of 0).

For modification at the global level: In my.cnf file (typically /usr/local/mariadb/columnstore/mysql):

  [mysqld]
  ...
  columnstore_um_mem_limit = value;

where value is the value in Mb for in memory limitation per user.

For modification at the session level, before issuing your join query from the SQL client, set the session variable as follows.

  SET infinidb_um_mem_limit = value;

See also the performance tuning of disk-based joins.

Batch insert mode for INSERTS

MariaDB ColumnStore has the ability to utilize the cpimport fast data import tool for non-transactional LOAD DATA INFILE and INSERT INTO SELECT FROM SQL statements. Using this method results in a significant increase in performance in loading data through these two SQL statements. This optimization is independent of the storage engine used for the tables in the select statement.

Enable/disable using cpimport for batch insert

The columnstore_use_import_for_batchinsert variable is used to control if cpimport is used for these statements. This variable may be set as a default for the instance, set at the session level, or at the statement level by toggling this variable on and off.

To enable/disable the use of the use cpimport for batch insert at the session level, the following command is used. Once the session has ended, any subsequent session will return to the default for the instance.

  SET columnstore_use_import_for_batchinsert = n;

where n can be:

  • 0 (disabled)
  • 1 (enabled)

Changing default delimiter for INSERT SELECT

  1. The columnstore_import_for_batchinsert_delimiter variable is used internally by MariaDB ColumnStore on a non-transactional INSERT INTO SELECT FROM statement as the default delimiter passed to the cpimport tool. With a default value ASCII 7, there should be no need to change this value unless your data contains ASCII 7.

To change this variable value at the at the session level, the following command is used. Once the session has ended, any subsequent session will return to the default for the instance.

  SET columnstore_import_for_batchinsert_delimiter = ascii_value;

where ascii_value is an ASCII value representation of the delimiter desired.

Note that this setting may cause issues with multi byte character set data. It is recommended to utilize UTF8 files directly with cpimport.

Version buffer file management

If the following error is received, most likely with a transaction LOAD DATA INFILE or INSERT INTO SELECT then it is recommended to break up the load into multiple smaller chunks, increase the VersionBufferFileSize setting, or consider a non transactional LOAD DATA INFILE or to use cpimport.

  ERROR 1815 (HY000) at line 1 in file: 'ldi.sql': Internal error: CAL0006: IDB-2008: The version buffer overflowed. Increase VersionBufferFileSize or limit the rows to be processed.

The VersionBufferFileSize setting is updated in the ColumnStore.xml typically located under /usr/local/mariadb/columnstore/etc. This dictates the size of the version buffer file on disk which provides DML transactional consistency. The default value is '1GB' which reserves up to a 1 Gigabyte file size. Modify this on the PM1 node and restart the system if you require a larger value.

Local PM query mode

MariaDB ColumnStore has the ability to query data from just a single PM instead of the whole database through the UM. In order to accomplish this, the columnstore_local_query variable in the my.cnf configuration file is used and maybe set as a default at system wide or set at the session level.

Enable local PM query during installation

Local PM query can be enabled system wide during the install process when running the install script postConfigure. Answer 'y' to this prompt during the install process.

  NOTE: Local Query Feature allows the ability to query data from a single Performance
        Module. Check MariaDB ColumnStore Admin Guide for additional information.
  
  Enable Local Query feature? [y,n] (n) > 

https://mariadb.com/kb/en/library/installing-and-configuring-a-multi-server-columnstore-system-11x/

Enable local PM query systemwide

To enable the use of the local PM Query at the instance level, specify columnstore_local_query=1 (enabled) in the my.cnf configuration file at /usr/local/mariadb/columnstore/mysql. The default is 0 (disabled).

Enable/disable local PM query at the session level

To enable/disable the use of the local PM Query at the session level, the following command is used. Once the session has ended, any subsequent session will return to the default for the instance.

  set columnstore_local_query = n;

where n can be:

  • 0 (disabled)
  • 1 (enabled)

At the session level, this variable applies only to executing a query on an individual PM and will error if executed on the UM. The PM must be set up with the local query option during installation.

Local PM Query Examples

Example 1 - SELECT from a single table on local PM to import back on local PM

With the columnstore_local_query variable set to 1 (default with local PM Query):

  mcsmysql -e 'select * from source_schema.source_table;' –N | /usr/local/Calpont/bin/cpimport target_schema target_table -s '\t' –n1

Example 2 - SELECT involving a join between a fact table on the PM node and dimension table across all the nodes to import back on local PM

Create a script (i.e., extract_query_script.sql in our example) similar to the following:

  SET columnstore_local_query = 0;
  SELECT fact.column1, dim.column2 
      FROM fact JOIN dim USING (key) 
      WHERE idbPm(fact.key) = idbLocalPm();

columnstore_local_query is set to 0 to allow query across all PMs.

The query is structured so that the UM process on the PM node gets the fact table data locally from the PM node (as indicated by the use of the idbLocalPm() function), while the dimension table data is extracted from all the PM nodes.

Then you can execute the script to pipe it directly into cpimport:

  mcsmysql source_schema -N < extract_query_script.sql | \
      /usr/local/mariadb/columnstore/bin/cpimport target_schema target_table -s '\t' –n1

Original document

You could leave a comment if you were logged in.

This website uses cookies. By using the website, you agree with storing cookies on your computer. Also, you acknowledge that you have read and understand our Privacy Policy. If you do not agree, please leave the website.

More information