You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/modules/ROOT/pages/graph-analytics-serverless.adoc
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -111,8 +111,8 @@ sessions.get_or_create(
111
111
| ttl | datetime.timedelta | yes | 1h | Time-to-live for the session.
112
112
| cloud_location | https://neo4j.com/docs/graph-data-science-client/{docs-version}/api/sessions/cloud_location[CloudLocation] | yes | None | Aura-supported cloud provider and region where the GDS Session will run. Required for the Self-managed and Standalone types.
113
113
| timeout | int | yes | None | Seconds to wait for the session to enter Ready state. If the time is exceeded, an error will be returned.
114
-
| neo4j_driver_options | dict[str, any] | yes | None | Additional options passed to the Neo4j driver
115
-
| arrow_client_options | dict[str, any] | yes | None | Additional options passed to the Arrow Flight Client
114
+
| neo4j_driver_options | dict[str, any] | yes | None | Additional options passed to the Neo4j driver to the Neo4j DBMS. Only relevant if `db_connection` is specified.
115
+
| arrow_client_options | dict[str, any] | yes | None | Additional options passed to the Arrow Flight Client used to connect to the Session.
Copy file name to clipboardExpand all lines: graphdatascience/session/gds_sessions.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -122,7 +122,7 @@ def get_or_create(
122
122
ttl: (Optional[timedelta]): The sessions time to live after inactivity in seconds.
123
123
cloud_location (Optional[CloudLocation]): The cloud location. Required if the GDS session is for a self-managed database.
124
124
timeout (Optional[int]): Optional timeout (in seconds) when waiting for session to become ready. If unset the method will wait forever. If set and session does not become ready an exception will be raised. It is user responsibility to ensure resource gets cleaned up in this situation.
125
-
neo4j_driver_config (Optional[dict[str, Any]]): Optional configuration for the Neo4j driver.
125
+
neo4j_driver_config (Optional[dict[str, Any]]): Optional configuration for the Neo4j driver to the Neo4j DBMS. Only relevant if `db_connection` is specified..
126
126
arrow_client_options (Optional[dict[str, Any]]): Optional configuration for the Arrow Flight client.
0 commit comments