Spider Server System Variables
You are viewing an old version of this article. View
the current version here.
The following variables are available when the Spider storage engine has been installed.
See Server System Variables for a complete list of system variables and instructions on setting them.
Contents
- spider_auto_increment_mode
- spider_bgs_first_read
- spider_bgs_mode
- spider_bgs_second_read
- spider_bka_engine
- spider_bka_mode
- spider_block_size
- spider_bulk_access_free
- spider_bulk_size
- spider_bulk_update_mode
- spider_bulk_update_size
- spider_casual_read
- spider_conn_recycle_mode
- spider_conn_recycle_strict
- spider_connect_mutex
- spider_connect_retry_count
- spider_connect_retry_interval
- spider_connect_timeout
- spider_crd_bg_mode
- spider_crd_interval
- spider_crd_mode
- spider_crd_sync
- spider_crd_type
- spider_crd_weight
- spider_direct_dup_insert
- spider_direct_order_limit
- spider_error_read_mode
- spider_error_write_mode
- spider_first_read
- spider_force_commit
- spider_general_log
- spider_init_sql_alloc_size
- spider_internal_limit
- spider_internal_offset
- spider_internal_optimize
- spider_internal_optimize_local
- spider_internal_sql_log_off
- spider_internal_unlock
- spider_internal_xa
- spider_internal_xa_snapshot
- spider_local_lock_table
- spider_lock_exchange
- spider_log_result_errors
- spider_low_mem_read
- spider_max_order
- spider_multi_split_read
- spider_net_read_timeout
- spider_net_write_timeout
- spider_ping_interval_at_trx_start
- spider_quick_mode
- spider_quick_page_size
- spider_read_only_mode
- spider_remote_access_charset
- spider_remote_autocommit
- spider_remote_default_database
- spider_remote_sql_log_off
- spider_remote_time_zone
- spider_remote_trx_isolation
- spider_reset_sql_alloc
- spider_same_server_link
- spider_second_read
- spider_select_column_mode
- spider_selupd_lock_mode
- spider_semi_split_read
- spider_semi_split_read_limit
- spider_semi_table_lock
- spider_semi_table_lock_connection
- spider_semi_trx
- spider_semi_trx_isolation
- spider_skip_default_condition
- spider_split_read
- spider_sts_bg_mode
- spider_sts_interval
- spider_sts_mode
- spider_sts_sync
- spider_support_xa
- spider_sync_autocommit
- spider_sync_time_zone
- spider_sync_trx_isolation
- spider_table_init_error_interval
- spider_udf_ct_bulk_insert_interval
- spider_udf_ct_bulk_insert_rows
- spider_udf_ds_bulk_insert_rows
- spider_udf_ds_table_loop_mode
- spider_udf_ds_use_real_table
- spider_udf_table_lock_mutex_count
- spider_udf_table_mon_mutex_count
- spider_use_all_conns_snapshot
- spider_use_consistent_snapshot
- spider_use_default_database
- spider_use_flash_logs
- spider_use_handler
- spider_use_pushdown_udf
- spider_use_table_charset
spider_auto_increment_mode
- Description: The auto increment mode.
-1The table parameter is adopted.0Normal mode. Uses a counter that Spider gets from the remote backend server with an exclusive lock for the auto increment value. Slow. Switch to quick mode if you use Spider tables with the table partitioning feature and the auto increment column is the first column of the index.1Quick mode. Uses an internal Spider counter for the auto increment value. Fast, but it is possible for duplicates to occur if you update the same table from multiple Spider proxies.2Set zero value. Auto increment value is given by the remote backend. Sets zero value even if you set a value to the auto increment column. Sets zero value after choosing an inserted partition if you use a table with the table partitioning feature.3If you set an auto increment column to a null value, the auto increment value is given by the remote backend server. If you set a zero value to the auto increment column, the auto increment value is given by the local server. Rather usespider_reset_auto_increment=2 or 3if you want to use an auto increment column on the remote server.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
0 - DSN Parameter Name:
aim
spider_bgs_first_read
- Description: Number of first read records when concurrent background search is used. To start a range scan on the remote backend the storage engine first needs to send the first record. Fetching a second record in the same query can save a network round trip stopping the plan if the backend has a single record. First read and second read are used to warm up for background search, third read without using spider_split_read and spider_semi_split_read will fetch the remaining data source in a single last fetch.
-1The table parameter is adopted.0Records are usually retrieved.1 or moreNumber of records.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
2 - DSN Parameter Name:
bfr
spider_bgs_mode
- Description: Background search mode. Partitioning plugin scans partitions one after the other to optimize the memory usage. Because the shards are external, reading all shards can be performed in parallel when the plan prunes multiple partitions.
-1The table parameter is adopted.0Background search is disabled.1Background search is used if search with no lock.2Background search is used if search with no lock or shared lock.3Background search is used regardless of the lock.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
0 - DSN Parameter Name:
bmd
spider_bgs_second_read
- Description: Number of second read records on the backend server when background search is used. When the first records are found from spider_bgs_first_read, the engine will continue scanning a range adding a LIMIT spider_bgs_first_read, spider_bgs_second_read.
-1The table parameter is adopted.0Records are usually retrieved.1 or moreNumber of records.
- Scope: Global, Session
- Dynamic: Yes
- Default Session Value:
-1 - Default Table Value:
100 - DSN Parameter Name:
bsr
spider_bka_engine
- Description: The temporary table storage engine used when the bka_mode table parameter is
1. The default is the value of the table parameter, memory by default. - Scope: Global, Session
- Dynamic: Yes
- Data Type:
string - Default Session Value:
"" - Default Table Value:
Memory - DSN Parameter Name:
bke
spider_bka_mode
- Description: The internal action for using
multi_split_read=0.-1The table parameter is adopted.0Use "union all".1Use temporary table if it is judged acceptable.2Same as1and avoiding replication delay.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
1 - DSN Parameter Name:
bkm
spider_block_size
- Description: Size of memory block used in MariaDB. Can usually be left unchanged.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
16384 - DSN Parameter Name:
bsz
spider_bulk_access_free
- Description: Free mode of bulk access resources.
-1The table parameter is adopted.0in reset1in close
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
0 - Introduced: Spider 3.0
- DSN Parameter Name:
baf
spider_bulk_size
- Description: Size in bytes of the buffer when multiple INSERT's are grouped in a batch, bulk insert.
-1The table parameter is adopted.0 or more: Size of the buffer.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
16000 - DSN Parameter Name:
bsz
spider_bulk_update_mode
- Description: Bulk update and delete mode. If spider_bgs_mode or spider_split_read are changed from their default settings, Spider treats this parameter setting as
2.-1The table parameter is adopted.0Send "update" and "delete" statements one by one.1Send collected multiple "update" and "delete" statements. Collected statements are sent one by one.2Send collected multiple "update" and "delete" statements. Collected statements are sent together.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
0 - DSN Parameter Name:
bum
spider_bulk_update_size
- Description: Size in bytes of the "update" and "delete" query generated at bulk update.
-1The table parameter is adopted.0 or moreSize of buffer.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
16000 - DSN Parameter Name:
bus
spider_casual_read
- Description: The default for spider is to have casual read this can enable all isolation level like repeatable read to work for transactions on multiple backend. For auto commit queries read consistency can be relaxed and run on multiple connections to the backends.
-1Use table parameter0Casual read1Choose connection channel automatically2-63Number of connection channel
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
0 - DSN Parameter Name:
##
spider_conn_recycle_mode
- Description: Connection recycle mode.
0Disconnect.1Recycles by all sessions.2Recycles in the same session.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
0
spider_conn_recycle_strict
- Description: Whether or not to force the creation of a new connection.
ONDon't force.OFFForce new connection
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
boolean - Default Session Value:
OFF
spider_connect_mutex
- Description: Serialized remote servers connections. You can use this parameter if you get an error or slowdown from too many connection processes.
0Not serialized.1: Serialized.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
0
spider_connect_retry_count
- Description: Connect-retry-count for connection failure caused by too many connection processes.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
1000
spider_connect_retry_interval
- Description: Connect-retry-interval in micro-seconds for connection failure caused by too many connection processes.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
1000
spider_connect_timeout
- Description: The timeout in seconds to declare remote backend not responsive when opening a connection. Can be changed for high latency networks.
-1The table parameter is adopted.0Less then 1.1 and moreNumber of second.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Max Value:
2147483647 - Default Session Value:
-1 - Default Table Value:
0 - DSN Parameter Name:
cto
spider_crd_bg_mode
- Description: Indexes the cardinality statistics in the background. Disable when crd_mode = 3 or crd_interval = 0
-1The table parameter is adopted.0Background confirmation is disabled.1Background confirmation is enabled.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
1 - DSN Parameter Name:
cbm
spider_crd_interval
- Description: Time interval in seconds of index cardinality statistics. Set to 0 to always get the newest information from remote servers.
-1The table parameter is adopted.1 or moreInterval in seconds table state confirmation.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
51 - DSN Parameter Name:
civ
spider_crd_mode
- Description: Mode for index cardinality statistics. The show command is used at the table level default.
-1,0The table parameter is adopted.1The show command is used.2The information schema is used.3The explain command is used.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
1 - DSN Parameter Name:
cmd
spider_crd_sync
- Description: Index cardinality statistics synchronization in partitioned tables.
-1The table parameter is adopted.0No synchronization.1Table state is synchronized when opening a table, no more synchronization later.2Synchronization.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
0 - DSN Parameter Name:
csy
spider_crd_type
- Description: Type of cardinality calculation. Only effective when crd_mode is 1 or 2.
-1The table parameter is adopted.0crd_weight is used as a fixed value.1crd_weight is used as an addition value.2crd_weight is used as a multiplication value.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
2 - DSN Parameter Name:
ctp
spider_crd_weight
- Description: Weight coefficient to calculate effectiveness of index from cardinality of column. See spider_crd_type.
-1The table parameter is adopted.0 or moreWeight.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
2 - DSN Parameter Name:
cwg
spider_direct_dup_insert
- Description: How to manage duplicate key check REPLACE and INSERT IGNORE and LOAD DATA LOCAL INFILE to remote server. Can save on network roundtrips if the key always maps to a single partition. For bulk operations, records will be checked for duplicate errors one by one on the remote server unless you set to
spider_direct_dup_insert=1.-1The table parameter is adopted.0Duplicate check on local server.1Avoid duplicate check on local server.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
0 - DSN Parameter Name:
ddi
spider_direct_order_limit
- Description: Push down ORDER BY and LIMIT to remote server
-1The table parameter is adopted.0Local execution1Push down execution
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
0 - DSN Parameter Name:
dol
spider_error_read_mode
- Description: Can send empty result when error raised reading from backend server. Can be useful for applications that do not implement replaying transactions.
-1use table parameter0return error1return empty record on error
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
0 - DSN Parameter Name:
erm
spider_error_write_mode
- Description: Can send empty result when error raised writing to backend server. Can be useful for applications that do not implement replaying transactions.
-1 :use table parameter0 :return error1 :return empty record on error
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
0 - DSN Parameter Name:
ewm
spider_first_read
- Description: Number of first read records to start a range scan on the backend server. The storage engine first needs to send the first record. Fetching the second record can save a network round trip stopping the plan if the backend has a single record. First read and second read are used to warm up for background search, third read without using spider_split_read and spider_semi_split_read will fetch the remaining data source in a single last fetch.
-1The table parameter is adopted.0Records are usually retrieved.1 or moreNumber of records.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
2 - DSN Parameter Name:
frd
spider_force_commit
- Description: Behavior when error occurs on xa prepare, xa commit, and xa rollback.
0The error is returned.1The error is returned when xid doesn't exist, otherwise continues processing2Processing continues disregarding all the errors.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
0
spider_general_log
- Description: Whether to log all Spider commands to the general log. Error codes are logged according to the spider_log_result_errors variable.
OFFNo commands are logged.ONCommands are logged to the general log.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
boolean - Default Session Value:
OFF
spider_init_sql_alloc_size
- Description: Initial size of the local SQL buffer.
-1The table parameter is adopted.0 or moreSize of the buffer.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
1024 - DSN Parameter Name:
isa
spider_internal_limit
- Description: Limit the number of records when acquired from remote server.
-1The table parameter is adopted.0 or moreNumber of records limit.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
9223372036854775807 - DSN Parameter Name:
ilm
spider_internal_offset
- Description: Skip records when acquired from the remote server.
-1The table parameter is adopted.0or more : Number of records to skip.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
0 - DSN Parameter Name:
ios
spider_internal_optimize
- Description: Push down of OPTIMIZE TABLE
-1The table parameter is adopted.0Transmitted.1Not transmitted.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
0 - DSN Parameter Name:
iom
spider_internal_optimize_local
- Description: Whether to transmit to the remote server when OPTIMIZE TABLE is executed on the local server.
-1The table parameter is adopted.0Not transmitted.1Transmitted.
- Default Session Value:
-1 - DSN Parameter Name:
iol
spider_internal_sql_log_off
- Description: Whether SQL transmitted to the remote server is logged to the general log.
OFFLog SQL to remote server.ONDo not log SQL to remote server.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
boolean - Default Session Value:
ON
spider_internal_unlock
- Description: Whether or not unlock tables is transmitted to the connection of the table used with the SELECT.
0Not transmitted.1Transmitted.
- Data Type:
numeric - Default Session Value:
0
spider_internal_xa
- Description: Whether XA implementation is at the server or the storage engine level. Set different server ids in the all server instances for generating different xa id when using Server.
OFFEngine protocol.ONServer protocol.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
boolean - Default Session Value:
OFF
spider_internal_xa_snapshot
- Description: When using MariaDB internal XA implementation and START TRANSACTION WITH CONSISTENT SNAPSHOT. There is a limitation for reading consistent data on all backends.
0Raise error when use a spider table1Raise error when START TRANSACTION2Take a consistent CONSISTENT SNAPSHOT on each backend . But global consistency is lost3Take a start transaction with XA but remove CONSISTENT SNAPSHOT.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
0
spider_local_lock_table
- Description: Whether or not LOCK TABLES is pushed down to the remote server.
0Transmitted.1Not transmitted.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
0
spider_lock_exchange
- Description: Whether to convert SELECT LOCK IN SHARE MODE and SELECT FOR UPDATE to LOCK TABLE
0Not converted.1Converted.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
0
spider_log_result_errors
- Description: Whether to log results from the data node to the Spider node into the error log. The default value is
0, no logging.0: No errors are logged.1: Errors are logged.2: As for1, as well as logging warning summaries.3: As for2as well as logging warning details.4: As for3as well as logging all result summaries.
spider_low_mem_read
- Description: Whether to use low memory mode when a query internally issued to a remote server is executed and gets a result list.
-1The table parameter is adopted.0Low memory mode is not used.0Low memory mode is used.
- Data Type:
numeric - Default Value:
-1
spider_max_order
- Description: Maximum number of columns for ORDER BY.
-1The table parameter is adopted.0 and moreMaximum number of columns.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Data Range:
-1,32767 - Default Session Value:
-1 - Default Table Value:
32767# - DSN Parameter Name:
mod
spider_multi_split_read
- Description: Determines whether to divide a statement into multiple SQL statements sent to the remote backend server when a range retrieval is resolved to multiple conditions by the optimizer.
-1The table parameter is adopted.0Not divided.1Divided.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
0 - DSN Parameter Name:
msr
spider_net_read_timeout
- Description: The TCP timeout in seconds to declare remote backend not responsive when reading from a connection. Can be changed for slow latency networks.
-1The table parameter is adopted.0Less than 1 second timeout.1 and moreTimeout in seconds.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Max Value:
2147483647 - Default Session Value:
-1 - Default Table Value:
0 - DSN Parameter Name:
nrt
spider_net_write_timeout
- Description: The TCP timeout in seconds to declare remote backend not responsive when writing to a connection. Can be changed for slow latency networks.
-1The table parameter is adopted.0Less than 1 second timeout.1 and moreTimeout in seconds.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Max Value:
2147483647 - Default Session Value:
-1 - Default Table Value:
0 - DSN Parameter Name:
nwt
spider_ping_interval_at_trx_start
- Description: Reset the connection keepalive timeout in seconds by sending a ping.
0At every transaction.1 and moreNumber of seconds.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Max Value:
2147483647 - Default Session Value:
3600
spider_quick_mode
- Description: Type of backend query buffering, either buffer on the remote backend server or in the local buffer.
-1The table parameter is adopted.0Local buffering, it acquires records collectively.1Remote buffering, acquisition record per record. Interrupt does not wait and recover on context switch back.2Remote buffering, acquisition record per record. Interrupt wait the end of the acquisition
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
0 - DSN Parameter Name:
qmd
spider_quick_page_size
- Description: Number of records in a page when acquired record by record.
-1The table parameter is adopted.0 or moreNumber of records.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
100 - DSN Parameter Name:
qps
spider_read_only_mode
- Description: Whether to set Spider tables to read only
-1The table parameter is adopted.0Writeable1Read only
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
0 - DSN Parameter Name:
rom
spider_remote_access_charset
- Description: Force session character set when connecting to the backend server. Can improve connection time performance.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
string - Default Session Value:
null
spider_remote_autocommit
- Description: Set auto commit mode when connecting to the backend server. Can improve connection time performance.
-1Don't set.0autocommit = 01autocommit = 1
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1
spider_remote_default_database
- Description: Set the local default database when connecting to the backend server. Can improve connection time performance.
0OFF1ON
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
boolean - Default Session Value:
ON
spider_remote_sql_log_off
- Description: Set sql_log_off when connecting to the backend server.
-1Don't set.0sql_log_off = 01sql_log_off = 1
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1
spider_remote_time_zone
- Description: Force time zone when connecting to the backend. Can improve the performance of the connection if you know the time zone.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
string - Default Session Value:
null
spider_remote_trx_isolation
- Description: Set transaction isolation level when connecting to the backend server.
-1Don't set.0READ UNCOMMITTED1READ COMMITTED2REPEATABLE READ3SERIALIZABLE
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1
spider_reset_sql_alloc
- Description: Reset per connection SQL buffer after SQL is executed.
-1The table parameter is adopted.0Not reset.1Reset.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
1 - DSN Parameter Name:
rsa
spider_same_server_link
- Description: Enable linking a table to the same local instance.
0OFF1ON
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
boolean - Default Session Value:
OFF
spider_second_read
- Description: Number of second read records on the backend server when the first records are found from spider_first_read, the engine will continue scanning a range adding a LIMIT spider_first_read, spider_second_read.
-1The table parameter is adopted.0Records are usually retrieved.1 or moreNumber of records.
- Scope: Global, Session
- Dynamic: Yes
- Default Session Value:
-1 - Default Table Value:
9223372036854775807 - DSN Parameter Name:
srd
spider_select_column_mode
- Description: Set preferred mode of column retrieval from remote backend server.
-1The table parameter is adopted.0Use index columns if the SELECT statement can solve by using an index, otherwise use all columns.1Use columns that are judged necessary.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
1 - DSN Parameter Name:
scm
spider_selupd_lock_mode
- Description: Type of local lock mode on INSERT SELECT.
-1The table parameter is adopted.0No lock taken.1Shared lock taken.2Exclusive lock taken.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
1 - DSN Parameter Name:
slm#
spider_semi_split_read
- Description: Whether or not to use chunk retrieval with offset and limit parameter on the remote backend server SQL when using spider_split_read.
-1The table parameter is adopted.0Chunk retrieval not used.1 or moreChunk retrieval used.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
0 - DSN Parameter Name:
ssr#
spider_semi_split_read_limit
- Description: The limit value for semi_split_read.
-1The table parameter is adopted.0 or moreThe limit value.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
9223372036854775807 - DSN Parameter Name:
ssl#
spider_semi_table_lock
- Description: For non transactional storage engines, add LOCK TABLES to the remote backends during SQL execution to preserve consistency between roundtrips.
0Off1On
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
boolean - Default Session Value:
OFF - DSN Parameter Name:
stl#
spider_semi_table_lock_connection
- Description:Use multiple connections for semi_table_lock.
-1The table parameter is adopted.0Use same connection.1Use different connection.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
1 - DSN Parameter Name:
stc#
spider_semi_trx
- Description: Used to control backend consistency of transactions when an SQL statement is split into multiple statements to the backend. Consistency can be preserved or relaxed. Auto-committed SQL will be encapsulated inside a transaction on the remote backend. You should use
spider_semi_trx_isolation=2, if you use read commited or read uncommitted to force consistency.0OFF1ON
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
boolean - Default Session Value:
ON
spider_semi_trx_isolation
- Description: Set consistency during range SQL execution when spider_sync_trx_isolation is 1
-1OFF0READ UNCOMMITTED1READ COMMITTED2REPEATABLE READ3SERIALIZABLE
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1
spider_skip_default_condition
- Description: Whether or not to compute condition push down.
-1The table parameter is adopted.0Compute condition push down.1Don't compute condition push down.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
0 - DSN Parameter Name:
sdc
spider_split_read
- Description: Number of records in the chunk used to retry the result when a range query is sent to a remote backend server.
-1The table parameter is adopted.0 or moreNumber of records.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
9223372036854775807 - DSN Parameter Name:
srd
spider_sts_bg_mode
- Description: Mode of table statistic at background. Background confirmation is enabled by default at the table level, one thread per partition is created to maintain table status. Disable when sts_interval=0, effective with the default
sts_interval = 10.-1The table parameter is adopted.0Background confirmation is disabled.1Background confirmation is enabled.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
1 - DSN Parameter Name:
sbm
spider_sts_interval
- Description: Time interval of table statistics. Set to 0 to always get the newest information from remote servers.
-1The table parameter is adopted.1 or moreInterval in seconds for table state confirmation.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
10 - DSN Parameter Name:
siv
spider_sts_mode
- Description: Mode for table statistics. The SHOW command is used at the table level default.
-1,0The table parameter is adopted.1The show command is used.2The information schema is used.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
1 - DSN Parameter Name:
smd
spider_sts_sync
- Description: Whether or not table statistics are synchronized in partitioned tables.
-1The table parameter is adopted.0No synchronization.1Table state is synchronized when opening a table, no more synchronization later.2Synchronization.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
0 - DSN Parameter Name:
ssy
spider_support_xa
- Description: Use xa protocol for mirroring and for multi shard transactions.
1Use xa protocol0Don't use xa protocol.
- Scope: Global
- Dynamic: No
- Data Type:
numeric - Default Table Value:
1
spider_sync_autocommit
- Description: Whether or not the local AUTO COMMIT is pushed down to remote backends.
OFFNot pushed down.ONPushed down.
- Scope: Global
- Dynamic: Yes
- Data Type:
boolean - Default Session Value:
ON
spider_sync_time_zone
- Description: Whether or not the local TIME ZONE is pushed down to remote backends.
OFFNot pushed down.ONPushed down.
- Scope: Global
- Dynamic: Yes
- Data Type:
boolean - Default Session Value:
ON
spider_sync_trx_isolation
- Description: Whether or not the local transaction isolation level is pushed down to remote backends.
ONNot pushed down.OFFPushed down.
- Scope: Global
- Dynamic: Yes
- Data Type:
boolean - Default Session Value:
ON
spider_table_init_error_interval
- Description: Interval in seconds for which the same error code is returned if the table init fails, Used to protect against endless loops in the table link.
- Scope: Global
- Dynamic: Yes
- Data Type:
numeric - Default Value:
1 - Range:
-1to4294967295
spider_udf_ct_bulk_insert_interval
- Description: Interval in milliseconds between bulk inserts at copying.
-1The UDF parameter is adopted.0 and moreTime in milliseconds.
- Scope: Global
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
4294967295 - Range:
-1to4294967295
spider_udf_ct_bulk_insert_rows
- Description: Number of rows inserted at a time during a bulk insert when copying.
-1, 0: The table parameter is adopted.1 or moreNumber of rows
- Scope: Global
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
18446744073709551615 - Range:
-1# to9223372036854775807
spider_udf_ds_bulk_insert_rows
- Description: Number of rows inserted at a time during a bulk insert when result set is stored in a temporary table on executing a UDF.
-1, 0The UDF parameter is adopted.1 or moreNumber of rows
- Scope: Global
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
18446744073709551615 - Range:
-1upwards
spider_udf_ds_table_loop_mode
- Description: Whether or not the result set is stored in same temporary table if the temporary table list count at UDF is less than the result set count at executing UDF.
-1The table parameter is adopted.0Drop records.1Insert last table.2Insert first table and loop again.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1
spider_udf_ds_use_real_table
spider_udf_table_lock_mutex_count
spider_udf_table_mon_mutex_count
spider_use_all_conns_snapshot
- Description: Whether or not START TRANSACTION WITH SNAPSHOT is passed to all connections
OFFNot passed.ONPassed to all connections.
- Scope: Global
- Dynamic: Yes
- Data Type:
boolean - Default Session Value:
ON
spider_use_consistent_snapshot
- Description: Whether or not a local START TRANSACTION WITH CONSISTENT is pushed down to backends.
OFFNot pushed down .ONPushed down.
- Scope: Global
- Dynamic: Yes
- Data Type:
boolean - Default Session Value:
ON
spider_use_default_database
- Description: Whether or not the default database is used.
OFFDefault database not used.ONUse default database.
- Scope: Global
- Dynamic: Yes
- Data Type:
boolean - Default Session Value:
ON
spider_use_flash_logs
- Description: Whether or not FLUSH LOGS is pushed down to remote backends
OFFNot pushed down.ONPushed down.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
boolean - Default Session Value:
OFF
spider_use_handler
- Description: Conversion of HANDLER SQL command. Handler conversion will be disabled if spider_sync_trx_isolation =0 to avoid to using handler command on serializable isolation level.
0HANDLER converted to SELECT1HANDLER passed to the backend2SQL is converted to HANDLER3SQL is converted to HANDLER and HANDLER is converted to SQL
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
0 - DSN Parameter Name:
uhd
spider_use_pushdown_udf
- Description: When engine_condition_pushdown=1 and a UDF function is used in a condition, determines whether the UDF execution is local or pushed down.
-1The table parameter is adopted.0Not transmitted.1Transmitted.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
1 - DSN Parameter Name:
upu
spider_use_snapshot_with_flush_tables
- Description: On START TRANSACTION WITH CONSISTENT send to remote backend FLUSH TABLE WITH READ LOCK If this value is 1 or 2, FLUSH LOGS and UNLOCK TABLES are encapsulated
0 : It doesn't add.1 : It adds. (Only when spider_use_all_conns_snapshot is 1)2 : The snap shot synchronizes by using lock tables and flush tables at the xa transaction level. (Only when spider_use_all_conns_snapshot is 1, it is effective.)
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
0
spider_use_table_charset
- Description: Whether or not to use the local table character set for the backend connection.
-1The table parameter is adopted.0Use utf8.1Use table character set.
- Scope: Global, Session
- Dynamic: Yes
- Data Type:
numeric - Default Session Value:
-1 - Default Table Value:
1 - DSN Parameter Name:
utc
Comments
Comments loading...
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.