h
Hi @rdc
Looks like you are hitting the internal queueLimit of 1000 operations which Prisma can send to the database
You can configure this limit now, starting version 1.32.1 using the
queueSize
parameter. Here is an example:
Copy code
version: '3'
services:
  prisma:
    image: prismagraphql/prisma:1.32
    restart: always
    ports:
      - '4466:4466'
    environment:
      PRISMA_CONFIG: |
        port: 4466
        databases:
          default:
            connector: postgres
            host: postgres
            port: 5432
            user: prisma
            password: prisma
            queueSize: 10000
  postgres:
    image: postgres:10.3
    restart: always
    environment:
      POSTGRES_USER: prisma
      POSTGRES_PASSWORD: prisma
    volumes:
      - postgres:/var/lib/postgresql/data
volumes:
  postgres: ~
😮 1
r
thanks mate, I will give it a got and let you know if it works! 😀
Ive added it at the forum,with ur answer, in case some ppl search there: