Skip to main content

Minimal demand-driven query framework for incremental computation.

Project description

Cascade Query

Cascade Query is a Python library for incremental dependency tracking. It caches function results and re-executes them only when their specific inputs or upstream dependencies change.

PyPI version Python versions


Core Principles

  1. Automatic Caching: Results are stored. If dependencies are unchanged, the function body does not execute.
  2. Dependency Tracking: Cascade records every @engine.input or @engine.query accessed during execution.
  3. Targeted Updates: When an input changes, Cascade identifies and invalidates only the affected downstream functions.
  4. Early Bail-out: If a function's output remains identical after its dependencies change, re-computation stops for that branch.

Quickstart

import time
from cascade import Engine

engine = Engine()

@engine.input
def user_id():
    return "user_1"

@engine.query
def fetch_data():
    time.sleep(2) 
    return {"id": user_id(), "data": "value"}

@engine.query
def get_result():
    data = fetch_data()
    return f"Result for {data['id']}"

# First run: Executes for 2 seconds.
print(get_result())

# Second run: Returns immediately from cache.
print(get_result())

# Update input:
user_id.set("user_2")

# Third run: Executes for 2 seconds to refresh.
print(get_result())

Engine API

Core Methods

  • Engine(max_entries=10000, stats=False, cache_dir=None, cache_map_size=2**30): Initializes the engine. max_entries sets the limit for the Least Recently Used (LRU) cache. Passing cache_dir enables persistent disk caching (see below).
  • @engine.input: Decorator for mutable data roots.
    • input.set(value): Updates the value and increments the global revision.
    • input.set(*args, value=value): Updates a keyed input.
  • @engine.query: Decorator for cached computations.
  • engine.snapshot(): Returns a Snapshot object pinning the current global revision. Use query(snapshot=s) to read data as it existed at that revision.
  • engine.save(path) / engine.load(path): Persists all inputs and cached results to a SQLite database.
  • engine.clear_disk_cache(): Deletes every entry in the persistent disk cache. Raises if the engine was created without cache_dir.

Parallel & Background Execution

  • engine.compute_many(calls, workers=None): Executes a list of queries in parallel using a thread pool.
  • engine.submit(query, *args, executor=None): Schedules a query for background execution. Returns a concurrent.futures.Future.
  • QueryCancelled: Exception raised if a background query's dependencies change before it completes.

Graph Utilities

  • engine.inspect_graph(): Returns a dictionary of all nodes and edges in the dependency graph.
  • engine.subgraph(roots, direction="deps"): Filters the graph to the dependency chain of the specified root nodes.
  • engine.prune(roots, vacuum_disk=False): Removes cached query results from the in-memory LRU cache that are not reachable from the specified roots. Set vacuum_disk=True to also do a deep vacuum of the persistent LMDB disk cache, deleting all orphaned blobs and metadata.
  • engine.access_id: Property returning a monotonically increasing sequence number for memo accesses.
  • engine.sweep_unaccessed(since_access_id): Evicts all memos that haven't been accessed since since_access_id. Useful for generational garbage collection (e.g. at the end of a compilation pass).

Persistent Disk Caching

Passing cache_dir to the Engine turns on zero-config persistence. Cascade provisions an embedded LMDB store in that directory, serializes query results with a deterministic msgpack encoding, and fingerprints every input value by hashing its serialized bytes with blake2b. Nothing else changes: queries and inputs are written exactly as before.

from cascade import Engine

engine = Engine(max_entries=10_000, cache_dir=".cascade_cache")

@engine.input
def package_source_text(pkg: str) -> str:
    with open(pkg, "r") as f:
        return f.read()

@engine.query
def parsed_package_ast(pkg: str):
    return parse(package_source_text(pkg))

The first run executes normally and writes each result to disk. A later run in a new process starts with an empty in-memory cache, finds the entry on disk, and verifies it top-down: leaf inputs are re-executed and re-hashed (for the input above, that means re-reading the file), and the current hashes are compared against the fingerprints saved with the entry. If everything matches, the stored value is deserialized and returned without running any query body. If a file changed, its hash mismatches, and exactly the queries downstream of that file recompute. Early bail-out works across sessions too, since dependency fingerprints are content hashes: a whitespace-only edit that leaves an intermediate result unchanged will not recompute anything past it.

