Skip to content
Module 17Specialist and advanced modulesOptional

Scrum for Real-time Graph Teams (Memgraph)

Refine, estimate and slice work when your graph is in-memory, streaming, and expected to answer in milliseconds, not overnight.

6 lessons ~35 min 2 games Scrumling certificate included
This role module opens once you finish Foundations and pass its quiz. That way every learner shares the same Scrum baseline before specialising.
What you'll learn
  • Lesson 17.1: Why real-time graph work is a different Sprint
  • Lesson 17.2: Writing PBIs for streaming graph work
  • Lesson 17.5: Coaching stakeholders on 'live enough'
  • Lesson 17.6: Retros for real-time graph teams
Comprehensive guide to this subject

Free, no account needed. Explains the subject, the trade-offs and the mistakes, and can be downloaded as a PDF.

Read the full public guide
MGS-2026-V1 Official practitioner guide11 min read

The Real-time Graph Scrum Field Guide

Sprinting on Memgraph when the graph is in-memory, streaming, and expected to answer in milliseconds.

Reinforces the module, downloadable as a multi-page PDF, and still useful on the job long after you leave Scrumling.

  • Three numbers every real-time graph PBI must name: event rate, freshness SLO and query latency budget
  • Why back-pressure is the failure mode that passes in staging and breaks on the busiest day
  • A Sprint Review order that makes a freshness number believable
Full lesson list
  • 1Lesson 17.1: Why real-time graph work is a different Sprint6 min
  • 2Lesson 17.2: Writing PBIs for streaming graph work6 min
  • 3Lesson 17.3: Game: capacity for a streaming graph Sprint7 min
  • 4Lesson 17.4: Game: pick the Sprint Goal for a real-time graph iteration7 min
  • 5Lesson 17.5: Coaching stakeholders on 'live enough'5 min
  • 6Lesson 17.6: Retros for real-time graph teams4 min
  • Scrum for Real-time Graph Teams (Memgraph) quizEarn Scrumling certificate

What changes when your graph has to answer in real time

Memgraph and similar in-memory, streaming graph databases change the Scrum conversation in one specific way: latency itself becomes an acceptance criterion, not a performance concern to revisit later. This module opens by contrasting the batch mindset most graph teams inherit, run a query overnight, check the result in the morning, with a real-time mindset where a feature is only done if it answers within a millisecond budget under live streaming load. Backlog items that do not state a latency target are treated as incomplete, the same way a backlog item with no acceptance criteria at all would be incomplete in any other domain.

A large part of the module covers streaming ingestion as a first-class design constraint during refinement. Unlike a static graph loaded once, a Memgraph deployment is continuously updated by incoming events, and the module teaches teams to ask, during refinement rather than during an incident, what happens to a query's correctness and speed while the graph underneath it is actively changing. Scenarios include a Sprint where a feature that worked perfectly in testing degrades under live streaming write load, and a Sprint Review where a stakeholder needs to see the system respond under simulated real traffic, not a static snapshot, before they will trust the Increment.

The module closes on capacity planning and Definition of Done criteria tuned for real-time graph work: memory budget per node and relationship type, tested behaviour under concurrent read and write load, and a documented latency service-level objective that the team actually measures against, rather than an aspirational number nobody checks after the Sprint Review ends.

Mistakes teams make with this material

Writing backlog items with no latency target

Treating speed as a nice-to-have to be optimized later, when for a real-time graph system the millisecond response time is the actual acceptance criterion, not an afterthought.

Testing against a static graph snapshot only

Validating a feature against a graph that is not receiving live writes, then discovering in production that concurrent streaming updates change both correctness and latency.

Ignoring memory budget until the system runs out

Adding node and relationship types without tracking their in-memory footprint, since an in-memory graph database has a hard capacity ceiling that batch-oriented graph systems do not face the same way.

Demoing a query result without demoing the load it will face

Showing a fast response at Sprint Review under artificially quiet conditions, without also showing the same query under realistic concurrent streaming write volume.

Questions people ask

Why does latency belong in the Definition of Done for a real-time graph feature?

Because for an in-memory, streaming graph system, a correct answer that arrives too late is functionally a wrong answer. If the team does not test and agree on a latency budget as part of done, the Increment has not actually met the need it was built for.

How should a team estimate work on a continuously updating graph?

By explicitly testing the feature under simulated concurrent write load during the Sprint, not only against a static snapshot. Refinement should ask what happens to correctness and speed while the graph is actively changing underneath the query.

What capacity planning belongs in Sprint Planning for Memgraph work?

A running estimate of memory footprint per node and relationship type, since an in-memory graph has a hard ceiling that a disk-based system does not. Adding schema elements without tracking this is how a team runs out of capacity mid-Sprint with no warning.

What should a Sprint Review for a real-time graph feature actually demonstrate?

The feature responding correctly under realistic concurrent load and streaming writes, not a quiet, artificially calm demo environment. Anything less does not give stakeholders real information about whether the Increment will hold up in production.

A question from this module's assessment

One sample question with the reasoning, so you can judge the level before you start. The rest of the assessment stays inside the module.

Which is the strongest shape for a Memgraph PBI?

  • 'Make fraud detection real-time'
  • 'Consume the logins Kafka topic at 5k events/sec, upsert (:User)-[:LOGGED_IN_FROM]->(:Device) within 500 ms, answer shared-device queries at p95 under 80 ms'
  • 'Make it faster'
  • 'Add a live dashboard'
Why this is the answer

A real-time graph PBI names the stream, event rate, mutation, freshness SLO, and query latency. That is what makes the estimate honest.