Spaces:
Sleeping
Sleeping
File size: 8,834 Bytes
116524e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 | # Building Custom Steps
This guide covers everything you need to create your own pipeline steps β from the minimal contract to advanced patterns like dependency injection, async execution, and testing.
---
## The step contract
Any Python object with `requires`, `provides`, and `__call__` is a valid step. No base class needed.
```python
from types import MappingProxyType
from pipeline import StepContext
class MyStep:
requires = frozenset({"input_field"})
provides = frozenset({"output_field"})
def __call__(self, ctx: StepContext) -> StepContext:
result = process(ctx.metadata["input_field"])
return ctx.replace(
metadata=MappingProxyType({**ctx.metadata, "output_field": result})
)
```
Rules:
- `requires` and `provides` can be `set` or `frozenset` β the pipeline normalizes to `frozenset`
- `__call__` receives a `StepContext` and must return a `StepContext`
- Never mutate the incoming context β always use `.replace()`
---
## Sync vs async steps
=== "Sync"
```python
class ComputeStep:
requires = frozenset({"data"})
provides = frozenset({"result"})
def __call__(self, ctx: StepContext) -> StepContext:
result = expensive_computation(ctx.metadata["data"])
return ctx.replace(
metadata=MappingProxyType({**ctx.metadata, "result": result})
)
```
=== "Async"
```python
class FetchStep:
requires = frozenset({"url"})
provides = frozenset({"response"})
async def __call__(self, ctx: StepContext) -> StepContext:
async with aiohttp.ClientSession() as session:
resp = await session.get(ctx.metadata["url"])
data = await resp.json()
return ctx.replace(
metadata=MappingProxyType({**ctx.metadata, "response": data})
)
```
Use async steps for I/O-bound work (HTTP requests, API calls, file I/O). The pipeline detects and handles both transparently.
---
## Dependency injection
Steps that need external collaborators receive them via `__init__`. The `__call__` method stays stateless β it only uses `self.*` for injected dependencies and `ctx` for data.
```python
class ScoringStep:
requires = frozenset({"predictions"})
provides = frozenset({"scores"})
def __init__(self, scorer, threshold: float = 0.5):
self.scorer = scorer
self.threshold = threshold
def __call__(self, ctx: StepContext) -> StepContext:
raw_scores = self.scorer.evaluate(ctx.metadata["predictions"])
filtered = {k: v for k, v in raw_scores.items() if v >= self.threshold}
return ctx.replace(
metadata=MappingProxyType({**ctx.metadata, "scores": filtered})
)
```
This makes testing easy β inject mocks:
```python
pipe = Pipeline().then(ScoringStep(scorer=mock_scorer, threshold=0.8))
```
---
## Declaring concurrency
Two optional class attributes control how a step participates in concurrent execution:
### `async_boundary`
Marks the foreground/background split point. Everything from this step onward runs in a background thread:
```python
class AnalyzeStep:
requires = frozenset({"data"})
provides = frozenset({"analysis"})
async_boundary = True # background from here
def __call__(self, ctx: StepContext) -> StepContext: ...
```
See [Execution Model β Async Boundary](execution.md#async-boundary-fire-and-forget-background) for details.
### `max_workers`
Controls the per-step-class thread pool size for background execution:
```python
class ParallelAnalyzeStep:
requires = frozenset({"data"})
provides = frozenset({"analysis"})
async_boundary = True
max_workers = 4 # up to 4 concurrent analyses
def __call__(self, ctx: StepContext) -> StepContext: ...
```
Default is `max_workers = 1` (serialized).
!!! warning
Steps that write shared state (e.g. updating an external database or accumulating results into a shared object) must use `max_workers = 1` to avoid race conditions.
---
## Subclassing StepContext
When `metadata` becomes unwieldy, subclass `StepContext` to add named fields:
```python
from dataclasses import dataclass
@dataclass(frozen=True)
class MLContext(StepContext):
predictions: list | None = None
scores: dict | None = None
report: str | None = None
```
Steps write to named fields using `.replace()`:
```python
class PredictStep:
requires = frozenset()
provides = frozenset({"predictions"})
def __init__(self, model):
self.model = model
def __call__(self, ctx: MLContext) -> MLContext:
preds = self.model.predict(ctx.sample)
return ctx.replace(predictions=preds)
```
!!! tip "When to subclass"
- **Named fields**: Data shared across multiple steps that benefits from type checking
- **Metadata**: Step-specific or integration-specific transient data (e.g. `metadata["cache_key"]`)
The `requires`/`provides` validation works on attribute names, so it's subclass-agnostic. A step declaring `requires = {"predictions"}` works with any context subclass that has a `predictions` attribute.
---
## Testing steps
### Unit test β step in isolation
```python
from types import MappingProxyType
from pipeline import StepContext
def test_tokenize_splits_words():
step = Tokenize()
ctx = StepContext(sample="hello world")
result = step(ctx)
assert result.metadata["tokens"] == ["hello", "world"]
assert result.metadata["word_count"] == 2
def test_uppercase_transforms_tokens():
step = Uppercase()
ctx = StepContext(
metadata=MappingProxyType({"tokens": ["hello", "world"]})
)
result = step(ctx)
assert result.metadata["upper_tokens"] == ["HELLO", "WORLD"]
```
### Protocol compliance
```python
from pipeline import StepProtocol
def test_step_satisfies_protocol():
step = Tokenize()
assert isinstance(step, StepProtocol)
assert hasattr(step, "requires")
assert hasattr(step, "provides")
assert callable(step)
```
### Pipeline integration test
```python
from pipeline import Pipeline, StepContext
def test_full_pipeline():
pipe = Pipeline().then(Tokenize()).then(Uppercase())
results = pipe.run([StepContext(sample="hello world")])
assert len(results) == 1
assert results[0].error is None
assert results[0].output.metadata["upper_tokens"] == ["HELLO", "WORLD"]
```
---
## Common patterns
### Map-reduce step
A step that internally fans out to multiple sub-inputs:
```python
class MultiSearchStep:
requires = frozenset()
provides = frozenset({"search_results"})
def __call__(self, ctx: StepContext) -> StepContext:
queries = generate_queries(ctx.sample) # 1 β N
sub_ctxs = [StepContext(sample=q) for q in queries]
sub_pipe = Pipeline().then(FetchStep())
results = sub_pipe.run(sub_ctxs, workers=len(queries)) # parallel
merged = merge_results(results) # N β 1
return ctx.replace(
metadata=MappingProxyType({**ctx.metadata, "search_results": merged})
)
```
From the outer pipeline's perspective, this is a black box that takes one context and returns one.
### Logging / observability step
A pass-through step that logs without modifying data:
```python
class LogStep:
requires = frozenset()
provides = frozenset()
def __init__(self, logger):
self.logger = logger
def __call__(self, ctx: StepContext) -> StepContext:
self.logger.info(f"Processing sample: {ctx.sample}")
self.logger.debug(f"Metadata keys: {list(ctx.metadata.keys())}")
return ctx # pass through unchanged
```
### Retry wrapper
A step that wraps another step with retry logic:
```python
import time
class RetryStep:
def __init__(self, inner, max_retries: int = 3, delay: float = 1.0):
self.inner = inner
self.max_retries = max_retries
self.delay = delay
self.requires = inner.requires
self.provides = inner.provides
def __call__(self, ctx: StepContext) -> StepContext:
for attempt in range(self.max_retries):
try:
return self.inner(ctx)
except Exception:
if attempt == self.max_retries - 1:
raise
time.sleep(self.delay * (attempt + 1))
```
Usage:
```python
pipe = Pipeline().then(RetryStep(FlakyAPIStep(), max_retries=3))
```
|