Inngest makes it easy to build reliable background functions and multi-step workflows. These exercises cover Inngest's core concepts: durable steps, event system, sleeping, concurrency control, and how Inngest functions differ from simple serverless functions.
0 / 5 completed
1 / 5
At standup, a colleague asks what an Inngest function is at its core. What is the correct answer?
An Inngest function is a background function triggered by events. You define it with inngest.createFunction(), specifying which event triggers it. Inngest delivers the event to your function with automatic retries on failure, and you can break execution into steps for durable, resumable workflows. The function runs in your own infrastructure (serverless or server) — Inngest orchestrates delivery, retries, and scheduling.
2 / 5
During a PR review, a teammate asks what step.run does inside an Inngest function. Which answer is correct?
step.run(name, fn) creates a durable step in an Inngest function. When the step completes successfully, Inngest persists its return value. If the function fails later and is retried, completed steps are replayed instantly using cached results — the step function is not re-executed. This makes long multi-step workflows resilient to transient failures without re-running expensive operations like API calls or database writes.
3 / 5
In a design review, the team discusses step.sleep in Inngest. A junior engineer asks how it differs from JavaScript's setTimeout. What is correct?
step.sleep(duration) is a durable pause: the function suspends completely, freeing all resources (no process, thread, or connection held open). Inngest resumes execution after the specified duration, even days or weeks later. setTimeout, in contrast, keeps the Node.js process alive and is impractical for delays beyond seconds. This makes step.sleep ideal for follow-up emails, payment reminders, or any delayed workflow step.
4 / 5
An incident report shows the same Inngest function running multiple times concurrently for the same user, causing race conditions. A senior engineer asks what concurrency keys do. What is correct?
Concurrency keys in Inngest allow per-entity concurrency limits. You configure concurrency: { key: 'event.data.userId', limit: 1 }, and Inngest ensures only 1 run of that function is active at a time per unique userId. Excess runs are queued. This prevents race conditions in user-specific workflows — such as account updates or sequential email sends — without requiring distributed locks in your application code.
5 / 5
During a code review, a senior engineer asks what events are in Inngest and how they are sent. What is accurate?
Inngest events are JSON payloads with at minimum a name (e.g., 'order/placed') and a data object. You send them using the Inngest SDK: inngest.send({ name: 'order/placed', data: { orderId: 123 } }). Inngest receives the event, routes it to all functions that trigger on that event name, and stores it for replay and debugging. Events can also carry user and ts fields for attribution and timestamp.
What does the "Inngest Workflow Functions Vocabulary" vocabulary exercise cover?
This exercise tests real IT vocabulary related to inngest workflow functions vocabulary through 5 multiple-choice questions, each built from realistic workplace sentences rather than abstract definitions.
Is this vocabulary exercise free to use?
Yes. Every exercise on CoderSlingo, including this one, is completely free — no account, sign-up, or payment required.
How many questions does this exercise have?
This exercise has 5 questions. Each one shows a real-world sentence or scenario with multiple-choice options and an explanation once you answer.
What happens after I answer a question?
You'll see immediate feedback showing whether your answer was correct, along with a short explanation of why — then a button to move to the next question, and a full results screen at the end.
Can I retry the exercise if I get questions wrong?
Yes. Once you reach the results screen, click "Try again" to reset your answers and go through the exercise from the start as many times as you like.
Do I need to create an account to take this exercise?
No account is needed. Your answers are scored in your browser during the session — nothing is saved to a server, so you can jump straight in.
Is my progress saved if I leave the page?
No — progress within an exercise resets if you navigate away or reload. Each exercise is short enough to complete in a few minutes in one sitting.
Are these vocabulary exercises connected to other topics?
Yes — browse the full vocabulary exercises hub to find related modules covering adjacent IT topics and roles.
How is this different from reading a glossary or blog article?
Exercises like this one are active recall drills — you have to choose the correct term or phrasing yourself, which builds retention faster than passively reading a definition.
Where can I find more vocabulary exercises?
Browse the full Vocabulary exercises hub for hundreds of modules covering Agile, DevOps, security, databases, architecture, and more — organised by IT role and skill.