Repository: helix
Updated Branches:
  refs/heads/master 665beb21d -> ab1bf2923


Add Tutorial for Task Framework

Add Tutorial for Task Framework


Project: http://git-wip-us.apache.org/repos/asf/helix/repo
Commit: http://git-wip-us.apache.org/repos/asf/helix/commit/ab1bf292
Tree: http://git-wip-us.apache.org/repos/asf/helix/tree/ab1bf292
Diff: http://git-wip-us.apache.org/repos/asf/helix/diff/ab1bf292

Branch: refs/heads/master
Commit: ab1bf292351e850a985bbbc78739a65ea6706518
Parents: 665beb2
Author: Junkai Xue <[email protected]>
Authored: Mon Nov 14 18:31:38 2016 -0800
Committer: Junkai Xue <[email protected]>
Committed: Tue Nov 15 13:11:40 2016 -0800

----------------------------------------------------------------------
 website/0.6.6/src/site/markdown/Tutorial.md     |   1 +
 .../site/markdown/tutorial_task_framework.md    | 315 +++++++++++++++++++
 2 files changed, 316 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/helix/blob/ab1bf292/website/0.6.6/src/site/markdown/Tutorial.md
----------------------------------------------------------------------
diff --git a/website/0.6.6/src/site/markdown/Tutorial.md 
b/website/0.6.6/src/site/markdown/Tutorial.md
index 1815ae3..22e7f8a 100644
--- a/website/0.6.6/src/site/markdown/Tutorial.md
+++ b/website/0.6.6/src/site/markdown/Tutorial.md
@@ -49,6 +49,7 @@ Convention: we first cover the _basic_ approach, which is the 
easiest to impleme
 11. [Admin Interface](./tutorial_admin.html)
 12. [YAML Cluster Setup](./tutorial_yaml.html)
 13. [Helix Agent (for non-JVM systems)](./tutorial_agent.html)
+14. [Task Framework](./tutorial_task_framework.html)
 
 ### Preliminaries
 

