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
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -94,10 +94,10 @@ sessions.get_or_create(
94
94
|===
95
95
| Name | Type | Optional | Default | Description
96
96
| session_name | str | no | - | Name of the session. Must be unique within the project.
97
-
| memory | SessionMemory | no | - | Amount of memory available to the session. https://neo4j.com/docs/graph-data-science-client/{docs-version}/api/sessions/session_memory[Supported values].
98
-
| db_connection | DbmsConnectionInfo | yes | None | Bolt server URL, username, and password to a Neo4j DBMS. Required for the Attached and Self-managed types.
97
+
| memory | https://neo4j.com/docs/graph-data-science-client/{docs-version}/api/sessions/session_memory[SessionMemory] | no | - | Amount of memory available to the session.
98
+
| db_connection | https://neo4j.com/docs/graph-data-science-client/{docs-version}/api/sessions/DbmsConnectionInfo[DbmsConnectionInfo] | yes | None | Bolt server URL, username, and password to a Neo4j DBMS. Required for the Attached and Self-managed types. Alternatively to username and password, you can provide a `neo4j.Auth` https://neo4j.com/docs/python-manual/current/connect-advanced/#authentication-methods[object].
99
99
| ttl | datetime.timedelta | yes | 1h | Time-to-live for the session.
100
-
| 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.
100
+
| 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.
101
101
| timeout | int | yes | None | Seconds to wait for the session to enter Ready state. If the time is exceeded, an error will be returned.
In order to help determine a good session size for a given workload, there is the `estimate()` function.
201
-
By providing expected node and relationship counts as well as algorithm categories that should be used, it will return an estimated size of the session.
201
+
By providing expected node and relationship counts as well as https://neo4j.com/docs/graph-data-science-client/{docs-version}/api/sessions/algorithm_category[algorithm categories] that should be used, it will return an estimated size of the session.
202
202
203
203
.Estimating the size of a GDS Session via the GdsSessions object:
0 commit comments