Skip to content

Commit 1bad1ec

Browse files
fix(records): lower read concurrency to 7
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent d1b15c9 commit 1bad1ec

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cognite/client/utils/_concurrency.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ def __init__(self) -> None:
430430
write_schema=1,
431431
)
432432
self._files = FileConcurrencyConfig(self, read=4, write=2, upload=5, download=5, delete=2, open_files=15)
433-
self._records = RecordsGlobalConcurrencyConfig(self, read=10, write=20)
433+
self._records = RecordsGlobalConcurrencyConfig(self, read=7, write=20)
434434

435435
@functools.cached_property
436436
def _all_concurrency_configs(self) -> list[ConcurrencyConfig]:

0 commit comments

Comments
 (0)