Java Code Examples for org.apache.flink.runtime.operators.util.TaskConfig#getIsWorksetUpdate()

The following examples show how to use org.apache.flink.runtime.operators.util.TaskConfig#getIsWorksetUpdate() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AbstractIterativeTask.java    From Flink-CEPplus with Apache License 2.0 5 votes vote down vote up
@Override
protected void initialize() throws Exception {
	super.initialize();

	// check if the driver is resettable
	if (this.driver instanceof ResettableDriver) {
		final ResettableDriver<?, ?> resDriver = (ResettableDriver<?, ?>) this.driver;
		// make sure that the according inputs are not reset
		for (int i = 0; i < resDriver.getNumberOfInputs(); i++) {
			if (resDriver.isInputResettable(i)) {
				excludeFromReset(i);
			}
		}
	}

	TaskConfig config = getLastTasksConfig();
	isWorksetIteration = config.getIsWorksetIteration();
	isWorksetUpdate = config.getIsWorksetUpdate();
	isSolutionSetUpdate = config.getIsSolutionSetUpdate();

	if (isWorksetUpdate) {
		worksetBackChannel = BlockingBackChannelBroker.instance().getAndRemove(brokerKey());

		if (isWorksetIteration) {
			worksetAggregator = getIterationAggregators().getAggregator(WorksetEmptyConvergenceCriterion.AGGREGATOR_NAME);

			if (worksetAggregator == null) {
				throw new RuntimeException("Missing workset elements count aggregator.");
			}
		}
	}
}
 
Example 2
Source File: AbstractIterativeTask.java    From flink with Apache License 2.0 5 votes vote down vote up
@Override
protected void initialize() throws Exception {
	super.initialize();

	// check if the driver is resettable
	if (this.driver instanceof ResettableDriver) {
		final ResettableDriver<?, ?> resDriver = (ResettableDriver<?, ?>) this.driver;
		// make sure that the according inputs are not reset
		for (int i = 0; i < resDriver.getNumberOfInputs(); i++) {
			if (resDriver.isInputResettable(i)) {
				excludeFromReset(i);
			}
		}
	}

	TaskConfig config = getLastTasksConfig();
	isWorksetIteration = config.getIsWorksetIteration();
	isWorksetUpdate = config.getIsWorksetUpdate();
	isSolutionSetUpdate = config.getIsSolutionSetUpdate();

	if (isWorksetUpdate) {
		worksetBackChannel = BlockingBackChannelBroker.instance().getAndRemove(brokerKey());

		if (isWorksetIteration) {
			worksetAggregator = getIterationAggregators().getAggregator(WorksetEmptyConvergenceCriterion.AGGREGATOR_NAME);

			if (worksetAggregator == null) {
				throw new RuntimeException("Missing workset elements count aggregator.");
			}
		}
	}
}
 
Example 3
Source File: AbstractIterativeTask.java    From flink with Apache License 2.0 5 votes vote down vote up
@Override
protected void initialize() throws Exception {
	super.initialize();

	// check if the driver is resettable
	if (this.driver instanceof ResettableDriver) {
		final ResettableDriver<?, ?> resDriver = (ResettableDriver<?, ?>) this.driver;
		// make sure that the according inputs are not reset
		for (int i = 0; i < resDriver.getNumberOfInputs(); i++) {
			if (resDriver.isInputResettable(i)) {
				excludeFromReset(i);
			}
		}
	}

	TaskConfig config = getLastTasksConfig();
	isWorksetIteration = config.getIsWorksetIteration();
	isWorksetUpdate = config.getIsWorksetUpdate();
	isSolutionSetUpdate = config.getIsSolutionSetUpdate();

	if (isWorksetUpdate) {
		worksetBackChannel = BlockingBackChannelBroker.instance().getAndRemove(brokerKey());

		if (isWorksetIteration) {
			worksetAggregator = getIterationAggregators().getAggregator(WorksetEmptyConvergenceCriterion.AGGREGATOR_NAME);

			if (worksetAggregator == null) {
				throw new RuntimeException("Missing workset elements count aggregator.");
			}
		}
	}
}