Getting Started
Architecture
NServiceBus
Transports
Persistence
ServiceInsight
ServicePulse
ServiceControl
Monitoring
Samples

PostgreSQL transport

NuGet Package: NServiceBus.Transport.PostgreSql (8.x)
Target Version: NServiceBus 9.x

The PostgreSQL transport implements a message queuing mechanism on top of PostgreSQL.

Transport at a glance

Feature
TransactionsNone, ReceiveOnly, SendsAtomicWithReceive
Pub/SubNative
TimeoutsNative
Large message bodiesPostgreSQL can handle arbitrary message size within available resources, very large messages via data bus
Scale-outCompeting consumer
Scripted DeploymentSQL Scripts
InstallersOptional
Native integrationSupported, see SQL statements used by the transport

Usage

A basic use of the PostgreSQL transport is as follows:

endpointConfiguration.UseTransport(new PostgreSqlTransport("connectionString"));

How it works

PostgreSQL transport uses tables to represent queues and store messages. The PostgreSQL transport is best considered as a brokered transport, like RabbitMQ, rather than a store-and-forward transport, such as MSMQ.

Advantages

  • No additional licensing and training costs; many organizations have PostgreSQL installed and have the knowledge required to manage it.
  • Mature tooling, such as pgAdmin.
  • Queues support competing consumers.
  • Can share database transaction context with SQL Persistence, Marten and EntityFramework to ensure data consistency for Sagas and business data.

Disadvantages

  • No local store-and-forward mechanism; when a PostgreSQL instance is down, the endpoint cannot send nor receive messages.
  • In centralized deployment scenarios, maximum throughput applies for the whole system, not individual endpoints. For example, if PostgreSQL can handle 2000 msg/s on the given hardware, each one of the 10 endpoints deployed on this machine can only receive a maximum of 200 msg/s (on average).
  • When using PostgreSQL transport, a database table serves as a queue for the messages for the endpoints. These tables are polled periodically to see if messages need to be processed by the endpoints. Although the polling interval is one second, this may still lead to delays in processing a message. For environments where low latency is required, consider using other transports that use queuing technologies, such as RabbitMQ.

Deployment considerations

Security

Security considerations for PostgreSQL transport should follow the principle of least privilege.

Each endpoint should use a dedicated PostgreSQL principal with SELECT and DELETE permissions on its input queue tables and INSERT permission on input queue tables of endpoints it sends messages to. Each endpoint should also have permissions to insert rows to audit and error queue tables.

Dedicated schemas can be used to manage fine-grained access control to various database objects used by the endpoint, including its queue tables.

Retries

When an exception occurs during message handling, the transaction is already in doubt and must be rolled back. Failure info is stored in memory, and can't influence the next step for that message (immediate retry, delayed retry, or forward to the error queue) until the next time it is processed on that node.

When an endpoint is scaled out to multiple instances, more retries may be observed than configured, as each instance accumulates failures until a single node has observed enough retries to escalate to delayed retries. It is also possible for immediate retries to be observed on a different instance even when Recoverability is configured for zero immediate retries.

Transactions

PostgreSQL transport supports following transaction handling modes: receive only, send atomic with receive, and no transactions. It does not support Transaction scope mode due to the limitations in the design of the PostgreSQL database and the System.Transactions library.

Related Articles