Skip to content

Commit 8d3bfce

Browse files
committed
Change the partitions limit to 1000
1 parent 7be9842 commit 8d3bfce

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 = 10000
61+
DEFAULT_MAX_PARTITIONS_NUMBER = 1000
6262
_NO_STATE: Mapping[str, Any] = {}
6363
_NO_CURSOR_STATE: Mapping[str, Any] = {}
6464
_GLOBAL_STATE_KEY = "state"

0 commit comments

Comments
 (0)