Skip to content
Discord Get Started

Limits & Constraints

Resource limits and constraints across the db9 engine and extensions.

ResourceLimit
Statement timeout60s (default)
Idle transaction timeout60s (default)
View nesting depth64 levels
Pending portals per connection32
Timestamp precisionMilliseconds (not microseconds)
EncodingUTF-8 only
ResourceLimit
Connect timeout1s
Total timeout5s
Max request body256 KiB
Max response body1 MiB
Max calls per statement100
Max concurrent per tenant20
ResourceLimit
Max file size10 MB
Max glob total size100 MB
Max file traversal10,000 files
Max directory recursion10 levels
ResourceLimit
Job execution timeout30 minutes (default)

The following PostgreSQL features are not supported:

  • SMALLINT / INT2 type — use INTEGER
  • REAL / FLOAT4 type — use DOUBLE PRECISION
  • CHAR(n) fixed-length type — use VARCHAR(n)
  • LISTEN / NOTIFY async notifications
  • Microsecond timestamp precision (millisecond only)