Hello :smile: I am receiving the following error ...
# orm-help
a
Hello 😄 I am receiving the following error when from prisma when running my subscription. Could it be a request problem? It seems like I’m overloading the prisma service as it will complete and return about 100 items before stopping and just failing for the rest (426 in total).
Copy code
java.util.concurrent.RejectedExecutionException: Task slick.basic.BasicBackend$DatabaseDef$$anon$2@5f6fc9a0 rejected from slick.util.AsyncExecutor$$anon$2$$anon$1@4469989b[Running, pool size = 10, active threads = 10, queued tasks = 1000, completed tasks = 93810]
m
So you are creating 426 nodes? Is the same query that you are running that often? Your numbers sound like you are using nested mutation quite heavily.
a
Hello Marcus, thanks for getting back to me! I am running an initial mutation that generates the data. 426 records. I’m then subscribing to any mutation on those records. Then I’m running a mutation that updates all of those records. Using the subscription to see it live. However, the subscription stops responding after about 100 records. Does that answer your questions?
m
Ah i see. Can you share your subscription query?