Skip to main content
Most ingestion workflows can rely on built-in processors. When you need bespoke logic, Clinia is introducing custom processors so you can codify organization-specific rules without leaving the managed pipeline runtime.

Clinia Function

Clinia Function will let you execute server-side JavaScript in the pipeline. Documentation will cover deployment, versioning, and debugging once the feature enters early access.
Functions are designed for scenarios such as:
  • Normalizing proprietary identifiers or payloads that do not fit standard processors.
  • Calling internal services to enrich data with proprietary scores.
  • Applying business rules that depend on confidential logic.

Design guidelines

  • Validate first — Use Schema Validators before custom logic to fail fast on malformed data.
  • Keep transformations deterministic — Pipelines should remain idempotent so retries are safe.
  • Log for observability — Surface enough metadata in receipts to trace custom behavior without exposing confidential logic.
Until Clinia Function is generally available, partner with your Clinia representative to discuss interim solutions or early access.
I