Package org.apache.flink.runtime.operators.sort

Examples of org.apache.flink.runtime.operators.sort.UnilateralSortMerger$ReadingThread


        // the input is as it is
        this.inputs[inputNum] = this.inputIterators[inputNum];
        break;
      case SORT:
        @SuppressWarnings({ "rawtypes", "unchecked" })
        UnilateralSortMerger<?> sorter = new UnilateralSortMerger(getMemoryManager(), getIOManager(),
          this.inputIterators[inputNum], this, this.inputSerializers[inputNum], getLocalStrategyComparator(inputNum),
          this.config.getRelativeMemoryInput(inputNum), this.config.getFilehandlesInput(inputNum),
          this.config.getSpillingThresholdInput(inputNum));
        // set the input to null such that it will be lazily fetched from the input strategy
        this.inputs[inputNum] = null;
View Full Code Here

TOP

Related Classes of org.apache.flink.runtime.operators.sort.UnilateralSortMerger$ReadingThread

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.