com.google.appengine.tools.pipeline.Job Maven / Gradle / Ivy
Show all versions of appengine-pipeline Show documentation
// Copyright 2011 Google Inc.
//
// 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 com.google.appengine.tools.pipeline;
import com.google.appengine.api.datastore.Key;
import com.google.appengine.tools.pipeline.impl.FutureValueImpl;
import com.google.appengine.tools.pipeline.impl.PipelineManager;
import com.google.appengine.tools.pipeline.impl.PromisedValueImpl;
import com.google.appengine.tools.pipeline.impl.backend.UpdateSpec;
import com.google.appengine.tools.pipeline.impl.model.JobRecord;
import java.io.Serializable;
import java.util.List;
/**
* The abstract ancestor class of all user job classes. A job is by
* definition a subclass of this class that implements a method named run
*
.
*
* In order to fully take advantage of the framework's compile-time
* type-checking, a user's job class should subclass one of {@link Job0},
* {@link Job1}, {@link Job2}, etc instead of directly subclassing this class,
* and then implement the appropriate type-safe version of {@code run()}. The
* only reason a user-written job class should directly subclass this class is
* if the {@code run} method of the job needs to take more arguments than the
* greatest {@code n} such that the framework offers a {@code Jobn} class.
* In any case, the provided run method should be reentred as it may be called
* more than once.
*
* This class contains several protected methods that may be invoked from with
* the {@code run()} method.
*
* - {@code futureCall()} There is a family of methods named
* {@code futureCall()} used to specify a job node in a generated child job
* graph. There are several type-safe versions of {@code futureCall()} such as
* {@link #futureCall(Job0, JobSetting...)} and
* {@link #futureCall(Job1, Value, JobSetting...)}. There is also one
* non-type-safe version
* {@link #futureCallUnchecked(JobSetting[], Job, Object...)} used for child
* jobs that directly subclass {@code Job} rather than subclassing {@code Jobn}
* for some {@code n}.
*
- {@link #newPromise(Class)} is used to construct a new
* {@link PromisedValue}.
*
- Several methods that are syntactic sugar. These are methods that
* allow one to construct objects that may be used as arguments to
* {@code futureCall()} using less typing. These include
*
* - {@link #futureList(List)}. Constructs a new {@link FutureList}
*
- {@link #immediate(Object)}. Constructs a new {@link ImmediateValue}
*
- {@link #waitFor(Value)}. Constructs a new
* {@link JobSetting.WaitForSetting}.
*
- {@link #backOffFactor(int)}. Constructs a new
* {@link JobSetting.BackoffFactor}.
*
- {@link #backOffSeconds(int)}. Constructs a new
* {@link JobSetting.BackoffSeconds}.
*
- {@link #maxAttempts(int)}. Constructs a new
* {@link JobSetting.MaxAttempts}.
*
*
* As an example of the use of the syntactic sugar, from within a {@code run}
* method one might write
*
*
*
* FutureValue<Integer> x = futureCall(new MyJob(), immediate(4));
* FutureValue<String> s = futureCall(new MySecondJob(), x, immediate("hello");
* futureCall(new MyThirdJob(), waitFor(s), waitFor(x), maxAttempts(5), backoffSeconds(5));
*
*
*
* A Job can provide an optional {@code handleException} method that is called
* when any unhandled exception is thrown from its run method.
*
* Before delivering an exception to the job's handleException method the
* Pipelines framework cancels all descendants jobs that originated from the
* parent's run method. A descendant job is defined as a job that is either a
* child or the child of a child (and so on recursively) of the original job.
* This cancellation is important for a number of reasons.
*
* -
* It ensures that no descendant jobs are executed after the handleException
* method is called.
* -
* It avoids having dangling jobs which wait for a FutureValue that is never be
* ready.
* - It helps cleaning up external resources as failureHandlers of descendant
* jobs are called (with CancellationException) in case of cancellation request
* from their ancestor. If the descendant job with own failureHandler is a
* generator job that has its own descendants they are cancelled first before
* calling the failureHandler.
*
* In case of simultaneous failures only the first one is delivered to the
* handleException and the other failed job will ignore the cancellation request
* caused by the first one. A handleException method can act as a generator. So
* failure handling can be as complex as necessary involving complex job graphs.
* A failure of a job that is a descendant of the handleException is handled in
* the same manner as a failure of a job originated in the run method. All
* failed job siblings originated in the handleException are cancelled and then
* exception is propagated to the enclosing scope which is either ancestor's run
* or handleException.
*
* {@code handleException} methods must have a single argument of type
* {@link Throwable} or any of its descendants. If more than one method is
* specified than the method that has most specific exception parameter that is
* parent of the thrown exception is called. If called the Value
* returned by {@code handleException(e)} method is used by the framework
* instead of the Value
returned by run
. {@code handleException}
* method is allowed to throw any exception.
*
*
* @author [email protected] (Mitch Rudominer)
*
* @param The return type of the job.
*/
public abstract class Job implements Serializable {
/*
* See the user's guide for more information.
*/
private static final long serialVersionUID = 868736209042268959L;
private transient JobRecord thisJobRecord;
private transient UpdateSpec updateSpec;
private transient String currentRunGUID;
// This method will be invoked by reflection from PipelineManager
@SuppressWarnings("unused")
private void setJobRecord(JobRecord jobRecord) {
this.thisJobRecord = jobRecord;
}
// This method will be invoked by reflection from PipelineManager
@SuppressWarnings("unused")
private void setUpdateSpec(UpdateSpec spec) {
this.updateSpec = spec;
}
// This method will be invoked by reflection from PipelineManager
@SuppressWarnings("unused")
private void setCurrentRunGuid(String guid) {
this.currentRunGUID = guid;
}
/**
* This is the non-type-safe version of the {@code futureCall()} family of
* methods. Normally a user will not need to invoke this method directly.
* Instead, one of the type-safe methods such as
* {@link #futureCall(Job2, Value, Value, JobSetting...)} should be used. The
* only reason a user should invoke this method directly is if
* {@code jobInstance} is a direct subclass of {@code Job} instead of being a
* subclass of one of the {@code Jobn} classes and the {@code run()} method of
* {@code jobInstance} takes more arguments than the greatest {@code n} such
* that the framework offers a {@code Jobn} class.
*
* @param The return type of the child job being specified
* @param settings
* @param jobInstance The user-written job object
* @param params The parameters to be passed to the {@code run} method of the
* job
* @return a {@code FutureValue} representing an empty value slot that will be
* filled by the output of {@code jobInstance} when it finalizes. This
* may be passed in to further invocations of {@code futureCall()} in
* order to specify a data dependency.
*/
public FutureValue futureCallUnchecked(JobSetting[] settings, Job> jobInstance,
Object... params) {
JobRecord childJobRecord = PipelineManager.registerNewJobRecord(
updateSpec, settings, thisJobRecord, currentRunGUID, jobInstance, params);
thisJobRecord.appendChildKey(childJobRecord.getKey());
return new FutureValueImpl<>(childJobRecord.getOutputSlotInflated());
}
/**
* Invoke this method from within the {@code run} method of a generator
* job in order to specify a job node in the generated child job graph.
* This version of the method is for child jobs that take zero arguments.
*
* @param The return type of the child job being specified
* @param jobInstance A user-written job object
* @param settings Optional one or more {@code JobSetting}
* @return a {@code FutureValue} representing an empty value slot that will be
* filled by the output of {@code jobInstance} when it finalizes. This
* may be passed in to further invocations of {@code futureCall()} in
* order to specify a data dependency.
*/
public FutureValue futureCall(Job0 jobInstance, JobSetting... settings) {
return futureCallUnchecked(settings, jobInstance);
}
/**
* Invoke this method from within the {@code run} method of a generator
* job in order to specify a job node in the generated child job graph.
* This version of the method is for child jobs that take one argument.
*
* @param The return type of the child job being specified
* @param The type of the first input to the child job
* @param jobInstance A user-written job object
* @param v1 the first input to the child job
* @param settings Optional one or more {@code JobSetting}
* @return a {@code FutureValue} representing an empty value slot that will be
* filled by the output of {@code jobInstance} when it finalizes. This
* may be passed in to further invocations of {@code futureCall()} in
* order to specify a data dependency.
*/
public FutureValue futureCall(
Job1 jobInstance, Value extends T1> v1, JobSetting... settings) {
return futureCallUnchecked(settings, jobInstance, v1);
}
/**
* Invoke this method from within the {@code run} method of a generator
* job in order to specify a job node in the generated child job graph.
* This version of the method is for child jobs that take two arguments.
*
* @param The return type of the child job being specified
* @param The type of the first input to the child job
* @param The type of the second input to the child job
* @param jobInstance A user-written job object
* @param v1 the first input to the child job
* @param v2 the second input to the child job
* @param settings Optional one or more {@code JobSetting}
* @return a {@code FutureValue} representing an empty value slot that will be
* filled by the output of {@code jobInstance} when it finalizes. This
* may be passed in to further invocations of {@code futureCall()} in
* order to specify a data dependency.
*/
public FutureValue futureCall(Job2 jobInstance, Value extends T1> v1,
Value extends T2> v2, JobSetting... settings) {
return futureCallUnchecked(settings, jobInstance, v1, v2);
}
/**
* Invoke this method from within the {@code run} method of a generator
* job in order to specify a job node in the generated child job graph.
* This version of the method is for child jobs that take three arguments.
*
* @param The return type of the child job being specified
* @param The type of the first input to the child job
* @param The type of the second input to the child job
* @param The type of the third input to the child job
* @param jobInstance A user-written job object
* @param v1 the first input to the child job
* @param v2 the second input to the child job
* @param v3 the third input to the child job
* @param settings Optional one or more {@code JobSetting}
* @return a {@code FutureValue} representing an empty value slot that will be
* filled by the output of {@code jobInstance} when it finalizes. This
* may be passed in to further invocations of {@code futureCall()} in
* order to specify a data dependency.
*/
public FutureValue futureCall(Job3 jobInstance,
Value extends T1> v1, Value extends T2> v2, Value extends T3> v3,
JobSetting... settings) {
return futureCallUnchecked(settings, jobInstance, v1, v2, v3);
}
/**
* Invoke this method from within the {@code run} method of a generator
* job in order to specify a job node in the generated child job graph.
* This version of the method is for child jobs that take four arguments.
*
* @param The return type of the child job being specified
* @param The type of the first input to the child job
* @param The type of the second input to the child job
* @param The type of the third input to the child job
* @param The type of the fourth input to the child job
* @param jobInstance A user-written job object
* @param v1 the first input to the child job
* @param v2 the second input to the child job
* @param v3 the third input to the child job
* @param v4 the fourth input to the child job
* @param settings Optional one or more {@code JobSetting}
* @return a {@code FutureValue} representing an empty value slot that will be
* filled by the output of {@code jobInstance} when it finalizes. This
* may be passed in to further invocations of {@code futureCall()} in
* order to specify a data dependency.
*/
public FutureValue futureCall(Job4 jobInstance,
Value extends T1> v1, Value extends T2> v2, Value extends T3> v3,
Value extends T4> v4, JobSetting... settings) {
return futureCallUnchecked(settings, jobInstance, v1, v2, v3, v4);
}
/**
* Invoke this method from within the {@code run} method of a generator
* job in order to specify a job node in the generated child job graph.
* This version of the method is for child jobs that take five arguments.
*
* @param The return type of the child job being specified
* @param The type of the first input to the child job
* @param The type of the second input to the child job
* @param The type of the third input to the child job
* @param The type of the fourth input to the child job
* @param The type of the fifth input to the child job
* @param jobInstance A user-written job object
* @param v1 the first input to the child job
* @param v2 the second input to the child job
* @param v3 the third input to the child job
* @param v4 the fourth input to the child job
* @param v5 the fifth input to the child job
* @param settings Optional one or more {@code JobSetting}
* @return a {@code FutureValue} representing an empty value slot that will be
* filled by the output of {@code jobInstance} when it finalizes. This
* may be passed in to further invocations of {@code futureCall()} in
* order to specify a data dependency.
*/
public FutureValue futureCall(Job5 jobInstance,
Value extends T1> v1, Value extends T2> v2, Value extends T3> v3,
Value extends T4> v4, Value extends T5> v5, JobSetting... settings) {
return futureCallUnchecked(settings, jobInstance, v1, v2, v3, v4, v5);
}
/**
* Invoke this method from within the {@code run} method of a generator
* job in order to specify a job node in the generated child job graph.
* This version of the method is for child jobs that take six arguments.
*
* @param The return type of the child job being specified
* @param The type of the first input to the child job
* @param The type of the second input to the child job
* @param The type of the third input to the child job
* @param The type of the fourth input to the child job
* @param The type of the fifth input to the child job
* @param The type of the sixth input to the child job
* @param jobInstance A user-written job object
* @param v1 the first input to the child job
* @param v2 the second input to the child job
* @param v3 the third input to the child job
* @param v4 the fourth input to the child job
* @param v5 the fifth input to the child job
* @param v6 the sixth input to the child job
* @param settings Optional one or more {@code JobSetting}
* @return a {@code FutureValue} representing an empty value slot that will be
* filled by the output of {@code jobInstance} when it finalizes. This
* may be passed in to further invocations of {@code futureCall()} in
* order to specify a data dependency.
*/
public FutureValue futureCall(
Job6 jobInstance, Value extends T1> v1, Value extends T2> v2,
Value extends T3> v3, Value extends T4> v4, Value extends T5> v5,
Value extends T6> v6, JobSetting... settings) {
return futureCallUnchecked(settings, jobInstance, v1, v2, v3, v4, v5, v6);
}
/**
* Invoke this method from within the {@code run} method of a generator
* job in order to declare that some value will be provided asynchronously
* by some external agent.
*
* @param The type of the asynchronously provided value.
* @param klass A {@link Class} object used to specify the type of the
* asynchronously provided value.
* @return A {@code PromisedValue} that represents an empty value slot that
* will be filled at a later time when the external agent invokes
* {@link PipelineService#submitPromisedValue(String, Object)}. This
* may be passed in to further invocations of {@code futureCall()} in
* order to specify a data dependency.
* @deprecate Use #newPromise() instead.
*/
@Deprecated
public PromisedValue newPromise(Class klass) {
PromisedValueImpl promisedValue =
new PromisedValueImpl<>(getPipelineKey(), thisJobRecord.getKey(), currentRunGUID);
updateSpec.getNonTransactionalGroup().includeSlot(promisedValue.getSlot());
return promisedValue;
}
public PromisedValue newPromise() {
PromisedValueImpl promisedValue =
new PromisedValueImpl<>(getPipelineKey(), thisJobRecord.getKey(), currentRunGUID);
updateSpec.getNonTransactionalGroup().includeSlot(promisedValue.getSlot());
return promisedValue;
}
/**
* Invoke this method from within the {@code run} method of a generator
* job in order to get a {@link PromisedValue} that becomes ready after
* a specified delay. The delay starts once this job's run method complete.
*
* @param delaySeconds Minimal delay after which the returned value becomes ready.
* @return A {@code PromisedValue} that represents an empty value slot that
* will be filled by the pipelines framework after the specified delay.
*/
public Value newDelayedValue(long delaySeconds) {
PromisedValueImpl promisedValue = (PromisedValueImpl) newPromise(Void.class);
PipelineManager.registerDelayedValue(
updateSpec, thisJobRecord, delaySeconds, promisedValue.getSlot());
return promisedValue;
}
/**
* Constructs a new {@code ImmediateValue}. This method is only syntactic
* sugar. {@code immediate(x)} is equivalent to {@code new ImmediateValue(x)}.
*
* @param The type of value wrapped by the returned {@code ImmediateValue}
* @param value The value to be wrapped by the {@code ImmediateValue}
* @return a new {@code ImmediateValue}
*/
public static ImmediateValue immediate(F value) {
return new ImmediateValue<>(value);
}
/**
* Constructs a new {@code WaitForSetting}. This method is only syntactic
* sugar. {@code waitFor(fv)} is equivalent to {@code new
* JobSetting.WaitForSetting(fv)}.
*
* @param fv The {@code FutureValue} to wait for
* @return a new {@code WaitForSetting}.
*/
public static JobSetting.WaitForSetting waitFor(Value> fv) {
return new JobSetting.WaitForSetting(fv);
}
/**
* Constructs a new {@code JobSetting.BackoffFactor}. This method is only
* syntactic sugar. {@code backoffFactor(x)} is equivalent to {@code new
* JobSetting.BackoffFactor(x)}.
*
* @param factor The backoff factor
* @return a new {@code JobSetting.BackoffFactor}.
*/
public static JobSetting.BackoffFactor backOffFactor(int factor) {
return new JobSetting.BackoffFactor(factor);
}
/**
* Constructs a new {@code JobSetting.BackoffSeconds}. This method is only
* syntactic sugar. {@code backoffSeconds(x)} is equivalent to {@code new
* JobSetting.BackoffSeconds(x)}.
*
* @param seconds The backoff seconds
* @return a new {@code JobSetting.BackoffSeconds}.
*/
public static JobSetting.BackoffSeconds backOffSeconds(int seconds) {
return new JobSetting.BackoffSeconds(seconds);
}
/**
* Constructs a new {@code JobSetting.MaxAttempts}. This method is only
* syntactic sugar. {@code maxAttempts(x)} is equivalent to {@code new
* JobSetting.MaxAttempts(x)}.
*
* @param attempts The maximum number of attempts
* @return a new {@code JobSetting.BackoffSeconds}.
*/
public static JobSetting.MaxAttempts maxAttempts(int attempts) {
return new JobSetting.MaxAttempts(attempts);
}
/**
* Constructs a new {@code JobSetting.OnBackend}. This method is only
* syntactic sugar. {@code onBackend(x)} is equivalent to
* {@code new JobSetting.OnBackend(x)}.
*/
public static JobSetting.OnBackend onBackend(String backend) {
return new JobSetting.OnBackend(backend);
}
/**
* Constructs a new {@code JobSetting.OnModule}. This method is only
* syntactic sugar. {@code onModule(x)} is equivalent to
* {@code new JobSetting.OnModule(x)}.
*/
public static JobSetting.OnModule onModule(String module) {
return new JobSetting.OnModule(module);
}
/**
* Constructs a new {@code JobSetting.OnModuleVersion}. This method is only
* syntactic sugar. {@code onModuleVersion(x)} is equivalent to
* {@code new JobSetting.OnModuleVersion(x)}.
*/
public static JobSetting.OnModuleVersion onModuleVersion(String moduleVersion) {
return new JobSetting.OnModuleVersion(moduleVersion);
}
/**
* Constructs a new {@code JobSetting.OnQueue}. This method is only
* syntactic sugar. {@code onQueue(x)} is equivalent to
* {@code new JobSetting.OnQueue(x)}.
*/
public static JobSetting.OnQueue onQueue(String queue) {
return new JobSetting.OnQueue(queue);
}
/**
* Constructs a new {@code JobSetting.StatusConsoleUrl}. This method is only
* syntactic sugar. {@code statusConsoleUrl(x)} is equivalent to
* {@code new JobSetting.StatusConsoleUrl(x)}.
*/
public static JobSetting.StatusConsoleUrl statusConsoleUrl(String statusConsoleUrl) {
return new JobSetting.StatusConsoleUrl(statusConsoleUrl);
}
/**
* Constructs a new {@code FutureList}. This method is only syntactic sugar.
* {@code futureList(listOfValues)} is equivalent to {@code new
* FutureList(listOfValues)}.
*
* @param The type of element in the list
* @param listOfValues A list of {@code Values}
* @return A new {@code FutureList}.
*/
public static FutureList futureList(List extends Value> listOfValues) {
return new FutureList<>(listOfValues);
}
/**
* Returns the Key uniquely identifying this job
*
* @return the Key uniquely identifying this job
*/
public Key getJobKey() {
return thisJobRecord.getKey();
}
/**
* Returns the Key uniquely identifying the Pipeline that this job is a member
* of. This is the same as the Key of the root Job of the Pipeline.
*
* @return the Key uniquely identifying the Pipeline that this job is a member
* of
*/
public Key getPipelineKey() {
return thisJobRecord.getRootJobKey();
}
/**
* Allows a job to set it's status console URL.
* The Pipeline UI displays the page at this URL in an iframe.
*
* To set this before the job runs use {@link JobSetting.StatusConsoleUrl}
*/
protected void setStatusConsoleUrl(String url) {
thisJobRecord.setStatusConsoleUrl(url);
}
protected String getStatusConsoleUrl() {
return thisJobRecord.getStatusConsoleUrl();
}
protected String getOnQueue() {
return thisJobRecord.getQueueSettings().getOnQueue();
}
protected String getOnBackend() {
return thisJobRecord.getQueueSettings().getOnBackend();
}
protected String getOnModule() {
return thisJobRecord.getQueueSettings().getOnModule();
}
/**
* Returns the job's display name. Used for presentation purpose only.
*/
public String getJobDisplayName() {
return getClass().getName();
}
}