Skip to main content
Version: Current

Data Pipelines - configuring runtime

Configuring in processes.xml

Here is an example configuration for a Data Server in an application's processes.xml file.

  <process name="POSITION_DATAPIPELINES">
<groupId>POSITION</groupId>
<start>true</start>
<options>-Xmx1024m -DXSD_VALIDATE=false</options>
<module>genesis-pal-datapipeline</module>
<package>global.genesis.pipeline</package>
<script>position-datapipelines.kts</script>
<description>Management of data pipelines</description>
<language>pal</language>
</process>

For more information about the tags that can be used to set the process configuration, go to our page on processes.xml.

Configuring in service-definitions.xml

Here is a simple example of a service configuration for Data Pipelines in an application's service-definitions.xml.

  <service host="localhost" name="POSITION_DATAPIPELINES" port="11000"/>

For more information about the attributes that can be used to set the service definition configuration, go to our page on service definitions.

Note - The name for both the service and process must be the same.