Skip to content
Merged
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
22 changes: 11 additions & 11 deletions modules/ROOT/pages/clauses/listing-settings.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -180,13 +180,13 @@ For a full list of all available settings in Neo4j, refer to link:{neo4j-docs-ba
== Listing settings with filtering on output columns

The listed settings can be filtered by using the `WHERE` clause.
For example, the following query returns the name, value, and description of the first three settings starting with 'dbms':
For example, the following query returns the name, value, and description of the first three settings starting with 'server':

.Query
[source, cypher]
----
SHOW SETTINGS YIELD name, value, description
WHERE name STARTS WITH 'dbms'
WHERE name STARTS WITH 'server'
RETURN name, value, description
LIMIT 3
----
Expand All @@ -196,17 +196,17 @@ LIMIT 3
|===
| name | value | description

| "dbms.cluster.catchup.client_inactivity_timeout"
| "10m"
| "The catchup protocol times out if the given duration elapses with no network activity. Every message received by the client from the server extends the timeout duration."
| "server.backup.enabled"
| "true"
| "Enable support for running online backups."

| "dbms.cluster.discovery.endpoints"
| null
| "A comma-separated list of endpoints that a server should contact in order to discover other cluster members. Typically, all cluster members, including the current server, must be specified in this list. The setting configures the endpoints for Discovery service V1."
| "server.backup.exec_connector.command"
| ""
| "Command to execute for ExecDataConnector list"

| "dbms.cluster.discovery.log_level"
| "WARN"
| "The level of middleware logging."
| "server.backup.exec_connector.scheme"
| ""
| "Schemes ExecDataConnector will match on"

3+d|Rows: 3
|===
Expand Down
Loading