{
  "$schema": "https://intentius.io/chant/schemas/component/v1/component.schema.json",
  "contractVersion": "1.0.0",
  "name": "emr-job",
  "archetype": "infra",
  "dependsOn": ["jar-lib"],
  "deploy": [
    {
      "phase": "Submit",
      "steps": [
        {
          "kind": "emr-start-job-run",
          "jar": "@jar-lib.publish.uri",
          "args": ["--input", "$env.inputPath", "--output", "$env.outputPath"],
          "noRollback": "a submitted job run has no automatic undo; cancelling it does not revert data it already wrote"
        }
      ]
    },
    {
      "phase": "Verify",
      "steps": [
        { "kind": "wait-job", "runId": "@Submit.runId" }
      ]
    }
  ]
}
