/*
* Copyright 2018 LinkedIn Corp.
*
* Licensed 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 azkaban.dag;
import java.util.concurrent.CountDownLatch;
public class TestKillNodeProcessor implements NodeProcessor {
private final DagService dagService;
private final StatusChangeRecorder statusChangeRecorder;
private final CountDownLatch nodeRunningLatch;
/**
* A node processor that tests killing a node.
*
* @param nodeRunningLatch signal that the node has started running
*/
TestKillNodeProcessor(final DagService dagService,
final StatusChangeRecorder statusChangeRecorder, final CountDownLatch nodeRunningLatch) {
this.dagService = dagService;
this.statusChangeRecorder = statusChangeRecorder;
this.nodeRunningLatch = nodeRunningLatch;
}
@Override
public void changeStatus(final Node node, final Status status) {
System.out.println(node);
this.statusChangeRecorder.recordNode(node);
switch (node.getStatus()) {
case RUNNING:
// Don't mark the job finished. Simulate a long running job.
this.nodeRunningLatch.countDown();
break;
case KILLING:
this.dagService.markNodeKilled(node);
break;
default:
break;
}
}
}