Skip to main content
Version: 2.0.0 (Latest)

Sinks

Sinks (/sinks) defines sink connectors: they subscribe to a stream, read PADAS events, and deliver them to external systems. Sources ingest; tasks and pipelines publish into streams; sinks provide egress and outbound integration.

Several sinks may subscribe to the same stream; each connector runs its own delivery path for the events it reads.

What is a sink connector?

ConceptDescription
RoleEgress connector: reads from a PADAS stream and sends data out of PADAS.
SubscriptionBinds to an input stream id; the runtime delivers events published on that stream.
ReuseStored as a configuration object; referenced by connector id and by stream from tasks and pipelines.
ClassConnector class (for example http, kafka, object_storage) selects protocol, formatting, retries, and which runtime configuration fields appear.

Conceptual background: Core concepts — Sink connectors.

Sinks list

Open Sinks. Use Create to add a connector; row Actions support view, edit, clone, and delete. Filters sit under column headers; the footer shows counts and paging.

CreateCreate a sink connector.

Sinks list: search, Create, registry upload and download, column filters
The Sinks list.

On these Configurations screens the layout is the same: Search and Create in the toolbar, Download / Upload for registry JSON (a full bundle can be imported from any tab), then a grid with filters on the row under the headers.

Each row has View (read-only), Edit, Clone, and Delete. Select multiple rows when you need bulk delete. Created and Updated time may show as narrow strips; use the control at the side of the table to expand or collapse those columns.

ColumnDescription
IDConnector id in the registry and API.
NameHuman-readable sink name.
ClassConnector class (for example http, syslog, object_storage).
StreamInput stream this sink subscribes to.
EnabledWhether the connector may run when deployed.
Created Time / Updated TimeAudit timestamps.
ActionsView, Edit, Clone, Delete.

Create a sink connector

  1. Choose a unique Sink Name (drives the registry id).
  2. Select Class — pick the delivery mechanism; this controls the rest of the form.
  3. Configure stream subscription with Auto Create Stream and stream picker (see Stream subscriptions).
  4. Complete Config — destinations, authentication, format, delivery and buffering options (see Configuration model).
  5. Set Enabled if the sink should consume and forward traffic once deployed.
  6. Save. Wire the same stream id from tasks and pipelines so processing publishes where this sink subscribes.
Create connector modal: name, class, Auto Create Stream, Config, Enabled
The Create Sink form.

Modal actions: Create Sink and Cancel. Layout mirrors Create Source (same controls; copy uses Sink labels).

Stream subscriptions

A sink subscribes to exactly one stream id at a time (the Stream field). Tasks and pipelines publish events onto streams; the stream is the transport between processing and delivery.

TopicBehavior
Fan-outMultiple sinks may use the same stream id; each receives the same event stream and applies its own connector class delivery logic.
NamingStream ids must line up with sink_streams on tasks and with pipeline topology, or events never reach the sink (Streams).
DirectionSources write into streams; sinks read from streams.

Auto Create Stream

ToggleBehavior
EnabledPADAS creates a stream automatically, typically derived from the connector name. The sink subscribes to that new stream id (shown in the Stream column after save).
DisabledYou select an existing stream the sink should consume. The sink subscribes only to that stream id.

Connector classes

Each connector class implements a different delivery path (protocol, batching, credentials). The class determines available configuration and how the runtime batches, retries, and formats output.

ClassRoleDocumentation
fileFile-based deliveryFile connector
httpREST POST (JSON)HTTP connector
kafkaKafka producerKafka connector
padasPADAS TCP to another nodePADAS connector
splunkSplunk-style deliverySplunk connector
syslogForward to syslog receiversSyslog connector
object_storageS3-compatible object stores (Parquet or JSON Lines)S3 / object storage connector

See Connector classes for the full matrix.

Configuration model

Config holds runtime-oriented settings: endpoints, TLS, credentials, serialization, batch sizes, retry/backoff, and class-specific delivery options. Fields depend on connector class—use the class page for authoritative keys and examples.

Stored fieldUINotes
idDerived from Sink NameSpaces typically become underscores.
nameSink NameRequired; unique among sinks.
classClassRequired; pick from supported sink classes.
auto_create_streamAuto Create StreamSee Stream subscriptions.
streamStream picker or auto resultInput stream id the sink reads from.
configConfig sections in the modalCommon + class-specific blocks.
enabledEnabledMaster toggle for this connector.
descriptionOptional descriptionWhen exposed in the UI.

Advanced Settings — Additional runtime controls may appear under Advanced Settings depending on deployment model and permissions; they complement the modal Config when your environment exposes them.

Runtime considerations

  • A sink row in Configurations is not live delivery by itself; the connector runs after deployment to a Core and the runtime starts it.
  • Disabled sinks do not consume or forward events.
  • Stream ids must stay consistent with tasks, pipelines, and sources so the publish/subscribe graph is valid.
  • Do not delete a sink connector while a pipeline, task, or deployment still depends on its stream subscription or connector id.