Skip to content

Commit

Permalink
Change the partitions limit to 1000
Browse files Browse the repository at this point in the history
  • Loading branch information
tolik0 committed Feb 10, 2025
1 parent 7be9842 commit 8d3bfce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class ConcurrentPerPartitionCursor(Cursor):
CurrentPerPartitionCursor expects the state of the ConcurrentCursor to follow the format {cursor_field: cursor_value}.
"""

DEFAULT_MAX_PARTITIONS_NUMBER = 10000
DEFAULT_MAX_PARTITIONS_NUMBER = 1000
_NO_STATE: Mapping[str, Any] = {}
_NO_CURSOR_STATE: Mapping[str, Any] = {}
_GLOBAL_STATE_KEY = "state"
Expand Down

0 comments on commit 8d3bfce

Please sign in to comment.