Uses of Record Class
io.github.jchejarla.springbatch.clustering.partition.PartitionAssignment
Packages that use PartitionAssignment
Package
Description
Master-side partitioning.
Built-in partition-assignment strategies: round-robin, fixed-node-count, and least-loaded.
-
Uses of PartitionAssignment in io.github.jchejarla.springbatch.clustering.partition
Methods in io.github.jchejarla.springbatch.clustering.partition that return types with arguments of type PartitionAssignmentModifier and TypeMethodDescriptionPartitionAssignmentStrategy.assignPartitions(List<org.springframework.batch.infrastructure.item.ExecutionContext> executionContexts, List<ClusterNode> availableNodes) -
Uses of PartitionAssignment in io.github.jchejarla.springbatch.clustering.partition.impl
Methods in io.github.jchejarla.springbatch.clustering.partition.impl that return types with arguments of type PartitionAssignmentModifier and TypeMethodDescriptionFixedNodeCountPartitionAssignmentStrategy.assignPartitions(List<org.springframework.batch.infrastructure.item.ExecutionContext> executionContexts, List<ClusterNode> availableNodes) Assigns partitions to a fixed number of nodes using a round-robin approach.LeastLoadedPartitionAssignmentStrategy.assignPartitions(List<org.springframework.batch.infrastructure.item.ExecutionContext> executionContexts, List<ClusterNode> availableNodes) RoundRobinPartitionAssignmentStrategy.assignPartitions(List<org.springframework.batch.infrastructure.item.ExecutionContext> executionContexts, List<ClusterNode> availableNodes) Assigns partitions to nodes using a round-robin approach.