Amazon Aurora DSQL dialect for SQLAlchemy
Introduction
The Aurora DSQL dialect for SQLAlchemy provides integration between SQLAlchemy ORM and Aurora DSQL. This dialect enables Python applications to leverage SQLAlchemy's powerful object-relational mapping capabilities while taking advantage of Aurora DSQL's distributed architecture and high availability.
Sample Application
There is an included sample application in examples/pet-clinic-app that shows how to use Aurora DSQL with SQLAlchemy. To run the included example please refer to the sample README.
Prerequisites
- Python 3.10 or higher
- SQLAlchemy 2.0.0 or higher
- One of the following drivers:
- psycopg 3.2.0 or higher
- psycopg2 2.9.0 or higher
Installation
Install the packages using the commands below:
pip install aurora-dsql-sqlalchemy
# driver installation (in case you opt for psycopg)
# DO NOT use pip install psycopg-binary
pip install "psycopg[binary]"
# driver installation (in case you opt for psycopg2)
pip install psycopg2-binary
Dialect Configuration
After installation, you can connect to an Aurora DSQL cluster using the create_dsql_engine helper function:
from aurora_dsql_sqlalchemy import create_dsql_engine
engine = create_dsql_engine(
host="<CLUSTER_ENDPOINT>",
user="<CLUSTER_USER>",
driver="psycopg", # or "psycopg2"
)
The helper function handles:
- IAM authentication via the Aurora DSQL Python Connector
- SSL configuration with certificate verification
- Direct SSL negotiation optimization (when supported by libpq >= 17)
- Connection pooling with sensible defaults
For more control, you can customize additional parameters:
engine = create_dsql_engine(
host="<CLUSTER_ENDPOINT>",
user="<CLUSTER_USER>",
driver="psycopg",
pool_size=10,
max_overflow=20,
)
Note: Each connection has a maximum duration limit. See the Maximum connection duration time limit in the Cluster quotas and database limits in Amazon Aurora DSQL page.
SSL/TLS Configuration
Aurora DSQL requires TLS for all connections. Plaintext connections are not supported. Enabling certificate verification protects against on-path and impersonation attacks.
create_dsql_engine defaults to:
sslmode="verify-full"- verifies the server certificate and hostnamesslrootcert="system"- uses the default certificate authority (CA) trust defined by libpq’s TLS backend
See SSL Configuration for detailed setup instructions.
Best Practices
Primary Key Generation
UUID
Server-generated UUIDs are the recommended choice for primary key columns. The following column definition can be used to define a UUID primary key column.
Column(
"id",
UUID(as_uuid=True),
primary_key=True,
default=text('gen_random_uuid()')
)
gen_random_uuid() returns an UUID version 4 as the default value.
Sequence and identity-based keys
Sequence and identity-based keys are also supported in DSQL and can be used for integer primary keys. The following column definitions can be used to define sequence and identity-based keys column.
Column(
"id",
BIGINT,
primary_key=True,
default=Sequence("bigint_seq")
)
Column(
"id",
BigInteger,
primary_key=True,
Identity(always=True)
)
Column(
"id",
BigInteger,
primary_key=True,
autoincrement=True
)
The dialect uses a default CACHE parameter of 65536 in sequence and identity definitions. A different value can be passed directly in column definitions.
Sequence("bigint_seq", cache=<cache_size>)
Identity(always=True, cache=<cache_size>)
See the Working with sequences and identity columns page for more information.
Dialect Features
-
Foreign Keys: The dialect disables foreign key constraint generation. Referential integrity should be maintained at the application level.
-
Check Constraints:
CHECKconstraints are supported both inline atCREATE TABLEand when added to an existing table. Because DSQL requires aCHECKconstraint added viaALTER TABLEto be markedNOT VALID, the dialect automatically appendsNOT VALIDtoADD CONSTRAINT ... CHECKstatements. To validate the constraint against rows that already exist in the table, runALTER TABLE ASYNC <table> VALIDATE CONSTRAINT <name>as a separate statement (for example,op.execute(...)in an Alembic migration). The constraint is enforced on all new writes immediately; validation of existing rows runs as an asynchronous DSQL DDL job. See ALTER TABLE for details. -
Index Creation: The dialect uses
CREATE INDEX ASYNCandCREATE UNIQUE INDEX ASYNCcommands. See the Asynchronous indexes in Aurora DSQL page for more information.The following parameters are used for customizing index creation
-
auroradsql_include- specifies which columns to includes in an index by using theINCLUDEclause:Index( "include_index", table.c.id, auroradsql_include=['name', 'email'] )
Generated SQL output:
CREATE INDEX ASYNC include_index ON table (id) INCLUDE (name, email)
-
auroradsql_nulls_not_distinct- controls howNULLvalues are treated in unique indexes:Index( "idx_name", table.c.column, unique=True, auroradsql_nulls_not_distinct=True )
Generated SQL output:
CREATE UNIQUE INDEX idx_name ON table (column) NULLS NOT DISTINCT
-
-
Index Interface Limitation:
NULLS FIRST | LAST- SQLalchemy's Index() interface does not have a way to pass in the sort order of null and non-null columns. (Default:NULLS LAST). IfNULLS FIRSTis required, please refer to the syntax as specified in Asynchronous indexes in Aurora DSQL and execute the corresponding SQL query directly in SQLAlchemy. -
Psycopg (psycopg3) support: When connecting to DSQL using the default postgresql dialect with psycopg, a
SAVEPOINTerror occurs during initialization. The DSQL dialect addresses this by disablingSAVEPOINTduring connection.
For the full list of Aurora DSQL SQL compatibility details, see the PostgreSQL compatibility reference.
Developer instructions
Instructions on how to build and test the dialect are available in the Developer Instructions.
Security
See CONTRIBUTING for more information.
License
This project is licensed under the Apache-2.0 License.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aurora_dsql_sqlalchemy-1.2.0.tar.gz.
File metadata
- Download URL: aurora_dsql_sqlalchemy-1.2.0.tar.gz
- Upload date:
- Size: 85.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c568798a8dbd97e855aba3c771a1652ba2ada2a3e3d25677ea39fd2e70142adf
|
|
| MD5 |
3345803ed0051586a541cdbc14cdb5b3
|
|
| BLAKE2b-256 |
5da22183c5005345e27e521c4b68c620b3994ea6c6f29af2e927c70c0c5734c7
|
Provenance
The following attestation bundles were made for aurora_dsql_sqlalchemy-1.2.0.tar.gz:
Publisher:
python-sqlalchemy-release.yml on awslabs/aurora-dsql-orms
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aurora_dsql_sqlalchemy-1.2.0.tar.gz -
Subject digest:
c568798a8dbd97e855aba3c771a1652ba2ada2a3e3d25677ea39fd2e70142adf - Sigstore transparency entry: 2341262563
- Sigstore integration time:
-
Permalink:
awslabs/aurora-dsql-orms@cd98089dda1f52bd0240a551b36bdc702d9a5270 -
Branch / Tag:
refs/tags/python/sqlalchemy/v1.2.0 - Owner: https://github.com/awslabs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-sqlalchemy-release.yml@cd98089dda1f52bd0240a551b36bdc702d9a5270 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aurora_dsql_sqlalchemy-1.2.0-py3-none-any.whl.
File metadata
- Download URL: aurora_dsql_sqlalchemy-1.2.0-py3-none-any.whl
- Upload date:
- Size: 12.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85b930d697bb56b86873fb74188bc4751b6cc37d28e8a25715d7aa1ea37fa87a
|
|
| MD5 |
1d4d2d7dd145de6e32cea8bd062a7cd4
|
|
| BLAKE2b-256 |
2101711f6dcab59e8c2914984fee55bd3fd35431cb574548760d53ae3adb4e73
|
Provenance
The following attestation bundles were made for aurora_dsql_sqlalchemy-1.2.0-py3-none-any.whl:
Publisher:
python-sqlalchemy-release.yml on awslabs/aurora-dsql-orms
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aurora_dsql_sqlalchemy-1.2.0-py3-none-any.whl -
Subject digest:
85b930d697bb56b86873fb74188bc4751b6cc37d28e8a25715d7aa1ea37fa87a - Sigstore transparency entry: 2341262569
- Sigstore integration time:
-
Permalink:
awslabs/aurora-dsql-orms@cd98089dda1f52bd0240a551b36bdc702d9a5270 -
Branch / Tag:
refs/tags/python/sqlalchemy/v1.2.0 - Owner: https://github.com/awslabs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-sqlalchemy-release.yml@cd98089dda1f52bd0240a551b36bdc702d9a5270 -
Trigger Event:
push
-
Statement type: