We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f07f203 commit cdd1651Copy full SHA for cdd1651
src/azul/indexer/__init__.py
@@ -580,8 +580,17 @@ def canning_qualifier(cls) -> str:
580
class BundlePartition(UUIDPartition):
581
"""
582
A binary partitioning of the UUIDs of outer entities in a bundle.
583
+
584
+ >>> BundlePartition.root
585
+ BundlePartition(prefix_length=0, prefix=0, group=4)
586
587
588
+ #: We use the fifth group because the first group may not produce a random
589
+ #: distribution of the entities in some types of bundles. For example, all
590
+ #: entity UUIDs in an AnVIL replica bundle share a specifc batch prefix.
591
+ #:
592
+ group: int = 4
593
594
#: 512 caused timeouts writing contributions, even in the retry Lambda
595
#:
596
max_partition_size: ClassVar[int] = 256
0 commit comments