execution mode
How a GDS algorithm returns its results. One of stats, stream, mutate, write or estimate.
Example
The same algorithm over the same projection, run two ways.
cypher
CALL gds.degree.stream('people')
YIELD nodeId, score
RETURN gds.util.asNode(nodeId).name AS person, scorecypher
CALL gds.degree.write('people', { writeProperty: 'degree' })
YIELD nodePropertiesWritten
RETURN nodePropertiesWrittenstream returns a row for each node and stores nothing. write stores each score on its node in the database and returns how many it wrote.
Lessons that use this term
The lesson and course links below open in a new tab.
8 lessons use this term. Results are ordered by term density.
Analyze Graph Data with Python2 mentions
- Running AlgorithmsGDS Python ClientCall algorithms using Python syntax Choose the right execution mode for your task Chain algorithms together using mutate mode Stream combined results from projections Estimate1 mention
- GDS Workflows in PythonGDS Python Clientgraph projections and inspect them using the Graph object Choose the right execution mode for different situations Work with algorithm results as pandas DataFrames Clean up projections properly to manage1 mention
Graph Data Science in Practice2 mentions
- Execution Modes and ConfigurationGDS FoundationsChoose the appropriate execution mode (stream, stats, mutate, write, estimate) for your task Build efficient workflows by combining modes strategically -2 mentions
Get started with Graph Data Science7 mentions
- Module recap and what's nextWorking with algorithmsthe right execution mode for your1 mention
- Understand the five execution modesWorking with algorithmsexecution mode has an estimate3 mentions
- Module recapEssential projection techniquesthe right execution mode for your1 mention
- Understand GDS documentationWorking with algorithmsAlgorithm name: pageRank Execution mode: stream Required parameters: graph name (String) Optional parameters: configuration (Map) Return1 mention
- Projecting bipartite and multipartite graphsGDS basic conceptslearn when to use each execution mode in Module1 mention