Skip to content

Latest commit

 

History

History
83 lines (45 loc) · 4.04 KB

File metadata and controls

83 lines (45 loc) · 4.04 KB
path title description
batch-developer-guides/getting-started/task/
Task Processing
Create and deploy a simple Task pipeline using a prebuilt Task application on your local machine

Getting Started with Task Processing

In this guide, we create a simple task definition and launch the task.

The starting point is to use the Spring Cloud Task App Starters, which provide a set of task applications. Specifically, we use the provided timestamp application, which is basically a hello-world-style application that logs the current timestamp. For this guide, we assume that the respective timestamp task application has already been imported and registered with Spring Cloud Data Flow, as described in the Installation guide.

SCDF Task Lifecycle

Creating the Task

To create a task:

  1. In the menu, click Tasks.

  2. Click the Create Task(s) button.

    The screen changes to the following:

    Create Tasks Page

  3. In the text area, type timestamp. This creates a simple task definition that uses the Timestamp task application. The following image shows the Timestamp application:

    Timestamp Task Definition

    Alternatively, you could have also dragged the Timestamp application from the apps palette on the left to the Flo canvas and connected START and END with the task application.

  4. Click Create Task.

  5. Enter timestamp-task as the name, as the following image shows:

    Timestamp Task Definition - Enter Name

  6. Click the Create the task button.

    The Task Definitions page appears and lists the created definition (timestamp-task), as the following image shows:

    Timestamp Task Definition List

Running the Task

Now that you have defined a task definition, you can run it. To do so:

  1. Click the "play" ("Launch task" if you hover over it) button next to the timestamp-task definition that you have created in the previous section, as the following image shows:

    Launch Timestamp Task Definition

    The UI lets you provide additional:

    • Arguments: Any properties that need to be passed as command line arguments.
    • Parameters: Additional properties meant for a TaskLauncher.

    Launch Task - Provide Arguments or Parameters

  2. As we do not need to provide additional argument or parameters, click the Launch the task button. The UI returns to the task definitions page, as the following image shows:

    Task Definitions List with Successful Task Execution

After a few moments, the task definition should show a status of "COMPLETE". You may need to press the Refresh button to see the updated status.

Verifying the Output

To verify that the output is what you expect:

  1. Click on the Executions tab, as the following image shows:

    Task Execution List with Successful Task Execution

    You can see your task application with an exit code of 0, indicating a successful execution.

  2. Click on the Show details button to see even more details, as the following image shows:

    Task Execution Details with Successful Task Execution

If you would also like to see the logged timestamp and you use Spring Cloud Data Flow locally, you can access the log files in the temporary directory (which is defined by java.io.tmpdir). You should find a file named stdout.log with contents similar to the following:

Task Definitions List with Successful Task Execution