| title | excerpt | products | keywords | tags | ||||
|---|---|---|---|---|---|---|---|---|
TimescaleDB configuration and tuning |
Configure the TimescaleDB settings related to policies, query planning and execution, distributed hypertables, and administration |
|
|
|
import TimescaleDBConfig from "versionContent/_partials/_timescaledb-config.mdx"; import MultiNodeDeprecation from "versionContent/_partials/_multi-node-deprecation.mdx";
Enables two-phase commit for distributed hypertables. If disabled, it uses a one-phase commit instead, which is faster but can result in inconsistent data. It is by default enabled.
If enabled, TimescaleDB combines different chunks belonging to the same hypertable into a single query per data node. It is by default enabled.
When acting as a access node, TimescaleDB splits batches of inserted
tuples across multiple data nodes. It batches up to
max_insert_batch_size tuples per data node before flushing. Setting
this to 0 disables batching, reverting to tuple-by-tuple inserts. The
default value is 1000.
Enables binary format for data exchanged between nodes in the cluster. It is by default enabled.
Enables DDL operations on data nodes by a client and do not restrict execution of DDL operations only by access node. It is by default disabled.
Enables optimization that runs remote queries asynchronously across data nodes. It is by default enabled.
Enable getting and showing EXPLAIN output from remote nodes. This
requires sending the query to the data node, so it can be affected
by the network connection and availability of data nodes. It is by default disabled.
Pick data fetcher type based on type of queries you plan to run, which
can be either copy, cursor, or auto. The default is auto.
Specifies the path used to search user certificates and keys when
connecting to data nodes using certificate authentication. Defaults to
timescaledb/certs under the $PG data directory.
Specifies the name of the file where passwords are stored and when connecting to data nodes using password authentication.