Uses of Interface
org.openrefine.runners.local.pll.Partition
-
Packages that use Partition Package Description org.openrefine.runners.local.pll -
-
Uses of Partition in org.openrefine.runners.local.pll
Classes in org.openrefine.runners.local.pll that implement Partition Modifier and Type Class Description protected static classCroppedPLL.CroppedPartitionprotected static classDropPartitionsPLL.PartitionLinkprotected static classIndexedPLL.IndexedPartitionprotected static classInMemoryPLL.InMemoryPartitionprotected static classOrderedJoinPLL.JoinPartitionprotected static classRecordPLL.RecordPartitionprotected static classTextFilePLL.TextFilePartitionprotected static classUnionPLL.UnionPartitionFields in org.openrefine.runners.local.pll declared as Partition Modifier and Type Field Description protected PartitionDropPartitionsPLL.PartitionLink. originalPartitionprotected PartitionIndexedPLL.IndexedPartition. parentprotected PartitionOrderedJoinPLL.JoinPartition. parentprotected PartitionRecordPLL.RecordPartition. parentprotected PartitionUnionPLL.UnionPartition. parentFields in org.openrefine.runners.local.pll with type parameters of type Partition Modifier and Type Field Description protected io.vavr.collection.Array<Partition>DropPartitionsPLL. partitionsMethods in org.openrefine.runners.local.pll that return Partition Modifier and Type Method Description PartitionCroppedPLL.CroppedPartition. getParent()PartitionDropPartitionsPLL.PartitionLink. getParent()PartitionIndexedPLL.IndexedPartition. getParent()PartitionInMemoryPLL.InMemoryPartition. getParent()PartitionOrderedJoinPLL.JoinPartition. getParent()PartitionPartition. getParent()Returns the partition of the parent PLL this is derived from (if any - otherwise null)PartitionRecordPLL.RecordPartition. getParent()PartitionTextFilePLL.TextFilePartition. getParent()PartitionUnionPLL.UnionPartition. getParent()Methods in org.openrefine.runners.local.pll that return types with arguments of type Partition Modifier and Type Method Description io.vavr.collection.Array<? extends Partition>CroppedPLL. getPartitions()io.vavr.collection.Array<? extends Partition>DropPartitionsPLL. getPartitions()io.vavr.collection.Array<? extends Partition>IndexedPLL. getPartitions()io.vavr.collection.Array<? extends Partition>InMemoryPLL. getPartitions()io.vavr.collection.Array<? extends Partition>MapPartitionsPLL. getPartitions()io.vavr.collection.Array<? extends Partition>OrderedJoinPLL. getPartitions()io.vavr.collection.Array<? extends Partition>PairPLL. getPartitions()abstract io.vavr.collection.Array<? extends Partition>PLL. getPartitions()io.vavr.collection.Array<? extends Partition>RecordPLL. getPartitions()io.vavr.collection.Array<? extends Partition>SinglePartitionPLL. getPartitions()io.vavr.collection.Array<? extends Partition>TextFilePLL. getPartitions()io.vavr.collection.Array<? extends Partition>UnionPLL. getPartitions()Methods in org.openrefine.runners.local.pll with parameters of type Partition Modifier and Type Method Description protected CloseableIterator<T>CroppedPLL. compute(Partition partition)protected CloseableIterator<T>DropPartitionsPLL. compute(Partition partition)protected CloseableIterator<Tuple2<Long,T>>IndexedPLL. compute(Partition partition)CloseableIterator<T>InMemoryPLL. compute(Partition partition)CloseableIterator<T>MapPartitionsPLL. compute(Partition partition)protected CloseableIterator<Tuple2<K,Tuple2<V,W>>>OrderedJoinPLL. compute(Partition partition)protected CloseableIterator<Tuple2<K,V>>PairPLL. compute(Partition partition)protected abstract CloseableIterator<T>PLL. compute(Partition partition)Iterate over the elements of the given partition.protected CloseableIterator<Tuple2<Long,Record>>RecordPLL. compute(Partition partition)protected CloseableIterator<T>SinglePartitionPLL. compute(Partition partition)protected CloseableIterator<String>TextFilePLL. compute(Partition partition)protected CloseableIterator<T>UnionPLL. compute(Partition partition)CloseableIterator<Tuple2<K,V>>PairPLL. iterate(Partition partition)CloseableIterator<T>PLL. iterate(Partition partition)Iterate over the elements of the given partition.protected voidPLL. writeOriginalPartition(Partition partition, File directory, Optional<TaskSignalling> taskSignalling, boolean flushRegularly)Method parameters in org.openrefine.runners.local.pll with type arguments of type Partition Modifier and Type Method Description <U> io.vavr.collection.Array<U>PLL. runOnPartitions(Function<Partition,U> partitionFunction, int maxConcurrency)Runs a task in parallel on all partitions.protected <U> io.vavr.collection.Array<U>PLL. runOnPartitions(Function<Partition,U> partitionFunction, io.vavr.collection.Iterator<? extends Partition> partitions, int maxConcurrency)Run a task in parallel on a selection of partitions.protected <U> io.vavr.collection.Array<U>PLL. runOnPartitions(Function<Partition,U> partitionFunction, io.vavr.collection.Iterator<? extends Partition> partitions, int maxConcurrency)Run a task in parallel on a selection of partitions.<U> ProgressingFuture<io.vavr.collection.Array<U>>PLL. runOnPartitionsAsync(BiFunction<Partition,TaskSignalling,U> partitionFunction, int maxConcurrency)Runs a task in parallel on all partitions, asynchronously.protected <U> ProgressingFuture<io.vavr.collection.Array<U>>PLL. runOnPartitionsAsync(BiFunction<Partition,TaskSignalling,U> partitionFunction, io.vavr.collection.Iterator<? extends Partition> partitions, int maxConcurrency)Run a task in parallel on a selection of partitions, asynchronously.protected <U> ProgressingFuture<io.vavr.collection.Array<U>>PLL. runOnPartitionsAsync(BiFunction<Partition,TaskSignalling,U> partitionFunction, io.vavr.collection.Iterator<? extends Partition> partitions, int maxConcurrency)Run a task in parallel on a selection of partitions, asynchronously.<U> io.vavr.collection.Array<U>PLL. runOnPartitionsWithoutInterruption(Function<Partition,U> partitionFunction)Same asPLL.runOnPartitions(Function, int)but wrapping anyInterruptedExceptionin an uncheckedPLL.PLLExecutionError.protected <U> io.vavr.collection.Array<U>PLL. runOnPartitionsWithoutInterruption(Function<Partition,U> partitionFunction, io.vavr.collection.Iterator<? extends Partition> partitions)Same asPLL.runOnPartitions(Function, Iterator, int)but wrapping anyInterruptedExceptionas an uncheckedPLL.PLLExecutionError.protected <U> io.vavr.collection.Array<U>PLL. runOnPartitionsWithoutInterruption(Function<Partition,U> partitionFunction, io.vavr.collection.Iterator<? extends Partition> partitions)Same asPLL.runOnPartitions(Function, Iterator, int)but wrapping anyInterruptedExceptionas an uncheckedPLL.PLLExecutionError.Constructors in org.openrefine.runners.local.pll with parameters of type Partition Constructor Description CroppedPartition(int index, Partition parent)IndexedPartition(int partitionIndex, long offset, Partition parent)JoinPartition(int index, Partition parent)PartitionLink(int index, Partition originalPartition)RecordPartition(int index, List<Row> additionalRows, Partition parent)UnionPartition(int index, int parentIndex, Partition parent)
-