Accumulator effects are stored with each entry and replayed on disk hits, so a warning emitted in run 1 still appears in run 2 even when the query is served from disk.

lmdb and msgpack are required once cache_dir is set; there is no fallback, and the engine raises PersistentCacheError with install instructions if either is missing:

pip install query-cascade[disk]

A few things to know:

  • Values and arguments must be serializable: primitives, bytes, list/tuple/set/frozenset/dict, @dataclass instances, and typing.NamedTuple instances. A query that returns anything else raises at compute time when persistence is on. A query called with an unserializable argument still computes and memoizes in memory, it just skips the disk.
  • Cache addresses are derived from the function id (module:qualname) and the hashed arguments, so renaming or moving a function starts it from a cold cache. Editing a function body does not invalidate its entries; bump the cache with engine.clear_disk_cache() or delete the directory when query logic changes.
  • The store supports concurrent access from multiple processes through LMDB's own locking. Within one process, engines sharing a cache_dir share one LMDB environment; the first opener's cache_map_size wins.
  • The default cache_map_size is 1 GiB. LMDB allocates this lazily, so the file only grows as entries are written. If the cache fills up, PersistentCacheError explains the options.
  • The on-disk data is a cache: clearing it is always safe and only costs recomputation. Cascade wipes it automatically when its own storage format version changes.

Advanced Features

Time-To-Live Cache Invalidation

Cascade supports expiring cache entries automatically based on wall-clock time. By passing the ttl flag to @engine.query, you can guarantee that a node will recompute its value if it is accessed after the specified number of seconds has elapsed since its last evaluation.

@engine.query(ttl=5.0)
def fetch_external_data():
    return request.get("https://api.example.com/data")

When a TTL expires, Cascade evaluates the function again. If the newly returned value is identical to the previous one, downstream queries are not re-evaluated—early bail-out works exactly as it does for regular dependency changes.

Asynchronous Execution

Cascade natively supports asynchronous queries via async def. This is extremely useful for I/O-bound workflows (such as making database or network calls). When an asynchronous query evaluates, it runs cooperatively on the active asyncio event loop.

import asyncio
from cascade import Engine

engine = Engine()

@engine.query
async def fetch_user(uid: str):
    await asyncio.sleep(0.5) # Network I/O
    return {"id": uid, "name": "Alice"}
    
@engine.query
async def process_user(uid: str):
    # Await downstream async queries seamlessly
    user = await fetch_user(uid)
    return user["name"].upper()

async def main():
    print(await process_user("123"))

asyncio.run(main())

Synchronous queries can also be called directly from inside asynchronous nodes (and vice versa). Cascade maintains type stability and performance segregation, ensuring pure-Python CPU-bound tasks suffer no context-switching overhead while I/O-bound tasks evaluate concurrently.

Pass-Through Queries (memoize=False)

For intermediate queries that generate large outputs, you can set memoize=False to prevent their results from being stored in the LRU cache. This saves significant memory while still allowing the query to fully participate in the dependency graph. Downstream nodes will still accurately detect when the query's inputs change, and the unmemoized query will simply recompute its output on-demand when an active caller needs it.

@engine.query(memoize=False)
def mapped_data() -> list[int]:
    data = raw_data()
    return [x * 2 for x in data]

Side-Effect Accumulators

Queries must be pure functions. Use Accumulator to record side-effects (like logs or warnings) that must be replayed when a result is served from the cache.

warnings = engine.accumulator("warnings")

@engine.query
def validate_data():
    data = fetch_data()
    if not data:
        warnings.push("No data found")
    return data

# On cache hit, 'warnings' are re-populated into the effects dictionary.
effects = {}
validate_data(effects=effects)
print(effects["warnings"])

Error Caching

By default, queries will intercept and cache exceptions (Exception subclasses, excluding control flow exceptions like QueryCancelled). This is critical for interactive systems like language servers where inputs are frequently invalid.

