diff --git a/dockers/examples/cluster/.env b/dockers/examples/cluster/.env index e86e924e30..25d1a09d2f 100644 --- a/dockers/examples/cluster/.env +++ b/dockers/examples/cluster/.env @@ -30,6 +30,11 @@ PUBLIC_DATABASE_PROXY=127.0.0.1:42345 #PRISMA_TRANSACTION_TIMEOUT=60000 # Maximum time (ms) to wait to acquire a transaction from the pool. Default: 2000 #PRISMA_TRANSACTION_MAX_WAIT=5000 +# Maximum time (ms) to wait for API based calls to complete. +# Useful when encountering Prisma timeouts during export. +# Adjust using small increments as needed. +# Default: 60000 +#BIG_TRANSACTION_TIMEOUT=120000 BACKEND_CACHE_PROVIDER=redis BACKEND_CACHE_REDIS_URI=redis://default:${POSTGRES_PASSWORD}@${REDIS_HOST}:${REDIS_PORT}/${REDIS_DB} diff --git a/dockers/examples/standalone/.env b/dockers/examples/standalone/.env index ea9afbf610..764ad00917 100644 --- a/dockers/examples/standalone/.env +++ b/dockers/examples/standalone/.env @@ -24,6 +24,11 @@ PUBLIC_DATABASE_PROXY=127.0.0.1:42345 #PRISMA_TRANSACTION_TIMEOUT=60000 # Maximum time (ms) to wait to acquire a transaction from the pool. Default: 2000 #PRISMA_TRANSACTION_MAX_WAIT=5000 +# Maximum time (ms) to wait for API based calls to complete. +# Useful when encountering Prisma timeouts during export. +# Adjust using small increments as needed. +# Default: 60000 +#BIG_TRANSACTION_TIMEOUT=120000 # Need to support sending emails to enable the following configurations # You need to modify the configuration according to the actual situation, otherwise it will not be able to send emails correctly.