Editor

The Sling Data Platform Editor is a powerful tool for creating and editing replications. It allows you to visually build replications by incorporating an IDE like experience:

  • Live compilation of replications

  • Interactive visual editor for building replications

  • Auto-complete for source and target objects

  • Syntax highlighting for SQL and Sling

  • Validation for your replications

Sling Platform Editor

Referring to Query Files

In order to refer to query files (to avoid putting large SQL text in your replication YAML), you can specify query files that exist in your project. Always use the relative path to the file from the root of your project. For example, the file my_long_query.sql below is in folder queries in the root:

source: MY_SOURCE
target: MY_TARGET

streams:
  my_custom_stream:
    sql: 'file://queries/my_long_query.sql'

Managing Jobs

You can manage your jobs by clicking on the Jobs button on the bottom bar. This allows you to see the status of your jobs, as well as creating new jobs.

Sling Platform Editor Jobs

Using the Dev Build

You can set your job to use the latest dev build (which is a preview of the upcoming release).

Setting the env var

Job Run History

You can view the history of your jobs by clicking on the History button on the bottom bar. This allows you to see the status of your job runs, as well as details about each run.

Sling Platform Job Run Details

Last updated