Skip to content

Commit 7056849

Browse files
Change SHOW SETTINGS filter query example (#1103)
1 parent 220046a commit 7056849

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

modules/ROOT/pages/clauses/listing-settings.adoc

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -180,13 +180,13 @@ For a full list of all available settings in Neo4j, refer to link:{neo4j-docs-ba
180180
== Listing settings with filtering on output columns
181181

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

185185
.Query
186186
[source, cypher]
187187
----
188188
SHOW SETTINGS YIELD name, value, description
189-
WHERE name STARTS WITH 'dbms'
189+
WHERE name STARTS WITH 'server'
190190
RETURN name, value, description
191191
LIMIT 3
192192
----
@@ -196,17 +196,17 @@ LIMIT 3
196196
|===
197197
| name | value | description
198198

199-
| "dbms.cluster.catchup.client_inactivity_timeout"
200-
| "10m"
201-
| "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."
199+
| "server.backup.enabled"
200+
| "true"
201+
| "Enable support for running online backups."
202202

203-
| "dbms.cluster.discovery.endpoints"
204-
| null
205-
| "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."
203+
| "server.backup.exec_connector.command"
204+
| ""
205+
| "Command to execute for ExecDataConnector list"
206206

207-
| "dbms.cluster.discovery.log_level"
208-
| "WARN"
209-
| "The level of middleware logging."
207+
| "server.backup.exec_connector.scheme"
208+
| ""
209+
| "Schemes ExecDataConnector will match on"
210210

211211
3+d|Rows: 3
212212
|===

0 commit comments

Comments
 (0)