http://git-wip-us.apache.org/repos/asf/helix/blob/ab1bf292/website/0.6.6/src/site/markdown/tutorial_task_framework.md
----------------------------------------------------------------------
diff --git a/website/0.6.6/src/site/markdown/tutorial_task_framework.md 
b/website/0.6.6/src/site/markdown/tutorial_task_framework.md
new file mode 100644
index 0000000..b06c05c
--- /dev/null
+++ b/website/0.6.6/src/site/markdown/tutorial_task_framework.md
@@ -0,0 +1,315 @@
+<!---
+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.
+-->
+
+<head>
+  <title>Tutorial - Task Framework</title>
+</head>
+
+## [Helix Tutorial](./Tutorial.html): Task Framework
+
+Task framework, in Helix, provides executable task scheduling and workflow 
management. In Helix, three layers of task abstraction have been offered to 
user for defining their logics of dependencies. The graph shows the 
relationships between three layers. Workflow can contain multiple jobs. One job 
can depend on other one. Multiple tasks, including same task different 
partition and different task different partition, can be added in one job.
+Task framework not only can abstract three layers task logics but also helps 
doing task assignment and rebalancing. User can create a workflow (or a job 
queue) at first beginning. Then jobs can be added into workflow. Those jobs 
contain the executable tasks implemented by user. Once workflow is completed, 
Helix will schedule the works based on the condition user provided.
+
+### Key Concepts
+* Task is the basic unit in Helix task framework. It can represents the a 
single runnable logics that user prefer to execute for each partition 
(distributed units).
+* Job defines one time operation across all the partitions. It contains 
multiple Tasks and configuration of tasks, such as how many tasks, timeout per 
task and so on.
+* Workflow is directed acyclic graph represents the relationships and running 
orders of Jobs. In addition, a workflow can also provide customized 
configuration, for example, Job dependencies.
+* JobQueue is another type of Workflow. Different from normal one, JobQueue is 
not terminated until user kill it. Also JobQueue can keep accepting newly 
coming jobs.
+
+### Implement your task
+
+#### Task interface
+
+The task interface contains two methods: run and cancel. User can implement 
his or her own logic in run function and cancel / roll back logic in cancel 
function.
+
+```
+public class MyTask implements Task {
+  @Override
+  TaskResult run() {
+    // Task logic
+  }
+ 
+  @Override
+  void cancel() {
+    // Cancel logic
+  }
+}
+```
+
+#### TaskConfig
+
+In helix, usually an object config represents the abstraction of that object, 
such as TaskConfig, JobConfig and WorkflowConfig. TaskConfig contains 
configurable task conditions. TaskConfig does not require to have any input to 
create a new object:
+
+```
+TaskConfig taskConfig = new TaskConfig(null, null, null, null);
+```
+
+For these four fields:
+* Command: The task command, will use Job command if this is null
+* ID: Task unique id, will generate a new ID for this task if input is null
+* TaskTargetPartition: Target partition of a target. Could be null
+* ConfigMap: Task property key-value map containing all other property stated 
above, such as command, ID.
+
+#### Share content across tasks and jobs
+
+Task framework also provides a feature that user can store the key-value data 
per task, job and workflow. The content stored at workflow layer can shared by 
different jobs belong to this workflow. Similarly content persisted at job 
layer can shared by different tasks nested in this job. Currently, user can 
extend the abstract class UserContentStore and use two methods putUserContent 
and getUserContent. It will similar to hash map put and get method except a 
Scope.  The Scope will define which layer this key-value pair to be persisted.
+
+```
+public class MyTask extends UserContentStore implements Task {
+  @Override
+  TaskResult run() {
+    putUserContent("KEY", "WORKFLOWVALUE", SCOPE.WORKFLOW);
+    putUserContent("KEY", "JOBVALUE", SCOPE.JOB);
+    putUserContent("KEY", "TASKVALUE", SCOPE.TASK);
+    String taskValue = getUserContent("KEY", SCOPE.TASK);
+  }
+ ...
+}
+```
+
+#### Return task results
+
+User can define the TaskResult for a task once it is at final stage (complete 
or failed). The TaskResult contains two fields: status and info. Status is 
current Task Status including COMPLETED, CANCELLED, FAILED and FATAL_FAILED. 
The difference between FAILED and FATAL_FAILED is that once the task defined as 
FATAL_FAILED, helix will not do the retry for this task and abort it. The other 
field is information, which is a String type. User can pass any information 
including error message, description and so on.
+
+```
+TaskResult run() {
+    ....
+    return new TaskResult(TaskResult.Status.FAILED, "ERROR MESSAGE OR OTHER 
INFORMATION");
+}
+```
+
+#### Task Retry and Abort
+
+Helix provides retry logics to users. User can specify the how many times 
allowed to tolerant failure of tasks under a job. It is a method will be 
introduced in Following Job Section. Another choice offered to user that if 
user thinks a task is very critical and do not want to do the retry once it is 
failed, user can return a TaskResult stated above with FATAL_FAILED status. 
Then Helix will not do the retry for that task.
+
+```
+return new TaskResult(TaskResult.Status.FATAL_FAILED, "DO NOT WANT TO RETRY, 
ERROR MESSAGE");
+```
+
+#### TaskDriver
+
+All the control operation related to workflow and job are based on TaskDriver 
object. TaskDriver offers several APIs to controller, modify and track the 
tasks. Those APIs will be introduced in each section when they are necessary. 
TaskDriver object can be created either by HelixManager or ZkClient with 
cluster name:
+
+```
+HelixManager manager = new ZKHelixManager(CLUSTER_NAME, INSTANCE_NAME, 
InstanceType.PARTICIPANT, ZK_ADDRESS);
+TaskDriver taskDriver1 = new TaskDriver(manager);
+ 
+TaskDriver taskDriver2 = new TaskDriver(zkclient, CLUSTER_NAME);
+```
+
+#### Propagate Task Error Message to Helix
+
+When task encounter an error, it could be returned by TaskResult. 
Unfortunately, user can not get this TaskResult object directly. But Helix 
provides error messages persistent. Thus user can fetch the error messages from 
Helix via TaskDriver, which introduced above. The error messages will be stored 
in Info field per Job. Thus user have to get JobContext, which is the job 
status and result object.
+
+```
+taskDriver.getJobContext("JOBNAME").getInfo();
+```
+
+### Creating a Workflow
+
+#### One-time Workflow
+
+As common use, one-time workflow will be the default workflow as user created. 
The first step is to create a WorkflowConfig.Builder object with workflow name. 
Then all configs can be set in WorkflowConfig.Builder. Once the configuration 
is done, WorkflowConfig object can be got from WorkflowConfig.Builder object.
+We have two rules to validate the Workflow configuration:
+* Expiry time should not be less than 0
+* Schedule config should be valid either one-time or a positive interval 
magnitude (Recurrent workflow)
+Example:
+
+```
+Workflow.Builder myWorkflowBuilder = new Workflow.Builder("MyWorkflow");
+myWorkflowBuilder.setExpiry(5000L);
+Workflow myWorkflow = myWorkflowBuilder.build();
+```
+
+#### Recurrent Workflow
+
+Recurrent workflow is the workflow scheduled periodically. The only config 
different from One-time workflow is to set a recurrent ScheduleConfig. There 
two methods in ScheduleConfig can help you to create a ScheduleConfig object: 
recurringFromNow and recurringFromDate. Both of them needs recurUnit (time unit 
for recurrent) and recurInteval (magnitude of recurrent interval). Here's the 
example:
+
+```
+ScheduleConfig myConfig1 = ScheduleConfig.recurringFFromNow(TimeUnit.MINUTES, 
5L);
+ScheduleConfig myConfig2 = 
ScheduleConfig.recurringFFromDate(Calendar.getInstance.getTime, TimeUnit.HOURS, 
10L);
+```
+
+Once this schedule config is created. It could be set in the workflow config:
+
+```
+Workflow.Builder myWorkflowBuilder = new Workflow.Builder("MyWorkflow");
+myWorkflowBuilder.setExpiry(2000L)
+                 
.setScheduleConfig(ScheduleConfig.recurringFromNow(TimeUnit.DAYS, 5));
+Workflow myWorkflow = myWorkflowBuilder.build();
+```
+
+#### Start a Workflow
+
+Start a workflow is just using taskdrive to start it. Since this is an async 
call, after start the workflow, user can keep doing actions.
+
+```
+taskDriver.start(myWorkflow);
+```
+
+#### Stop a Workflow
+
+Stop workflow can be executed via TaskDriver:
+
+```
+taskDriver.stop(myWorkflow);
+```
+
+#### Resume a Workflow
+
+Once the workflow is stopped, it does not mean the workflow is gone. Thus user 
can resume the workflow that has been stopped. Using TaskDriver resume the 
workflow:
+
+```
+taskDriver.resume(myWorkflow);
+```
+
+#### Delete a Workflow
+
+Simliar to start, stop and resume, delete operation is supported by TaskDriver.
+
+```
+taskDriver.delete(myWorkflow);
+```
+
+#### Add a Job
+
+WARNING: Job can only be added to WorkflowConfig.Builder. Once WorkflowConfig 
built, no job can be added! For creating a Job, please refering following 
section (Create a Job)
+
+```
+myWorkflowBuilder.addJob("JobName", jobConfigBuilder);
+```
+
+#### Add a Job dependency
+
+Jobs can have dependencies. If one job2 depends job1, job2 will not be 
scheduled until job1 finished.
+
+```
+myWorkflowBuilder.addParentChildDependency(ParentJobName, ChildJobName);
+```
+
+#### Additional Workflow Options
+
+| Additional Config Options | Detail |
+| ------------------------- | ------ |
+| _setJobDag(JobDag v)_ | If user already defined the job DAG, it could be set 
with this method. |
+| _setExpiry(long v, TimeUnit unit)_ | Set the expiration time for this 
workflow. |
+| _setFailureThreshold(int failureThreshold)_ | Set the failure threshold for 
this workflow, once job failures reach this number, the workflow will be 
failed. |
+| _setWorkflowType(String workflowType)_ | Set the user defined workflowType 
for this workflow. |
+| _setTerminable(boolean isTerminable)_ | Set the whether this workflow is 
terminable or not. |
+| _setCapacity(int capacity)_ | Set the number of jobs that workflow can hold 
before reject further jobs. Only used when workflow is not terminable. |
+| _setTargetState(TargetState v)_ | Set the final state of this workflow. |
+
+### Creating a Queue
+
+Job queue is another shape of workflow. Here listed different between a job 
queue and workflow:
+
+| Property | Workflow | Job Queue |
+| -------- | -------- | --------- |
+| Existing time | Workflow will be deleted after it is done. | Job queue will 
be there until user delete it. |
+| Add jobs | Once workflow is build, no job can be added. | Job queue can keep 
accepting jobs. |
+| Parallel run | Allows parallel run for jobs without dependencies | No 
parallel run allowed except setting _ParallelJobs_ |
+
+#### Add Tasks
+
+There are two ways of adding tasks:
+* Add by TaskConfig. Tasks can be added via adding TaskConfigs. User can 
create a List of TaskConfigs or add TaskConfigMap, which is a task id to 
TaskConfig mapping.
+
+```
+TaskConfig taskCfg = new TaskConfig(null, null, null, null);
+List<TaskConfig> taskCfgs = new ArrayList<TaskConfig>();
+myJobCfg.addTaskConfigs(taskCfgs);
+ 
+Map<String, TaskConfig> taskCfgMap = new HashMap<String, TaskConfig>();
+taskCfgMap.put(taskCfg.getId(), taskCfg);
+myJobCfg.addTaskConfigMap(taskCfgMap);
+```
+
+* Add by Job command. If user does not want to specify each TaskConfig, we can 
create identical tasks based on Job command with number of tasks.
+
+```
+myJobCfg.setCommand("JobCommand").setNumberOfTasks(10);
+```
+WARNING: Either user provides TaskConfigs / TaskConfigMap or both of Job 
command and number tasks (except Targeted Job, refer following section) . 
Otherwise, validation will be failed.
+
+#### Generic Job
+
+Generic Job is the default job created. It does not have targeted resource. 
Thus this generic job could be assigned to one of eligble instances.
+
+#### Targeted Job
+
+Targeted Job has set up the target resource. For this kind of job, Job command 
is necessary, but number of tasks is not. The tasks will depends on the partion 
number of targeted resource. To set target resource, just put target resource 
name to JobConfig.Builder.
+
+```
+myJobCfgBuilder.setTargetResource("TargetResourceName");
+```
+
+In addition, user can specify the instance target state. For example, if user 
want to run the Task on "Master" state instance, setTargetPartitionState method 
can help to set the partition to assign to specific instance.
+
+```
+myJobCfgBuilder.setTargetPartitionState(Arrays.asList(new String[]{"Master", 
"Slave"}));
+```
+
+#### Instance Group
+
+Grouping jobs with targeted group of instances feature has been supported. 
User firstly have to define the instance group tag for instances, which means 
label some instances with specific tag. Then user can put those tags to a job 
that only would like to assigned to those instances. For example, customer data 
only available on instance 1, 2, 3. These three instances can be tagged as 
"CUSTOMER" and  customer data related jobs can set  the instance group tag 
"CUSTOMER". Thus customer data related jobs will only assign to instance 1, 2, 
3. 
+To add instance group tag, just set it in JobConfig.Builder:
+
+```
+jobCfg.setInstanceGroupTag("INSTANCEGROUPTAG");
+```
+
+#### Additional Job Options
+
+| Operation | Detail |
+| --------- | ------ |
+| _setWorkflow(String workflowName)_ | Set the workflow that this job belongs 
to |
+| _setTargetPartions(List\<String\> targetPartionNames)_ | Set list of 
partition names |
+| _setTargetPartionStates(Set\<String\>)_ | Set the partition states |
+| _setCommand(String command)_ | Set the job command |
+| _setJobCommandConfigMap(Map\<String, String\> v)_ | Set the job command 
config maps |
+| _setTimeoutPerTask(long v)_ | Set the timeout for each task |
+| _setNumConcurrentTasksPerInstance(int v)_ | Set number of tasks can 
concurrent run on same instance |
+| _setMaxAttemptsPerTask(int v)_ | Set times of retry for a task |
+| _setFailureThreshold(int v)_ | Set failure tolerance of tasks for this job |
+| _setTaskRetryDelay(long v)_ | Set the delay time before a task retry |
+| _setIgnoreDependentJobFailure(boolean ignoreDependentJobFailure)_ | Set 
whether ignore the job failure of parent job of this job |
+| _setJobType(String jobType)_ | Set the job type of this job |
+
+### Monitor the status of your job
+As we introduced the excellent util TaskDriver in Workflow Section, we have 
extra more functionality that provided to user. The user can synchronized wait 
Job or Workflow until it reaches certain STATES. The function Helix have API 
pollForJobState and pollForWorkflowState. For pollForJobState, it accepts 
arguments:
+* Workflow name, required
+* Job name, required
+* Timeout, not required, will be three minutes if user choose function without 
timeout argument. Time unit is milisecond.
+* TaskStates, at least one state. This function can accept multiple TaskState, 
will end function until one of those TaskState reaches.
+For example:
+
+```
+taskDriver.pollForJobState("MyWorkflowName", "MyJobName", 180000L, 
TaskState.FAILED, TaskState.FATAL_FAILED);
+taskDriver.pollForJobState("MyWorkflowName", "MyJobName", TaskState.COMPLETED);
+```
+
+For pollForWorkflowState, it accepts similar arguments except Job name. For 
example:
+
+```
+taskDriver.pollForWorkflowState("MyWorkflowName", 180000L, TaskState.FAILED, 
TaskState.FATAL_FAILED);
+taskDriver.pollForWorkflowState("MyWorkflowName", TaskState.COMPLETED);
+```
+
+### Workflow and Job Metrics (Operational Support)
+Currently, Helix provides Workflow and Job monitors, which is Type Defined 
aggregation. Helix will register MBeans through JMX. With respect that, if user 
using Helix controller MP, those MBeans can be extracted for stats purposed.
\ No newline at end of file

Reply via email to