Skip to content

Document: add system param per_database_isolation #436

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion operate/view-configure-system-parameters.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Currently, these system parameters are available in RisingWave.
| pause\_on\_next\_bootstrap | This parameter is used for debugging and maintenance purposes. Setting it to true will pause all data sources, such as connectors and DMLs, when the cluster restarts. This parameter will then be reset to its default value (false). To resume data ingestion, simply run `risectl meta resume` or restart the cluster again. |
| enable\_tracing | Whether to enable distributed tracing. This parameter is used to toggle the opentelemetry tracing during runtime. Its default value is false. |
| time\_travel\_retention\_ms | The data retention period for time travel. Defaults to 0, which disables time travel. To enable this feature, set it to a a non-zero value. |
| per_database_isolation | Enables per-database failure isolation, so that failures such as streaming job errors or worker crashes in one database do not affect other databases. Defaults to `true`. For more details of database isolation, see [Workload isolation and interaction](/operate/workload-isolation-interaction). |

## How to view system parameters?

Expand Down Expand Up @@ -53,7 +54,7 @@ SHOW PARAMETERS;
pause_on_next_bootstrap | false | t
enable_tracing | false | t
time_travel_retention_ms | 0 | t

...
```

## How to configure system parameters?
Expand Down
Loading