JAR File
  • 23 Dec 2022
  • 1 Minute to read
  • Dark
    Light

JAR File

  • Dark
    Light

Article summary

Parameters

  • Flow file - (required) - fully qualified path to the Flow file.
  • Run Profile name - (required) - name of the Run Profile to execute.
  • Parameter Set name - (optional) - name of the Parameter Set to use during execution.
  • Notifications - (optional) - toggles email notifications, enabled by default (to disable add the following as the last parameter: "-n=false")

Running a Run Profile as a Job with email notifications

Without a parameter set

Syntax:

java -jar EuclidStudio.jar [flow file] [run profile name]

Example:

java -jar EuclidStudio.jar "c:\temp\sample.flx" "default"

With a parameter set

Syntax:

java -jar EuclidStudio.jar [flow file] [run profile name] [parameter set name]

Example:

java -jar EuclidStudio.jar "c:\temp\sample.flx" "default" "set1"

Running a Run Profile as a Job without email notifications

Without a parameter set

Syntax:

java -jar EuclidStudio.jar [flow file] [run profile name] [no notifications flag]

Example:

java -jar EuclidStudio.jar "c:\temp\sample.flx" "default" "-n=false"

With a parameter set

Syntax:

java -jar EuclidStudio.jar [flow file] [run profile name] [parameter set name] [no notifications flag]

Example:

java -jar EuclidStudio.jar "c:\temp\sample.flx" "default" "set1" "-n=false"

Was this article helpful?

What's Next