Skip to content

Commit ee5c03d

Browse files
author
Richard Sun
committed
[QQC-1238] Increase SDK client batch limit to 100k
1 parent a681e6d commit ee5c03d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

labelbox/schema/project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ def create_batch(self,
600600
else:
601601
raise ValueError("You can DataRow ids or DataRow objects")
602602

603-
if len(dr_ids) > 25_000:
603+
if len(dr_ids) > 100_000:
604604
raise ValueError(
605605
f"Batch exceeds max size, break into smaller batches")
606606
if not len(dr_ids):

0 commit comments

Comments
 (0)