@engine.query(cache_exceptions=(ValueError, TypeError))
def parse(source: str):
    if not source:
        raise ValueError("Empty source")
    return {"ast": source}

If a query throws an exception, it gets cached just like a regular return value. Subsequent calls instantly re-raise the exception, preserving incremental evaluation speed during error states. Cached exceptions can also be hydrated from the persistent disk cache.

Input Debouncing & Transactions

When updating multiple inputs, intermediate read states ("flapping") can cause inconsistent evaluations. Use engine.transaction() to batch updates so they are committed atomically.

with engine.transaction():
    theme.set("dark")
    layout.set("grid")
    
# Queries will only re-evaluate once observing both changes simultaneously.

Code-Aware Caching (Automatic Invalidation)

Cascade automatically inspects the Python bytecode of your @engine.query and @engine.input functions. If you edit a function's logic and the module is hot-reloaded (or you restart your script), Cascade compares the new function's bytecode hash against the previously cached logic. If the logic has changed, Cascade immediately invalidates that function's memory and persistent disk caches, avoiding stale results without requiring manual cache wipes. Code formatting and comments do not affect the bytecode hash.

Performance Metrics

Set stats=True in the Engine constructor to track execution timing.

  • engine.stats_summary(): Returns wall-clock time spent in function bodies and cache eviction counts.
  • engine.reset_stats(): Clears accumulated timing data.

Incremental Collections & Native Map/Reduce

CascadeList, CascadeSet, and CascadeDict behave like their builtin counterparts, but every mutation appends a diff to an event log and bumps a hidden engine input. Queries written with ordinary comprehensions and reducers are rewritten at registration time into incremental pipelines that consume only new diffs. Appending one element to a list of a million reruns your mapping function once.

from cascade import Engine, CascadeList

engine = Engine()
docs = CascadeList(engine, ["alpha", "beta", "gamma"], name="docs")

@engine.query
def long_doc_count():
    # Standard Python. Rewritten into filter -> len over the diff stream.
    return len([d for d in docs if len(d) > 4])

long_doc_count()      # walks all elements once
docs.append("delta")  # one diff
long_doc_count()      # processes only "delta"

The collections

  • CascadeList emits {"action": "insert" | "update" | "remove", "uid": ..., "value": ..., "index": ...}. Elements carry hidden monotonic uids, so a diff identifies its element stably while positions shift. sort() and reverse() reorder in place and keep uids attached to their values.
  • CascadeSet emits {"action": "add" | "remove", "value": ...}. The value is its own identity; duplicate adds and absent discards emit nothing.
  • CascadeDict emits {"action": "upsert" | "remove", "key": ..., "value": ...}. keys(), values(), and items() return intercepted views, so a pipeline over d.keys() treats a value-only upsert as a no-op.

Every diff carries a monotonic rev tag. Each consuming pipeline keeps its own checkpoint, so two queries reading one collection advance independently and each requests only the diffs it has not seen.

Plain reads (for x in xs, len(xs), xs[0], x in xs, .copy(), dict .get()) inside any query record a dependency on the collection, so ordinary loops still invalidate correctly even where nothing is rewritten.

What gets rewritten

Rewriting covers comprehensions ([...], {...}, {k: v ...}, and generator arguments), map, filter, reversed, and these reducers: sum, len, min, max, any, all, sorted, list, set, dict, and string-literal .join. Adjacent map and filter stages are fused into a single per-item function before execution.

Reducer Ingest per diff Finalize
sum, len, any, all O(1) O(1)
min, max O(log N) O(1)
sorted O(log N) O(output)
list, set, dict, .join O(1) O(output)
reversed O(1) positional flip inherited

Everything else runs exactly as written. The boundaries are strict and always fail toward standard execution:

  • enumerate() and zip() sources are explicitly excluded. A prepend shifts every enumerate index and zip needs aligned streams, so neither can be made incremental safely; the code is left untouched and runs the normal O(N) way.
  • Arbitrary for loops are never rewritten. They still invalidate through read tracking.
  • Unsupported call shapes stay native: multi-generator comprehensions, sum(..., start), min/max with key or multiple arguments, dict(**kwargs), .join on anything except a string literal, sorted nested inside another pipeline, comprehensions inside lambda bodies.
  • Functions whose source is unavailable (exec, REPL), async functions, lambdas, and functions that shadow a relevant builtin name are registered unmodified.
  • If the source of a rewritten site turns out at runtime to be a plain list, set, dict, or iterator, the site falls back to plain Python semantics, including error behavior.

