Solutions:

XRAY: How to resolve the SQLSTATE 53300 error

AuthorFullName__c
Sun Jinlong
articleNumber
000005972
ft:sourceType
Salesforce
FirstPublishedDate
2024-01-08T19:17:40Z
lastModifiedDate
2024-01-08
VersionNumber
1
Check the number of database maximum connections configured by Xray. We can get the maximum connections each Xray microservice can open to the Postgres DB.
1.  This will be configured in the $XRAY_HOME/etc/system.yaml file.
server:
  database:
    maxOpenConnections: 60  # Defualt
analysis:
  database:
    maxOpenConnections: 30  #Default
indexer:
  database:
    maxOpenConnections: 30  #Default
persist:
  database:
    maxOpenConnections: 30  #Default
The maximum connections will open by the Xray cluster:
Total  of  connections = (number of nodes) * (maxOpenConnServer +  maxOpenConnPersist + maxOpenConnAnalysis + maxOpenConnIndexer)
# Defualt: 150

2.  Check the number of database maximum connections configured in the PostgreSQL using select sql or confirm it in the config configuration file:
# show the maximum connections SQL, default 100
show max_connections;

# show the status of all current connections
select datname,pid,application_name,state from pg_stat_activity;
Or
# $PGDATA/postgres.conf 
max_connections = 100                   # Default

3.  Change the maximum number of the open connection links of the PostgreSQL, edit it in the $PGDATA/postgres.conf config file to change the max_connections. The max_connections number needs to be more than the maximum connections set by the Xray server.
# Total of connections need set for the PostgreSQL
Total of  connections need set = (number of nodes) * (maxOpenConnServer +  maxOpenConnPersist + maxOpenConnAnalysis + maxOpenConnIndexer) + 50
#  Defualt total: 200
# $PGDATA/postgres.conf 
max_connections = <Total of  connections need set>            # (change requires restart)
# Default:200
4.  Restart the PostgreSQL server.
5.  About the more the PostgreSQL Error Codes: https://www.postgresql.org/docs/current/errcodes-appendix.html