Zhipeng Zheng 838037188e
feat(channels): share inbound webhook dedupe across pods via Postgres (#4210)
* feat(channels): share inbound webhook dedupe across pods via Postgres (#4120)

* ci: run cross-pod inbound dedupe integration tests in CI

Expose the job Postgres service via DEDUPE_TEST_POSTGRES_URL so the integration tests (issue #4120) actually execute instead of silently skipping. Normalize the URL for asyncpg (postgresql:// -> +asyncpg, drop libpq-only sslmode) and await the now-async _is_duplicate_inbound in test_github_dispatcher.
2026-07-27 23:07:40 +08:00

38 lines
1.7 KiB
Python

"""ORM model for the shared inbound webhook dedupe table (issue #4120).
A single row records that a particular inbound webhook (identified by the
``_inbound_dedupe_key`` 4-tuple) has already been dispatched, so a redelivery
routed to a different gateway pod is still dropped as a duplicate. Rows expire
via lazy cleanup (see ``PostgresInboundDedupeStore``), which deletes rows older
than ``INBOUND_DEDUPE_TTL_SECONDS`` using the ``first_seen`` column.
"""
from __future__ import annotations
from datetime import datetime
from sqlalchemy import DateTime, Index, PrimaryKeyConstraint, String, func
from sqlalchemy.orm import Mapped, mapped_column
from deerflow.persistence.base import Base
class WebhookDeliveryRow(Base):
__tablename__ = "webhook_deliveries"
# Composite primary key mirrors ChannelManager._inbound_dedupe_key exactly:
# (channel, workspace_id, chat_id, message_id). Using the four columns
# directly avoids any string-joined surrogate key — important because the
# components can contain characters (e.g. NUL) that are illegal in a single
# Postgres TEXT column, and keeps the ON CONFLICT target natural.
channel: Mapped[str] = mapped_column(String(64), nullable=False)
workspace_id: Mapped[str] = mapped_column(String(512), nullable=False)
chat_id: Mapped[str] = mapped_column(String(512), nullable=False)
message_id: Mapped[str] = mapped_column(String(1024), nullable=False)
first_seen: Mapped[datetime] = mapped_column(DateTime(timezone=True), nullable=False, server_default=func.now())
__table_args__ = (
PrimaryKeyConstraint("channel", "workspace_id", "chat_id", "message_id", name="pk_webhook_deliveries"),
Index("ix_webhook_deliveries_first_seen", "first_seen"),
)