Skip to main content

Configuring an on-premise extractor

Note

Documentation for configuring the JDBC Extractor has been migrated to Configuring on-premise JDBC Extractors.

To connect your on-premise data sources to the Celonis platform, you must configure the extractor by editing the local configuration file. This setup establishes the secure "Uplink" connection between your infrastructure and the cloud.

To edit your local configuration file:

  1. Locate and open the application-local.yml file in your extractor's installation directory.

  2. Navigate to the uplink section of the file.

  3. Configure the following parameters:

    • enabled: Add true if the extractor should be activated, false otherwise.

    • url: Add the Celonis platform team that the data is sent to. The format to use is:

      https://{team}.{cluster}.celonis.cloud/uplink/api/public/uplink
    • clientId: Add the client ID of the uplink endpoint that you have already set-up.

    • clientSecret: Add the client secret of the uplink endpoint that you have already set-up.

    • parallelThreads: Set the maximum parallel extractions limit by entering a number between 5 and 40 here.

    An example YML configuration is below:

    uplink:
      enabled: <true or false>
      url: <url for uplink>
      clientId: <client id>
      clientSecret: <client secret>
      parallelThreads: <number between 5 and 40>

Related topics