Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
1 change: 1 addition & 0 deletions modules/ROOT/content-nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@
** xref:configuration/dynamic-settings.adoc[]
** xref:configuration/configuration-settings.adoc[]
*** xref:configuration/configuration-settings.adoc#_checkpoint_settings[Checkpoint settings]
*** xref:configuration/configuration-settings.adoc#_cloud_storage_integration_settings[Cloud storage integration settings]
*** xref:configuration/configuration-settings.adoc#_cluster_settings[Cluster settings]
*** xref:configuration/configuration-settings.adoc#_connection_settings[Connection settings]
*** xref:configuration/configuration-settings.adoc#_cypher_settings[Cypher settings]
Expand Down
84 changes: 84 additions & 0 deletions modules/ROOT/pages/configuration/configuration-settings.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,73 @@ a|An integer.
m|+++600+++
|===

== Cloud storage integration settings

Configuration settings enable custom cloud storage and host authority endpoints.

[role=label--enterprise-edition label--new-2025.03]
[[config_dbms.integrations.cloud_storage.azb.blob_endpoint_suffix]]
=== `dbms.integrations.cloud_storage.azb.blob_endpoint_suffix`

.dbms.integrations.cloud_storage.azb.blob_endpoint_suffix
[frame="topbot", stripes=odd, grid="cols", cols="<1s,<4"]
|===
|Description
a|Azure blob storage endpoint suffix. You need to change this if you are not using Azure public cloud (e.g., if you are using Azure Government).
|Valid values
a|A string.
|Default value
m|+++blob.core.windows.net+++
|===


[role=label--enterprise-edition label--new-2025.03]
[[config_dbms.integrations.cloud_storage.azb.authority_endpoint]]
=== `dbms.integrations.cloud_storage.azb.authority_endpoint`

.dbms.integrations.cloud_storage.azb.authority_endpoint
[frame="topbot", stripes=odd, grid="cols", cols="<1s,<4"]
|===
|Description
a|Azure authority host endpoint (only required for certain methods of authentication, it should be specified in its full form - e.g., https://login.microsoftonline.com).
|Valid values
a|A string.
|Default value
m|+++""+++
|===


[role=label--enterprise-edition label--new-2025.03]
[[config_dbms.integrations.cloud_storage.gs.project_id]]
=== `dbms.integrations.cloud_storage.gs.project_id`

.dbms.integrations.cloud_storage.gs.project_id
[frame="topbot", stripes=odd, grid="cols", cols="<1s,<4"]
|===
|Description
a|Project ID of the Google storage bucket(s) to connect to, falling back to the value found by their SDK.
|Valid values
a|
|Default value
m|++++++
|===


[role=label--enterprise-edition label--new-2025.03]
[[config_dbms.integrations.cloud_storage.s3.target_throughput_gbps]]
=== `dbms.integrations.cloud_storage.s3.target_throughput_gbps`

.dbms.integrations.cloud_storage.s3.target_throughput_gbps
[frame="topbot", stripes=odd, grid="cols", cols="<1s,<4"]
|===
|Description
a|The target throughput for transfer requests. Higher value means more connections will be established with S3. It's recommended to set it to the maximum network bandwidth on the host that the application is running on. The default is `10.0`, but when running on EC2 instances, this value can often be set much higher (being specific to the EC2 instance type).
|Valid values
a|
|Default value
m|+++10.0+++
|===


== Cluster settings

Expand Down Expand Up @@ -1864,6 +1931,23 @@ m|+++0.75+++
|===


[role=label--dynamic label--new-2025.03]
[[config_dbms.cypher.transactions.default_subquery_retry_timeout]]
=== `dbms.cypher.transactions.default_subquery_retry_timeout`

.dbms.cypher.transactions.default_subquery_retry_timeout
[frame="topbot", stripes=odd, grid="cols", cols="<1s,<4"]
|===
|Description
a|The default maximum amount of time to attempt retries of a subquery transaction that fails with a transient error in a query with a `CALL () { ... } IN TRANSACTIONS ... ON ERROR RETRY ...` clause. This setting is only used when no retry timeout is explicitly specified in the query. E.g. `CALL () { ... } IN TRANSACTIONS ... ON ERROR RETRY FOR 10 SECONDS` would override this setting with a 10 second retry timeout for that particular query.
|Valid values
a|A duration (Valid units are: ns, μs, ms, s, m, h and d; default unit is s).
|Default value
m|+++30s+++
|===



[role=label--enterprise-edition]
[[config_server.cypher.parallel.worker_limit]]
=== `server.cypher.parallel.worker_limit`
Expand Down
1 change: 1 addition & 0 deletions modules/ROOT/pages/configuration/dynamic-settings.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ RETURN name
| "db.tx_log.rotation.size" |
| "dbms.cluster.network.connect_timeout" |
| "dbms.cypher.render_plan_description" |
| "dbms.cypher.transactions.default_subquery_retry_timeout" |
| "dbms.memory.transaction.total.max" |
| "dbms.routing.client_side.enforce_for_domains" |
| "dbms.routing.reads_on_writers_enabled" |
Expand Down