Updated on 2022-08-17 GMT+08:00

IF Statements

When developing and orchestrating jobs in DataArts Factory, you can use IF statements to determine the branch to execute.

This section describes how to use IF statements in the following scenarios:

IF statements use EL expressions. You can select EL expressions and follow the instruction in this section to develop jobs.

For details about how to use EL expressions, see EL Expressions.

Determining the IF Statement Branch to Be Executed Based on the Execution Status of the Previous Node

Scenario

Generally, you can determine the IF statement branch to be executed based on whether the previous CDM node is successfully executed. For details on how to set IF statements, see Figure 1.

Figure 1 Example job

Configuration Method

  1. Log in to the DataArts Studio console, locate the target DataArts Studio instance, and click Access on the instance card.
  2. Click the Workspaces tab. In the workspace list, locate the target workspace and click DataArts Factory. The DataArts Factory console is displayed.
  3. On the Develop Job page, create a job, drag a CDM node and two Dummy nodes and drop them on the canvas in the right pane. Click and hold to connect the CDM node to the Dummy nodes, as shown in Figure 1. Set the Failure Policy for the CDM node to Go to the next node.
  4. Right-click the connection line and select Set Condition. In the Edit EL Expression dialog box, enter the IF statement in the text box.

    Each statement branch requires an IF statement. The IF statement is a ternary expression based on the EL expression syntax. If the result of the ternary expression is true, subsequent nodes will be connected. Otherwise, subsequent nodes will be skipped.

    In this demo, the #{Job.getNodeStatus("node_name")} EL expression is used to obtain the execution status of a specified node. If the execution is successful, success is returned; otherwise, fail is returned. In this example, the IF statement expressions are as follows:

    • The IF statement expression for branch A is #{(Job.getNodeStatus("CDM")) == "success" ?. "true" : "false"}
    • The IF statement expression for branch B is #{(Job.getNodeStatus("CDM")) == "fail" ?. "true" : "false"}
    After entering the IF statement expression, you can select either Skip all subsequent nodes or Skip the next node for Failure Policy. After the configuration is complete, click OK to save the job.
    Figure 2 Configuring a failure policy

  5. Click Test to test the job and view the execution result on the Monitor Instance page.
  6. After the job is executed, view the job instance running result on the Monitor Instance page. The execution result meets the expectation. If the execution result is fail, branch A is skipped and branch B is executed.

    Figure 3 Job execution result

Determining the IF Statement Branch to Be Executed Based on the Execution Result of the Previous Node

Scenario Description

Scenario: Use the execution result of the select statement on the HIVE SQL node as a parameter to determine the IF statement branch to be executed.

The execution result of the select statement on the HIVE SQL node is a two-dimensional array. To obtain the values in the array, use the EL expression #{Loop.dataArray[][]}. Currently, only the For Each node supports this expression. Therefore, you need to connect the HIVE SQL node to a For Each node. Figure 4 shows the job orchestration.

Figure 4 Example job

Key configurations of the For Each node are as follows:

  • Dataset: Enter the execution result of the select statement on the HIVE SQL node. Use the #{Job.getNodeOutput('HIVE')} expression, where HIVE is the name of the previous node.
  • Job Running Parameter: Enter the parameter defined in the sub-job. Transfer the output of the previous node of the main job to the sub-job for use. The variable name is result, and its value is a column in the dataset. The EL expression #{Loop.dataArray[0][0]} is used.

The sub-job selected on the For Each node determines the IF statement branch to be executed based on the job running parameter transferred from the For Each node. Figure 5 shows the job orchestration.

Figure 5 Example sub-job

The IF statement is the key configuration of the subjob. This example uses the expression ${result} to obtain the value of the job parameter.

Do not use the #{Job.getParam("job_param_name")} EL expression because this expression can only obtain the values of the parameters configured in the current job, but cannot obtain the parameter values transferred from the parent job or the global variables configured in the workspace. The expression only works for the current job.

To obtain the parameter values passed from the parent job and the global variables configured for the workspace, you are advised to use the ${job_param_name} expression.

Configuration Method

