|
99 | 99 | | `query` | -- | -- | The query engine options. |
|
100 | 100 | | `query.parallelism` | Integer | `0` | Parallelism of the query engine.<br/>Default to 0, which means the number of CPU cores. |
|
101 | 101 | | `storage` | -- | -- | The data storage options. |
|
102 |
| -| `storage.data_home` | String | `./greptimedb_data/` | The working home directory. | |
| 102 | +| `storage.data_home` | String | `./greptimedb_data` | The working home directory. | |
103 | 103 | | `storage.type` | String | `File` | The storage type used to store the data.<br/>- `File`: the data is stored in the local file system.<br/>- `S3`: the data is stored in the S3 object storage.<br/>- `Gcs`: the data is stored in the Google Cloud Storage.<br/>- `Azblob`: the data is stored in the Azure Blob Storage.<br/>- `Oss`: the data is stored in the Aliyun OSS. |
|
104 | 104 | | `storage.cache_path` | String | Unset | Read cache configuration for object storage such as 'S3' etc, it's configured by default when using object storage. It is recommended to configure it when using object storage for better performance.<br/>A local file directory, defaults to `{data_home}`. An empty string means disabling. |
|
105 | 105 | | `storage.cache_capacity` | String | Unset | The local file cache capacity in bytes. If your disk space is sufficient, it is recommended to set it larger. |
|
|
180 | 180 | | `region_engine.metric` | -- | -- | Metric engine options. |
|
181 | 181 | | `region_engine.metric.experimental_sparse_primary_key_encoding` | Bool | `false` | Whether to enable the experimental sparse primary key encoding. |
|
182 | 182 | | `logging` | -- | -- | The logging options. |
|
183 |
| -| `logging.dir` | String | `./greptimedb_data/logs/` | The directory to store the log files. If set to empty, logs will not be written to files. | |
| 183 | +| `logging.dir` | String | `./greptimedb_data/logs` | The directory to store the log files. If set to empty, logs will not be written to files. | |
184 | 184 | | `logging.level` | String | Unset | The log level. Can be `info`/`debug`/`warn`/`error`. |
|
185 | 185 | | `logging.enable_otlp_tracing` | Bool | `false` | Enable OTLP tracing. |
|
186 | 186 | | `logging.otlp_endpoint` | String | `http://localhost:4317` | The OTLP tracing endpoint. |
|
|
281 | 281 | | `datanode.client.connect_timeout` | String | `10s` | -- |
|
282 | 282 | | `datanode.client.tcp_nodelay` | Bool | `true` | -- |
|
283 | 283 | | `logging` | -- | -- | The logging options. |
|
284 |
| -| `logging.dir` | String | `./greptimedb_data/logs/` | The directory to store the log files. If set to empty, logs will not be written to files. | |
| 284 | +| `logging.dir` | String | `./greptimedb_data/logs` | The directory to store the log files. If set to empty, logs will not be written to files. | |
285 | 285 | | `logging.level` | String | Unset | The log level. Can be `info`/`debug`/`warn`/`error`. |
|
286 | 286 | | `logging.enable_otlp_tracing` | Bool | `false` | Enable OTLP tracing. |
|
287 | 287 | | `logging.otlp_endpoint` | String | `http://localhost:4317` | The OTLP tracing endpoint. |
|
|
312 | 312 |
|
313 | 313 | | Key | Type | Default | Descriptions |
|
314 | 314 | | --- | -----| ------- | ----------- |
|
315 |
| -| `data_home` | String | `./greptimedb_data/` | The working home directory. | |
| 315 | +| `data_home` | String | `./greptimedb_data` | The working home directory. | |
316 | 316 | | `bind_addr` | String | `127.0.0.1:3002` | The bind address of metasrv. |
|
317 | 317 | | `server_addr` | String | `127.0.0.1:3002` | The communication server address for the frontend and datanode to connect to metasrv.<br/>If left empty or unset, the server will automatically use the IP address of the first network interface<br/>on the host, with the same port number as the one specified in `bind_addr`. |
|
318 | 318 | | `store_addrs` | Array | -- | Store server address default to etcd store.<br/>For postgres store, the format is:<br/>"password=password dbname=postgres user=postgres host=localhost port=5432"<br/>For etcd store, the format is:<br/>"127.0.0.1:2379" |
|
|
357 | 357 | | `wal.replication_factor` | Integer | `1` | Expected number of replicas of each partition. |
|
358 | 358 | | `wal.create_topic_timeout` | String | `30s` | Above which a topic creation operation will be cancelled. |
|
359 | 359 | | `logging` | -- | -- | The logging options. |
|
360 |
| -| `logging.dir` | String | `./greptimedb_data/logs/` | The directory to store the log files. If set to empty, logs will not be written to files. | |
| 360 | +| `logging.dir` | String | `./greptimedb_data/logs` | The directory to store the log files. If set to empty, logs will not be written to files. | |
361 | 361 | | `logging.level` | String | Unset | The log level. Can be `info`/`debug`/`warn`/`error`. |
|
362 | 362 | | `logging.enable_otlp_tracing` | Bool | `false` | Enable OTLP tracing. |
|
363 | 363 | | `logging.otlp_endpoint` | String | `http://localhost:4317` | The OTLP tracing endpoint. |
|
|
440 | 440 | | `query` | -- | -- | The query engine options. |
|
441 | 441 | | `query.parallelism` | Integer | `0` | Parallelism of the query engine.<br/>Default to 0, which means the number of CPU cores. |
|
442 | 442 | | `storage` | -- | -- | The data storage options. |
|
443 |
| -| `storage.data_home` | String | `./greptimedb_data/` | The working home directory. | |
| 443 | +| `storage.data_home` | String | `./greptimedb_data` | The working home directory. | |
444 | 444 | | `storage.type` | String | `File` | The storage type used to store the data.<br/>- `File`: the data is stored in the local file system.<br/>- `S3`: the data is stored in the S3 object storage.<br/>- `Gcs`: the data is stored in the Google Cloud Storage.<br/>- `Azblob`: the data is stored in the Azure Blob Storage.<br/>- `Oss`: the data is stored in the Aliyun OSS. |
|
445 | 445 | | `storage.cache_path` | String | Unset | Read cache configuration for object storage such as 'S3' etc, it's configured by default when using object storage. It is recommended to configure it when using object storage for better performance.<br/>A local file directory, defaults to `{data_home}`. An empty string means disabling. |
|
446 | 446 | | `storage.cache_capacity` | String | Unset | The local file cache capacity in bytes. If your disk space is sufficient, it is recommended to set it larger. |
|
|
521 | 521 | | `region_engine.metric` | -- | -- | Metric engine options. |
|
522 | 522 | | `region_engine.metric.experimental_sparse_primary_key_encoding` | Bool | `false` | Whether to enable the experimental sparse primary key encoding. |
|
523 | 523 | | `logging` | -- | -- | The logging options. |
|
524 |
| -| `logging.dir` | String | `./greptimedb_data/logs/` | The directory to store the log files. If set to empty, logs will not be written to files. | |
| 524 | +| `logging.dir` | String | `./greptimedb_data/logs` | The directory to store the log files. If set to empty, logs will not be written to files. | |
525 | 525 | | `logging.level` | String | Unset | The log level. Can be `info`/`debug`/`warn`/`error`. |
|
526 | 526 | | `logging.enable_otlp_tracing` | Bool | `false` | Enable OTLP tracing. |
|
527 | 527 | | `logging.otlp_endpoint` | String | `http://localhost:4317` | The OTLP tracing endpoint. |
|
|
573 | 573 | | `heartbeat.interval` | String | `3s` | Interval for sending heartbeat messages to the metasrv. |
|
574 | 574 | | `heartbeat.retry_interval` | String | `3s` | Interval for retrying to send heartbeat messages to the metasrv. |
|
575 | 575 | | `logging` | -- | -- | The logging options. |
|
576 |
| -| `logging.dir` | String | `./greptimedb_data/logs/` | The directory to store the log files. If set to empty, logs will not be written to files. | |
| 576 | +| `logging.dir` | String | `./greptimedb_data/logs` | The directory to store the log files. If set to empty, logs will not be written to files. | |
577 | 577 | | `logging.level` | String | Unset | The log level. Can be `info`/`debug`/`warn`/`error`. |
|
578 | 578 | | `logging.enable_otlp_tracing` | Bool | `false` | Enable OTLP tracing. |
|
579 | 579 | | `logging.otlp_endpoint` | String | `http://localhost:4317` | The OTLP tracing endpoint. |
|
|
0 commit comments