Rewritten functions compile against the original filename and line numbers and reuse the original closure cells, so tracebacks point at your code and late-bound closures behave normally. handle.raw.__cascade_rewritten__ tells you whether a query was rewritten.

Correctness guards

The runtime fingerprints each stage function's bytecode, closure values, and defaults. If a closed-over value changes, the pipeline state rebuilds rather than mixing results from two function versions; if a captured value cannot be fingerprinted, the pipeline rebuilds on every run, which is slower but always correct. A stage function that reads tracked engine state (an input, another query, another collection) marks its pipeline impure, which also forces a rebuild per run, because its per-item results can change without the source collection emitting a diff.

A few semantic edges are worth knowing. Incremental sorted breaks ties by insertion order into the structure, which can differ from CPython's positional stability after mid-list churn. Ordered outputs from a CascadeSet source follow insertion order. Incremental sum over strings raises TypeError with the generic operand message rather than sum()'s specific one. Incremental floating-point sums update by running addition and subtraction, so they can drift from a fresh recompute within normal float tolerance.

Opting out

engine = Engine(incremental=False)      # global default off

@engine.query(incremental=False)        # per-query off
def q(): ...

@engine.query(incremental=True)         # per-query on, overrides the global
def r(): ...

Opted-out queries still invalidate through plain read tracking.

Persistence

A named collection on an engine with cache_dir event-sources its log to disk. A later session with the same name restores contents, uid continuity, and revision head, and disk-cached query memos verify against that head, so a warm process serves results without recomputing anything.

engine = Engine(cache_dir="./cache")
items = CascadeList(engine, name="items", compact_every=1024)

The on-disk log compacts into a snapshot automatically every compact_every revisions, or on demand with collection.compact(). Restoring a name as a different kind raises PersistentCacheError, as does mutating a named, disk-backed collection with a value the canonical serializer cannot encode; the failed mutation is rolled back completely. Unnamed collections never persist. engine.clear_disk_cache() also wipes collection logs. Collections assume a single writer per name at a time.

Inspection

engine.inspect_pipelines() lists every observed pipeline with its source, logical stages, fused stage count, checkpoint revision, and consuming queries. engine.inspect_graph() merges collection, map/filter, and reduce nodes into the dependency graph, so export_mermaid and export_dot render the full flow from collection to consuming query.


Visualization

Cascade provides renderers for the dependency graph.

from cascade import export_dot, export_mermaid

graph = engine.inspect_graph()
# Generate Graphviz DOT format
dot_text = export_dot(graph)
# Generate Mermaid flowchart format
mermaid_text = export_mermaid(graph)

Limitations

  1. Cycle Detection: Cascade detects and rejects recursive function calls (cycles) with a CycleError.
  2. Thread Safety: While Cascade supports parallel query execution, the Engine object itself should be modified (.set(), @engine.query) from a single thread or with external synchronization.
  3. Persistence Security: engine.load() and the persistent disk cache resolve @dataclass and NamedTuple types via importlib. Only load databases or open cache directories from trusted sources.
  4. Python Version: Optimization for parallel CPU-bound work requires CPython 3.14+ free-threaded builds with PYTHON_GIL=0.
  5. Collections & engine.save(): State snapshots via engine.save()/engine.load() do not carry collection event logs; use a named collection with cache_dir for durable collection state.

Installation

pip install query-cascade

Examples (in examples/)