Developing a Subjob

  1. Log in to the DataArts Studio console, locate the target DataArts Studio instance, and click Access on the instance card.
  2. Click the Workspaces tab. In the workspace list, locate the target workspace and click DataArts Factory. The DataArts Factory console is displayed.
  3. On the Develop Job page, create a data development subjob named foreach. Drag four Dummy nodes and drop them on the canvas, click and hold to connect them, as shown in Figure 5.
  4. Right-click the connection line and select Set Condition. In the Edit EL Expression dialog box, enter the IF statement in the text box.

    Each statement branch requires an IF statement. The IF statement is a ternary expression based on the EL expression syntax. If the result of the ternary expression is true, subsequent nodes will be connected. Otherwise, subsequent nodes will be skipped.

    • For the >5 branch, the IF statement expression is #{${result} > 5 ? "true" : "false"}.
    • For the =5 branch, the IF statement expression is #{${result} == 5 ? "true" : "false"}.
    • For the <5 branch, the IF statement expression is #{${result} < 5 ? "true" : "false"}.

    After entering the IF statement expression, you can select either Skip all subsequent nodes or Skip the next node for Failure Policy.

  5. Configure job parameters. Set the parameter name to result. This parameter is only used by the For Each node in the main job testif to identify subjob parameters. You do not need to set the parameter value.

    Figure 6 Configuring job parameters

  6. Save the job.

Developing a Job

  1. On the Develop Job page, create a data development job named testif. Drag a HIVE SQL node and a For Each node and drop them on the canvas. Click and hold to connect the nodes, as shown in Figure 4.
  2. Configure properties for the HIVE SQL node. Reference the following SQL script (there is no special requirement for other properties):

    SELECT count(*) FROM student // Count from the student table. The script execution result is a two-dimensional array.
    Figure 7 HIVE SQL script execution result

  3. Configure properties for the For Each node.

    • Subjob in a Loop: Select foreach, the subjob that has been developed.
    • Dataset: Enter the execution result of the select statement on the HIVE SQL node. Use the #{Job.getNodeOutput('HIVE')} expression, where HIVE is the name of the previous node.
    • Job Running Parameter: Enter the parameter defined in the sub-job. Transfer the output of the previous node of the main job to the sub-job for use. The variable name is result (parameter name of the subjob), and its value is a column in the dataset. The EL expression #{Loop.dataArray[0][0]} is used.
    Figure 8 Properties of the For Each node

  4. Save the job.

Testing the Main Job

  1. Click Test above the main job canvas to test the job. After the main job is executed, the subjob is automatically invoked through the For Each node and executed.
  2. In the navigation pane on the left, choose Monitor Instance to view the job execution result.
  3. After the job is executed, view the execution result of the subjob foreach on the Monitor Instance page. The execution result meets the expectation. Currently, the execution result of the Hive SQL statement is 1. Therefore, the >5 and =5 branches are skipped, and the <5 branch is successfully executed.

    Figure 9 Execution result of the subjob

Configuring the Policy for Executing a Node with Multiple IF Statements

If the execution of a node depends on multiple IF statements, the policy for executing the node can be AND or OR.

If you choose the OR policy, the node will be executed if any one of the IF statements is met.

If you choose the AND policy, the node will be executed only if all of the IF statements are met.

If you choose neither, the OR policy will be used.

Figure 10 A job with multiple IF statements

Configuration Method

Configure the execution policy.

  1. Log in to the DataArts Studio console, locate the target DataArts Studio instance, and click Access on the instance card.
  2. Click the Workspaces tab. In the workspace list, locate the target workspace and click DataArts Factory. The DataArts Factory console is displayed.
  3. On the DataArts Factory console, choose Configuration > Configure > Default Configuration.
  4. Select AND or OR for Multi-IF Policy.
  5. Click Save.

Develop a job.

  1. On the Develop Job page, create a data development job.
  2. Drag three DWS SQL operators as parent nodes and one Python operator as a child node to the canvas. Click and hold to connect the nodes to orchestrate the job shown in Figure 10.
  3. Right-click the connection line and select Set Condition. In the Edit EL Expression dialog box, enter the IF statement in the text box.

    Each statement branch requires an IF statement. The IF statement is a ternary expression based on the EL expression syntax.

    • The IF statement expression for the test1 node is #{(Job.getNodeStatus("test1")) == "success" ? "true" : "false"},
    • The IF statement expression for the test2 node is #{(Job.getNodeStatus("test2")) == "success" ? "true" : "false"},
    • The IF statement expression for the test3 node is #{(Job.getNodeStatus("test3")) == "success" ? "true" : "false"},

    The expression of each node is determined using the IF statement based on the execution status of the previous node.

    After entering the IF statement expression, you can select either Skip all subsequent nodes or Skip the next node for Failure Policy.

Test the job.

  1. Click Save above the canvas to save the job.
  2. Click Test above the canvas to test the job.

    If test1 is executed successfully, the corresponding IF statement is true.

    If test2 is executed successfully, the corresponding IF statement is true.

    If test3 fails to be executed, the corresponding IF statement is false.

    If Multi-IF Policy is set to OR, the showtables node is executed and the job execution is complete.

    Figure 11 How the job runs if Multi-IF Policy is OR

    If Multi-IF Policy is set to AND, the showtables node is skipped and the job execution is complete.

    Figure 12 How the job runs if Multi-IF Policy is AND