Skip to main content

onestep-postgres

Deprecation notice (issue #133): onestep-postgres is now a thin forwarding shim that delegates to the canonical onestep-sql package. New deployments should install onestep-sql[postgres] (or onestep[postgres]) and import from onestep_sql.postgres. This package remains available so existing pip install onestep-postgres and from onestep_postgres import ... keep working unchanged; it no longer declares its own resource entry point. All 14 YAML resource type names are unchanged. See the migration guide for details.

PostgreSQL connector plugin for onestep.

Install it with:

pip install onestep-postgres
# or the canonical package
# pip install 'onestep-sql[postgres]'

YAML resources are available after the plugin is installed:

resources:
  pg:
    type: postgres
    dsn: "${POSTGRES_DSN}"

  cursor:
    type: postgres_cursor_store
    connector: pg

  users:
    type: postgres_incremental
    connector: pg
    table: users
    key: id
    cursor: [updated_at, id]
    state: cursor

  processed:
    type: postgres_table_sink
    connector: pg
    table: processed_users
    mode: upsert
    keys: [id]

The plugin supports table queues, incremental polling, table sinks, SQLAlchemy-backed state/cursor stores, and tracked PostgreSQL executions.

from onestep import ExecutionClient
from onestep_postgres import PostgresExecutionBackend, PostgresExecutionSource

backend = PostgresExecutionBackend(
    dsn="postgresql+psycopg://app:secret@db/app",
    auto_create=True,
    reclaim_batch_size=100,
)
step = ExecutionClient(backend, namespace="agent-api")

async with step:
    execution = await step.submit("run_agent", payload, idempotency_key=request_id)

source = PostgresExecutionSource(
    dsn="postgresql+psycopg://app:secret@db/app",
    auto_create=False,
    namespace="agent-api",
    task_names=("run_agent",),
    worker_id="agent-worker-1",
)

PostgresConnector remains available when an application also needs table queues, sinks, state stores, or one shared pool. In that advanced path use PostgresExecutionBackend.from_connector(pg, ...) for the API or PostgresExecutionSource.from_connector(pg, ...) for the worker; the connector remains owned and closed by the caller. For the direct DSN path, ExecutionClient and PostgresExecutionSource manage the backend lifecycle for their process.

Each execution source accepts exactly one task name, which must match the app task bound to that source. Create a separate source for each additional task.

Execution statuses are queued, running, retrying, succeeded, failed, cancel_requested, cancelled, and expired. Inline payload and result values are limited to 1 MiB each; metadata is limited to 64 KiB. Use auto_create=False after deployment migrations. Execution is at-least-once and cancellation is cooperative; make handler side effects idempotent.

Managed runtime completion persists the handler result. Calling the execution delivery's legacy ack() directly records succeeded with result=None because the public Delivery.ack() API has no result argument. Retryable heartbeat failures use bounded exponential backoff while the lease remains valid. Stale recovery is claim-driven rather than handled by an independent reaper: each claim processes at most reclaim_batch_size records per stale state category, so active workers drain a backlog incrementally. Connector errors use an independent copy returned by PostgresConnector.secret_tokens() for redaction.

The plugin does not support PostgreSQL logical replication or CDC.

Download files

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

Source Distribution

onestep_postgres-0.6.0.tar.gz (25.1 kB view details)

Uploaded Source

Built Distribution

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

onestep_postgres-0.6.0-py3-none-any.whl (6.0 kB view details)

Uploaded Python 3

File details

Details for the file onestep_postgres-0.6.0.tar.gz.

File metadata

  • Download URL: onestep_postgres-0.6.0.tar.gz
  • Upload date:
  • Size: 25.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for onestep_postgres-0.6.0.tar.gz
Algorithm Hash digest
SHA256 73c0352c0db4c9aa3dbe7e3cd962b133ca626d15826467b9f180b7aca923b0b1
MD5 5a5ac1b80523da1c96e07327b7f228b4
BLAKE2b-256 a334d44034d66e8dfbb170b23fa92e19b25c685aee84d40f856843f51f6559e8

See more details on using hashes here.

File details

Details for the file onestep_postgres-0.6.0-py3-none-any.whl.

File metadata

File hashes

Hashes for onestep_postgres-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2bdf9d131ff41a4bcb2eb6746df40e60225f75e04dbaf0519b72f82f5fa4a2e4
MD5 2412b19e42711c27c005daad5cbecd97
BLAKE2b-256 cc8d62249c812bcbccf15ce018b319cc54d543b54cac7182802e3bdb34fee9a8

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.6.0 This release

2 files

0.5.0

2 files

0.4.1

2 files

0.4.0

2 files

0.3.0

2 files

0.2.0

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Supported by

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