Creating a task on the ESB Conductor page - 7.3

Talend Administration Center User Guide

Version
7.3
Language
English
Product
Talend Big Data
Talend Big Data Platform
Talend Data Fabric
Talend Data Integration
Talend Data Management Platform
Talend Data Services Platform
Talend ESB
Talend MDM Platform
Talend Real-Time Big Data Platform
Module
Talend Administration Center
Content
Administration and Monitoring
Last publication date
2024-02-20

Procedure

  1. Open the Windows command line or Linux terminal, and go to the following directory: ./org.talend.administrator/WEB-INF/classes.
  2. Run:
    • MetaServletCaller.bat to call the metaServlet on Windows.
    • MetaServletCaller.sh to call the metaServlet on Linux.
  3. Type in the following script to create an execution task for the Route DemoRESTRoute, which has been published into the Artifact repository:
    MetaServletCaller.bat
    --tac-url=http://localhost:8080/org.talend.administrator 
    --json-params=
    {
    "actionName":"saveEsbTask",
    "taskName":"demoREST",
    "description":"demo",
    "tag":"Mygroup",
    "repository":"snapshots",
    "featureName":"DemoRESTRoute-feature",
    "featureVersion":"0.1.0-SNAPSHOT",
    "featureType":"ROUTE",
    "runtimeContext":"Default",
    "runtimeServerName":"runtime_server",
    "runtimePropertyId":"DemoRESTRoute",
    "authPass":"admin",
    "authUser":"admin@company.com",
    "featureUrl":'mvn:org.example/DemoRESTRoute-feature/0.1.0-SNAPSHOT/xml'
    }
    The response from the Talend Administration Center server is displayed in the command lines:

    Example

    The task is displayed on the ESB Conductor page of Talend Administration Center:

    Example

    Multiple context parameters should be separated by comma(s). You should replace the parameters used in the command with what they are in real contexts.