Skip to content

Commit 8d44150

Browse files
committed
Increase the limit for number of partitions in memory
1 parent 509ea05 commit 8d44150

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

airbyte_cdk/sources/declarative/incremental/concurrent_partition_cursor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class ConcurrentPerPartitionCursor(Cursor):
5858
CurrentPerPartitionCursor expects the state of the ConcurrentCursor to follow the format {cursor_field: cursor_value}.
5959
"""
6060

61-
DEFAULT_MAX_PARTITIONS_NUMBER = 10_000
61+
DEFAULT_MAX_PARTITIONS_NUMBER = 25_000
6262
SWITCH_TO_GLOBAL_LIMIT = 1000
6363
_NO_STATE: Mapping[str, Any] = {}
6464
_NO_CURSOR_STATE: Mapping[str, Any] = {}

0 commit comments

Comments
 (0)