blob: 25212bef90e63539437b9ebc25a4fa24641ddb34 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.wayang.spark.operators;
import org.apache.spark.SparkContext;
import org.apache.spark.api.java.JavaRDD;
import org.apache.wayang.basic.operators.SampleOperator;
import org.apache.wayang.core.api.exception.WayangException;
import org.apache.wayang.core.function.FunctionDescriptor;
import org.apache.wayang.core.optimizer.OptimizationContext;
import org.apache.wayang.core.plan.wayangplan.ExecutionOperator;
import org.apache.wayang.core.platform.ChannelDescriptor;
import org.apache.wayang.core.platform.ChannelInstance;
import org.apache.wayang.core.platform.lineage.ExecutionLineageNode;
import org.apache.wayang.core.types.DataSetType;
import org.apache.wayang.core.util.Tuple;
import org.apache.wayang.java.channels.CollectionChannel;
import org.apache.wayang.spark.channels.RddChannel;
import org.apache.wayang.spark.execution.SparkExecutor;
import scala.collection.JavaConversions;
import scala.runtime.AbstractFunction1;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Random;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;
import java.util.function.IntUnaryOperator;
import java.util.function.LongUnaryOperator;
/**
* Spark implementation of the {@link SampleOperator}. Sampling with replacement (i.e., the sample may contain duplicates)
*/
public class SparkRandomPartitionSampleOperator<Type>
extends SampleOperator<Type>
implements SparkExecutionOperator {
private Random rand;
private int nb_partitions = 0;
private int partitionSize = 0;
private boolean first = true;
/**
* Creates a new instance.
*/
public SparkRandomPartitionSampleOperator(FunctionDescriptor.SerializableIntUnaryOperator sampleSizeFunction, DataSetType<Type> type, FunctionDescriptor.SerializableLongUnaryOperator seedFunction) {
super(sampleSizeFunction, type, Methods.RANDOM, seedFunction);
}
/**
* Copies an instance (exclusive of broadcasts).
*
* @param that that should be copied
*/
public SparkRandomPartitionSampleOperator(SampleOperator<Type> that) {
super(that);
assert that.getSampleMethod() == Methods.RANDOM || that.getSampleMethod() == Methods.ANY;
}
@Override
public Tuple<Collection<ExecutionLineageNode>, Collection<ChannelInstance>> evaluate(
ChannelInstance[] inputs,
ChannelInstance[] outputs,
SparkExecutor sparkExecutor,
OptimizationContext.OperatorContext operatorContext) {
assert inputs.length == this.getNumInputs();
assert outputs.length == this.getNumOutputs();
RddChannel.Instance input = (RddChannel.Instance) inputs[0];
final JavaRDD<Object> inputRdd = input.provideRdd();
long datasetSize = this.isDataSetSizeKnown() ?
this.getDatasetSize() :
inputRdd.cache().count();
int sampleSize = this.getSampleSize(operatorContext);
if (sampleSize >= datasetSize) { //return whole dataset
((CollectionChannel.Instance) outputs[0]).accept(inputRdd.collect());
return ExecutionOperator.modelEagerExecution(inputs, outputs, operatorContext);
}
long seed = this.getSeed(operatorContext);
rand = new Random(seed);
List<Type> result;
final SparkContext sparkContext = inputRdd.context();
if (first) { //first time -> retrieve some statistics for partitions
nb_partitions = inputRdd.partitions().size();
partitionSize = (int) Math.ceil((double) datasetSize / nb_partitions);
first = false;
}
if (sampleSize == 1) { //e.g., for SGD
int pid = rand.nextInt(nb_partitions); //sample partition
int tid = rand.nextInt(partitionSize); // sample item inside the partition
List<Integer> partitions = Collections.singletonList(pid);
Object samples = sparkContext.runJob(inputRdd.rdd(),
new PartitionSampleFunction(tid, ((tid + sampleSize))),
(scala.collection.Seq) JavaConversions.asScalaBuffer(partitions),
scala.reflect.ClassTag$.MODULE$.apply(List.class));
result = ((List<Type>[]) samples)[0];
} else {
HashMap<Integer, ArrayList<Integer>> map = new HashMap<>(); //list should be ordered..
for (int i = 0; i < sampleSize; i++) {
int pid = rand.nextInt(nb_partitions); //sample partition
int tid = rand.nextInt(partitionSize); // sample item inside the partition
ArrayList<Integer> list;
if ((list = map.get(pid)) == null) { //first time in partition pid
list = new ArrayList<>();
list.add(tid);
map.put(pid, list);
} else {
list.add(tid);
}
}
List<Type> allSamples = new ArrayList<>();
ExecutorService executorService = Executors.newFixedThreadPool(map.size());
Iterator<Integer> parts = map.keySet().iterator();
List<Future<Object>> results = new ArrayList<>(map.size());
while (parts.hasNext()) { //run for each partition
int pid = parts.next();
List<Integer> partitions = Collections.singletonList(pid);
ArrayList list = map.get(pid);
Collections.sort(list); // order list of tids
// Start a thread
results.add(executorService.submit(() ->
sparkContext.runJob(inputRdd.rdd(),
new PartitionSampleListFunction(list),
(scala.collection.Seq) JavaConversions.asScalaBuffer(partitions),
scala.reflect.ClassTag$.MODULE$.apply(List.class))));
}
for (int i = 0; i < map.size(); i++)
try {
allSamples.addAll(((List<Type>[]) results.get(i).get())[0]);
} catch (InterruptedException e) {
this.logger.error("Random partition sampling failed due to threads.", e);
} catch (ExecutionException e) {
throw new WayangException("Random partition sampling failed.", e);
}
executorService.shutdown();
// Wait until all threads are finish
result = allSamples;
}
// assuming the sample is small better use a collection instance, the optimizer can transform the output if necessary
((CollectionChannel.Instance) outputs[0]).accept(result);
return ExecutionOperator.modelEagerExecution(inputs, outputs, operatorContext);
}
@Override
protected ExecutionOperator createCopy() {
return new SparkRandomPartitionSampleOperator<>(this);
}
@Override
public List<ChannelDescriptor> getSupportedInputChannels(int index) {
assert index <= this.getNumInputs() || (index == 0 && this.getNumInputs() == 0);
return this.isDataSetSizeKnown() ?
Arrays.asList(RddChannel.UNCACHED_DESCRIPTOR, RddChannel.CACHED_DESCRIPTOR) :
Collections.singletonList(RddChannel.CACHED_DESCRIPTOR);
}
@Override
public List<ChannelDescriptor> getSupportedOutputChannels(int index) {
assert index <= this.getNumOutputs() || (index == 0 && this.getNumOutputs() == 0);
return Collections.singletonList(CollectionChannel.DESCRIPTOR);
}
public String getLoadProfileEstimatorConfigurationKey() {
return "wayang.spark.random-partition-sample.load";
}
@Override
public boolean containsAction() {
return true;
}
}
class PartitionSampleFunction<V> extends AbstractFunction1<scala.collection.Iterator<V>, List<V>> implements Serializable {
private int start_id;
private int end_id;
PartitionSampleFunction(int start_id, int end_id) {
this.start_id = start_id;
this.end_id = end_id;
}
@Override
public List<V> apply(scala.collection.Iterator<V> iterator) {
//sampling
List<V> list = new ArrayList<>(end_id - start_id);
int index = 0;
V element = null;
while (iterator.hasNext()) {
element = iterator.next();
if (index >= start_id & index < end_id)
list.add(element);
index++;
if (index > end_id)
break;
}
if (index < end_id)
list.add(element); //take last element
///FIXME: there are cases were the list will be smaller because of miscalculation of the partition size for mini-batch
return list;
}
}
class PartitionSampleListFunction<V> extends AbstractFunction1<scala.collection.Iterator<V>, List<V>> implements Serializable {
private ArrayList<Integer> ids; //ids should be sorted
PartitionSampleListFunction(ArrayList<Integer> ids) {
this.ids = ids;
}
@Override
public List<V> apply(scala.collection.Iterator<V> iterator) {
//sampling
List<V> list = new ArrayList<>(ids.size());
int count = 0;
V element = null;
int index = 0;
while (iterator.hasNext()) {
element = iterator.next();
if (count == ids.get(index)) { // we have to take exactly ids.size() elements
list.add(element);
if (index == ids.size() - 1) //if we took all elements we need, break
break;
index++;
if (ids.get(index).equals(ids.get(index - 1))) { // for duplicates
list.add(element);
if (index == ids.size() - 1) //if we took all elements we need, break
break;
index++;
}
}
count++;
}
if (list.size() < ids.size()) //take last element, if we miscalculated
list.add(element);
return list;
}
}