Replies: 1 comment 1 reply
-
|
It will process the keys in batches of 100 if that is the maxBatchSize. The
batches are processed in parallel at each level of processing in the graph.
These docs have a good example of how the batches are processed:
https://www.graphql-java.com/documentation/batching/
Hope that helps.
…On Sun, Feb 26, 2023 at 5:59 PM SeJin Park ***@***.***> wrote:
Thank you for providing a great open source for graphql. I have a question
while using it.
For example, If I want to send data for 10,000 keys, but the data
repository responds too slowly for a huge dataset
this case we set the maxBatchSize option to 100 is properly?
I wanted to know Does the dataloader work by processing 100 loads in
parallel 100 times, or does all processing occur sequentially.
—
Reply to this email directly, view it on GitHub
<#1439>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AJ5JPXPG3WXH2PXQFN2FSVTWZQDBLANCNFSM6AAAAAAVI2D6YM>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Thank you for providing a great open source for graphql. I have a question while using it.
For example, If I want to send data for 10,000 keys, but the data repository responds too slowly for a huge dataset
this case we set the maxBatchSize option to 100 is properly?
I wanted to know Does the dataloader work by processing 100 loads in parallel 100 times, or does all processing occur sequentially.
Beta Was this translation helpful? Give feedback.
All reactions