Glossary
Quick reference for terms you’ll see in the UI, docs, and logs. Deeper behaviour: Configuration & Runtime Engine, REST API Reference, Security.
Names and capitalization
| Term | Form | Meaning |
|---|---|---|
| Padas Motion | Title Case | Product line and install SKU. |
| Motion Engine | Title Case (then engine) | Streaming runtime (padas-core tree). Not the product-line name. |
| Padas UI | Title Case on first mention | The operator app; introduce it as Padas UI, the console. |
| console | lowercase | The short name in running prose after Padas UI is introduced. The console is the control plane. |
| control plane | lowercase | Role of the console—not a product or page name. |
| Control Tower | Title Case | One Management screen (live graph / start-stop on the selected Core)—not the whole console. |
| Cores / Core | Title Case | console inventory of engines (Services → Cores). Each row is a registered Motion Engine (host/port + enroll). |
core/, padas-core-*, [core], padas-core.service | monospace | Path, package, TOML table, systemd unit. |
Runtime & Architecture
Core
A Core in the console is a registered Motion Engine instance (host/port). The engine process routes events (StreamRouter), runs tasks and connectors, optional WAL, and serves /api/v1/*. Registry rows live under [api.persistence].config_dir (for example streams.json, tasks.json, connectors.json). Tune paths and limits in padas.toml — see Motion Engine TOML and Configuration & Runtime Engine.
Motion Engine
The streaming runtime inside Padas Motion. Same process as Core in the inventory: there is no separate “pipeline service” per workflow.
Runtime Engine
Synonym for Motion Engine.
StreamRouter
In-process component that buffers and routes events per stream to subscribers (tasks, consumers, WAL). Shared across all pipelines on that engine.
Streams & Processing
Stream
Named channel events flow through inside the engine. Sources publish in; tasks read and write; sinks read out. Optional WAL enables durability and historical reads.
WAL
On-disk write-ahead log for a stream when enabled. Trades disk (and sometimes latency) for crash recovery and replay. If WAL is off for a stream, some query paths may fail — check stream settings and Configuration & Runtime Engine.
Consumer lag
How far a consumer’s offset is behind the stream head. Large lag may push reads toward WAL; tune [core.subscriber.lag] and sink throughput.
Task
Registry object that reads from source stream(s), runs PDL, writes to sink stream(s). Start / stop control execution on the engine after deploy. See Tasks.
Processing task
Task mode: typically one PDL evaluation per inbound event on the hot path (plus window state for aggregates). Distinct from detection rule evaluation.