Script What it shows
compiler_pipeline.py source → parse → symbols → typecheck, warnings accumulator, cache-hit narration
incremental_collections.py CascadeList/Set/Dict diffs, comprehension rewriting, O(1) ingest, pipeline inspection
async_execution.py Asynchronous query evaluation and asyncio event loop integration for IO-bound work
ttl_invalidation.py Expiring stale query caches automatically based on wall-clock time
error_caching.py Basic exception caching to prevent repeated re-evaluation on failure
error_caching_persistence.py Disk cache hydration of exceptions across process runs
code_versioning.py Automatic cache invalidation when a function's bytecode logic changes
pass_through_queries.py memoize=False tracking inputs without keeping large outputs in the LRU cache
dynamic_macro_expansion.py Query that changes downstream dependencies at runtime
snapshot_isolation.py Snapshot reads while live inputs change
concurrent_background_work.py Dedup under concurrency + cancellation after input changes
compute_many_with_accumulators.py compute_many(..., effects=...) accumulator collection
persistence_and_inspection.py Save/load and graph summaries
gil_parallel_speedup.py Threaded CPU benchmark: GIL vs free-threaded

Run one:

python3.14t examples/compiler_pipeline.py

Run all (Unix-style shell):

for example in examples/*.py; do
  echo "Running $example"
  python3.14t "$example"
done

Examples print narration as they run so you can follow each behavior.

Compare GIL vs free-threaded (same machine)

Install both 3.14 and 3.14t if you want apples-to-apples. On Ubuntu (deadsnakes):

sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt update
sudo apt install -y python3.14 python3.14-venv python3.14t python3.14t-venv
python3.14 -m pip install -e .
python3.14t -m pip install -e .

Quick check on free-threaded build:

python3.14t -c "import sys, sysconfig; print('Py_GIL_DISABLED=', sysconfig.get_config_var('Py_GIL_DISABLED')); print('GIL enabled?', sys._is_gil_enabled())"

Same interpreter, toggle GIL at runtime:

PYTHON_GIL=1 python3.14t examples/gil_parallel_speedup.py --workers 8 --tasks 96 --rounds 300000 --repeats 5
PYTHON_GIL=0 python3.14t examples/gil_parallel_speedup.py --workers 8 --tasks 96 --rounds 300000 --repeats 5

Or compare python3.14 vs PYTHON_GIL=0 python3.14t on the same script.

Compare median parallel seconds (lower is better) and threaded speedup in this runtime (higher is better). Keep args identical, reduce background load, and use --repeats (e.g. 5) to smooth noise. On multi-core machines, free-threaded + GIL off usually wins clearly for this CPU-bound demo.


Design stance

The core is intentionally minimal: pull-based evaluation, dependency capture, red/green style bailout, dedup, snapshots, cancellation, accumulator replay, tracing, and persistence. That set is enough for many real pipelines without baking in advanced internals (e.g. fixed-point cycle solving or custom AST red/green structures). CPU-bound parallelism is expected to matter when you use free-threaded CPython with the GIL disabled.


Development

Tests (match main CI)

export PYTHON_GIL=0   # Windows: set PYTHON_GIL=0
python3.14t -m pip install -e ".[dev]"
python3.14t -c "import sys, sysconfig; print('Py_GIL_DISABLED=', sysconfig.get_config_var('Py_GIL_DISABLED')); print('GIL enabled?', sys._is_gil_enabled())"
python3.14t -m pytest -q \
  --ignore=tests/test_performance.py \
  --cov=src/cascade \
  --cov-branch \
  --cov-report=term-missing \
  --cov-fail-under=95

Branch coverage check (CI uses an equivalent step on coverage.json):

python3.14t - <<'PY'
import json
with open("coverage.json", encoding="utf-8") as fh:
    b = json.load(fh)["totals"]["percent_branches_covered"]
print(f"branch coverage: {b:.2f}%")
assert b >= 90.0
PY

Stateful fuzz:

PYTHON_GIL=0 python3.14t -m pytest -q tests/test_stateful_engine_invariants.py

Mutation testing:

PATH="$HOME/.local/bin:$PATH" PYTHON_GIL=0 mutmut run
PATH="$HOME/.local/bin:$PATH" PYTHON_GIL=0 mutmut results

Use the mutmut CLI (mutmut run), not python -m mutmut run. Bounded local loop:

PYTHON_GIL=0 MUTMUT_MAX_CHILDREN=2 ./scripts/mutation_fast.sh

Focused mutants:

PYTHON_GIL=0 MUTMUT_MAX_CHILDREN=2 ./scripts/mutation_fast.sh "<mutant-name>" "<mutant-name>"

See docs/mutation_triage.md for survivor triage.

Formal model (TLA+)

Specs live under docs/formal/:

  • docs/formal/cascade_core.tla
  • docs/formal/cascade_core.cfg

Run TLC (example):

java -cp tla2tools.jar tlc2.TLC docs/formal/cascade_core.tla -config docs/formal/cascade_core.cfg

Checked properties include snapshot consistency, active-dependency validity (red/green alignment), and cancellation epoch monotonicity.

Performance suite

Heavy behavior clusters around cache hits vs full recompute, concurrent dedup, compute_many throughput on free-threaded workloads, large-graph mutation vs rebuild, mark-green cost vs depth, and prune scaling.

python -m benchmarks.performance_suite --report-dir artifacts/performance --assert-thresholds

Outputs:

  • artifacts/performance/performance-report.json
  • artifacts/performance/performance-report.md

CI runs the same suite and uploads performance-report.

The compute-many-parallel-speedup scenario (and tests/test_performance.py::test_compute_many_parallel_speedup_scenario) is sensitive to CPU scheduling. On a busy laptop or small VM, thresholds may flap without a real regression. Mitigations:

  • Re-run the test, or set CASCADE_QUERY_PARALLEL_PERF_RETRIES (e.g. 3).
  • To skip while iterating: CASCADE_QUERY_SKIP_PARALLEL_PERF=1 (CI does not set this).

Nightly: .github/workflows/nightly-performance.yml runs a longer sweep (e.g. 8 runs) and publishes nightly-performance-report.

Scale and stress tests

tests/test_scale_behavior.py covers large-graph invalidation, dynamic dependency churn, prune stress, persistence at scale, eviction under churn, and mixed concurrency (submit + compute_many + writes). The heaviest cases are marked @pytest.mark.slow; default pytest skips them via pyproject.toml.

Internal invariants are concentrated in tests/test_internal_invariants.py (via engine._internals) to limit coupling while keeping safety checks.

Default CI-like run (no perf file, no slow):

PYTHON_GIL=0 python3.14t -m pytest -q --ignore=tests/test_performance.py

Slow only:

pytest -q -m slow

Everything including slow:

pytest -q -m "slow or not slow"

CI overview

  • Workflow: .github/workflows/ci.yml (pushes and PRs).
  • Ruff before tests.
  • Separate package build (python -m build) to catch packaging issues early.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

query_cascade-0.3.9.tar.gz (114.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

query_cascade-0.3.9-py3-none-any.whl (62.6 kB view details)

Uploaded Python 3

File details

Details for the file query_cascade-0.3.9.tar.gz.

File metadata

  • Download URL: query_cascade-0.3.9.tar.gz
  • Upload date:
  • Size: 114.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for query_cascade-0.3.9.tar.gz
Algorithm Hash digest
SHA256 d132f86fc87615f41fb745c654e0adff07d2c11b3cdbbdbaccaacea02ff0e441
MD5 4c6786a09a242edee64752a059294846
BLAKE2b-256 cf4b690fe54ffaa8a4b1cb8ac4788df08b8e345a46999e9753f6421246c058a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for query_cascade-0.3.9.tar.gz:

Publisher: workflow.yml on hmatt1/cascade-query

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file query_cascade-0.3.9-py3-none-any.whl.

File metadata

  • Download URL: query_cascade-0.3.9-py3-none-any.whl
  • Upload date:
  • Size: 62.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for query_cascade-0.3.9-py3-none-any.whl
Algorithm Hash digest
SHA256 8dd8c43657587070d4fb69a4583c9b028f01af95fce230ee82f866e660822496
MD5 1d6dba51913e04288d3f27ddba68727f
BLAKE2b-256 67b0a68b55c5652e65c5fcbaeaefbc1bee6a55f7a83f565f2f7afa89fe083225

See more details on using hashes here.

Provenance

The following attestation bundles were made for query_cascade-0.3.9-py3-none-any.whl:

Publisher: workflow.yml on hmatt1/cascade-query

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page