Skip to content

Commit

Permalink
feat: higher batching size for RepoSink (#11)
Browse files Browse the repository at this point in the history
* feat: higher batching size for RepoSink

* fix: broken test
  • Loading branch information
jobulcke authored Sep 13, 2024
1 parent 1c7bbb8 commit f255bd9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public LdioPipeline getValidationPipeline() {
List.of(new LdioRepositorySinkBuilder()
.withSparqlHost(sparqlHost)
.withRepositoryId(pipelineName)
.withBatchSize(1)
.withBatchSize(250)
.build())
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/ldio-pipeline.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"config": {
"sparql-host": "http://my-sparql-host.net",
"repository-id": "validation-pipeline-test-pipeline-uuid",
"batch-size": 1
"batch-size": 250
}
}
]
Expand Down

0 comments on commit f255bd9

Please sign in to comment.