Skip to content

Commit

Permalink
increase batch size to 10M
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickbr committed Oct 14, 2024
1 parent 575a649 commit 8bba197
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qlever-petrimaps/GeomCache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ void GeomCache::requestPart(size_t offset) {
char errbuf[CURL_ERROR_SIZE];

if (_curl) {
auto qUrl = queryUrl(getQuery(_backendUrl), offset, 1000000);
auto qUrl = queryUrl(getQuery(_backendUrl), offset, 10000000);
curl_easy_setopt(_curl, CURLOPT_URL, qUrl.c_str());
curl_easy_setopt(_curl, CURLOPT_WRITEFUNCTION, GeomCache::writeCb);
curl_easy_setopt(_curl, CURLOPT_WRITEDATA, this);
Expand Down

0 comments on commit 8bba197

Please sign in to comment.