blob: d6283688edf49bcd7848f2c7ab4c2a1291e3c018 [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.profiler.spark;
import java.util.function.Supplier;
import org.apache.spark.api.java.JavaRDD;
import org.apache.wayang.core.api.Configuration;
import org.apache.wayang.core.platform.ChannelInstance;
import org.apache.wayang.profiler.util.ProfilingUtils;
import org.apache.wayang.spark.operators.SparkExecutionOperator;
/**
* {@link SparkOperatorProfiler} implementation for {@link SparkExecutionOperator}s with one input and no outputs.
*/
public class SinkProfiler extends SparkOperatorProfiler {
private JavaRDD<?> inputRdd;
public SinkProfiler(Supplier<SparkExecutionOperator> operatorGenerator,
Configuration configuration,
Supplier<?> dataQuantumGenerator) {
super(operatorGenerator, configuration, dataQuantumGenerator);
}
@Override
protected void prepareInput(int inputIndex, long inputCardinality) {
assert inputIndex == 0;
this.inputRdd = this.prepareInputRdd(inputCardinality, inputIndex);
}
@Override
protected Result executeOperator() {
final ChannelInstance inputChannelInstance = createChannelInstance(this.inputRdd, this.sparkExecutor);
// Let the operator execute.
ProfilingUtils.sleep(this.executionPaddingTime); // Pad measurement with some idle time.
final long startTime = System.currentTimeMillis();
this.evaluate(
this.operator,
new ChannelInstance[]{inputChannelInstance},
new ChannelInstance[]{}
);
// Complete the measurement.
final long endTime = System.currentTimeMillis();
ProfilingUtils.sleep(this.executionPaddingTime); // Pad measurement with some idle time.
// Gather and assemble all result metrics.
return new Result(
this.inputCardinalities,
0,
endTime - startTime,
this.provideDiskBytes(startTime, endTime),
this.provideNetworkBytes(startTime, endTime),
this.provideCpuCycles(startTime, endTime),
this.numMachines,
this.numCoresPerMachine
);
}
}