We Are hitting the 1000 que limit with prisma 1.. ...
# orm-help
l
We Are hitting the 1000 que limit with prisma 1.. can we adjust this or scale this without making too many adjustments to our code?
d
You can adjust the
queueSize
property for your connector config key (prisma.yml):
Copy code
...
databases:
    default:
        ...
        queueSize: ...
👍 1
A word of warning: It won't do much besides racking up more items in the queue if the sustained load is too high for the instance to process. Increasing the limit is only really effective if your load is burst heavy.