Aura Graph Analytics session
A managed, temporary compute environment that holds a projection and runs algorithms against it.
Also written: AGA session, graph analytics session, graph analytics sessions
Example
A session named movies, with a memory tier and a lifetime.
cypher
CALL gds.session.getOrCreate(
'movies',
'2GB',
duration({minutes: 30})
)
YIELD id AS sessionId, name, status, expiryDate
RETURN sessionId, name, status, expiryDateThe projection is held in the session, and the algorithms run there rather than in the database. The session ends after 30 idle minutes. Calling getOrCreate again under the same name returns the session already running instead of starting a second one.
Lessons that use this term
The lesson and course links below open in a new tab.
No published lesson uses this term yet.