Skip to content

Commit

Permalink
Reduce mutation chunk size
Browse files Browse the repository at this point in the history
  • Loading branch information
theosanderson authored Oct 15, 2024
1 parent 0058085 commit 71180ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taxonium_backend/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ app.get("/mutations/", function (req, res) {
}

// Send mutations in chunks of 100000
const chunkSize = 100000;
const chunkSize = 10000;
let index = 0;

function sendNextChunk() {
Expand Down

0 comments on commit 71180ab

Please sign in to comment.