You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-12-21 13:40:58 +03:00
This branch enforces the use of generic MariaDB server paths for their binaries and data rather than custom paths. /usr/local/mariadb/columnstore is now only for columnstore with this patch. It should be noted that this removes the auto-mounting of external MariaDB UM data storage for AWS. This is also a fix for MCOL-3510 after buildbot changes are made. Also... MCOL-3552 Use columnstore.cnf to load plugins The ColumnStore plugins now load using a columnstore.cnf instead of a SQL sequence to be more in-line with MariaDB's methods.
47 lines
1.2 KiB
INI
47 lines
1.2 KiB
INI
# The following options will be passed to all MySQL clients
|
|
[client]
|
|
#password = your_password
|
|
|
|
# Here follows entries for some specific programs
|
|
|
|
# The MySQL server
|
|
[mysqld]
|
|
sql_mode="ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"
|
|
#columnstore_processing_handlers_fallback = OFF;
|
|
|
|
# Enable compression by default on create, set to 0 to turn off
|
|
#columnstore_compression_type=2
|
|
|
|
# Default for string table threshhold
|
|
#columnstore_stringtable_threshold=20
|
|
|
|
# infinidb local query flag
|
|
#columnstore_local_query=0
|
|
|
|
#columnstore_diskjoin_smallsidelimit=0
|
|
#columnstore_diskjoin_largesidelimit=0
|
|
#columnstore_diskjoin_bucketsize=100
|
|
#columnstore_um_mem_limit=0
|
|
|
|
#columnstore_use_import_for_batchinsert=1
|
|
#columnstore_import_for_batchinsert_delimiter=7
|
|
|
|
# Replication Master Server (default)
|
|
# binary logging is required for replication
|
|
# log-bin=mysql-bin
|
|
|
|
# required unique id between 1 and 2^32 - 1
|
|
# defaults to 1 if master-host
|
|
# uses to 2+ if slave-host
|
|
server-id = 1
|
|
|
|
# binary logging - not required for slaves, but recommended
|
|
|
|
lower_case_table_names=1
|
|
|
|
plugin-load-add=libcalmysql.so
|
|
plugin-load-add=is_columnstore_tables.so
|
|
plugin-load-add=is_columnstore_columns.so
|
|
plugin-load-add=is_columnstore_extents.so
|
|
plugin-load-add=is_columnstore_files.so
|