Skip to content
This repository was archived by the owner on Jul 21, 2019. It is now read-only.

Commit 9fe4cca

Browse files
authored
Document more flags in the tserver page (#139)
1 parent 52cfc72 commit 9fe4cca

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

content/latest/admin/yb-tserver.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,11 @@ Flag | Mandatory | Default | Description
6363
`--version` | N | N/A | Show version and build info.
6464
`--use_cassandra_authentication` | N | false | If enabled, it will require YCQL client authentication (username/password), enable YCQL security statements (CREATE/DROP/GRANT/REVOKE ROLE and GRANT/REVOKE PERMISSION), and enforce permissions for YCQL statements.
6565
`--rocksdb_compact_flush_rate_limit_bytes_per_sec` | N | 256MB | Used to control rate of memstore flush and SSTable file compaction.
66-
`--remote_boostrap_rate_limit_bytes_per_sec` | N | 256MB | Rate control across all tablets being remote bootstrapped from or to this process.
66+
`--remote_bootstrap_rate_limit_bytes_per_sec` | N | 256MB | Rate control across all tablets being remote bootstrapped from or to this process.
6767
`--yb_num_shards_per_tserver` | N | -1 | The number of shards per yb-tserver per table when a user table is created. Server automatically picks a valid default internally.
68+
`--durable_wal_write` | N | false | If set to `false`, the writes to the Raft log are synced to disk every `interval_durable_wal_write_ms` milliseconds or every `bytes_durable_wal_write_mb` MB, whichever comes first. This default setting is recommended only for multi-AZ or multi-region deployments where the zones/regions are independent failure domains and there isn't a risk of correlated power loss.
69+
`--interval_durable_wal_write_ms` | N | 1000 | When `durable_wal_write` is false, writes to the Raft log are synced to disk every `interval_durable_wal_write_ms` milliseconds. Also see `bytes_durable_wal_write_mb`.
70+
`--bytes_durable_wal_write_mb`` | N | 1 | When `durable_wal_write` is false, writes to the Raft log are synced to disk every `bytes_durable_wal_write_mb` MB. Also see `interval_durable_wal_write_ms`.
6871

6972
## Admin UI
7073

0 commit comments

Comments
 (0)