<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Schedule job runs with different parameters? in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/schedule-job-runs-with-different-parameters/m-p/23983#M16636</link>
    <description>&lt;P&gt;Is it possible to schedule different runs for job with parameters? I have a notebook that generates data based on the supplied parameter but would like to schedule runs instead of manually starting them. I assume that this would be possible using the REST API but would like to avoid having my token in plaintext. Would git integration have something for this?&lt;/P&gt;</description>
    <pubDate>Thu, 03 Nov 2022 14:33:10 GMT</pubDate>
    <dc:creator>129876</dc:creator>
    <dc:date>2022-11-03T14:33:10Z</dc:date>
    <item>
      <title>Schedule job runs with different parameters?</title>
      <link>https://community.databricks.com/t5/data-engineering/schedule-job-runs-with-different-parameters/m-p/23983#M16636</link>
      <description>&lt;P&gt;Is it possible to schedule different runs for job with parameters? I have a notebook that generates data based on the supplied parameter but would like to schedule runs instead of manually starting them. I assume that this would be possible using the REST API but would like to avoid having my token in plaintext. Would git integration have something for this?&lt;/P&gt;</description>
      <pubDate>Thu, 03 Nov 2022 14:33:10 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/schedule-job-runs-with-different-parameters/m-p/23983#M16636</guid>
      <dc:creator>129876</dc:creator>
      <dc:date>2022-11-03T14:33:10Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule job runs with different parameters?</title>
      <link>https://community.databricks.com/t5/data-engineering/schedule-job-runs-with-different-parameters/m-p/23985#M16638</link>
      <description>&lt;P&gt;Yes I am aware of these. I wanted to know if I can schedule tasks with different parameters, is there any functionality in Databricks that would allow this?&lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2022 13:46:57 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/schedule-job-runs-with-different-parameters/m-p/23985#M16638</guid>
      <dc:creator>129876</dc:creator>
      <dc:date>2022-11-04T13:46:57Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule job runs with different parameters?</title>
      <link>https://community.databricks.com/t5/data-engineering/schedule-job-runs-with-different-parameters/m-p/23987#M16640</link>
      <description>&lt;P&gt;I want to schedule this process daily. To run automatically. &lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2022 17:28:07 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/schedule-job-runs-with-different-parameters/m-p/23987#M16640</guid>
      <dc:creator>129876</dc:creator>
      <dc:date>2022-11-04T17:28:07Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule job runs with different parameters?</title>
      <link>https://community.databricks.com/t5/data-engineering/schedule-job-runs-with-different-parameters/m-p/23989#M16642</link>
      <description>&lt;P&gt;Not really... I have different values for a single parameter within a notebook. Can I schedule under a single job, runs for each different value?&lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2022 22:47:42 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/schedule-job-runs-with-different-parameters/m-p/23989#M16642</guid>
      <dc:creator>129876</dc:creator>
      <dc:date>2022-11-04T22:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: Schedule job runs with different parameters?</title>
      <link>https://community.databricks.com/t5/data-engineering/schedule-job-runs-with-different-parameters/m-p/23984#M16637</link>
      <description>&lt;P&gt;You can pass parameters for your task. Each task type has different requirements for formatting and passing the parameters. &lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.databricks.com/workflows/jobs/jobs.html#create-a-job" alt="https://docs.databricks.com/workflows/jobs/jobs.html#create-a-job" target="_blank"&gt;https://docs.databricks.com/workflows/jobs/jobs.html#create-a-job&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REST API can also pass parameters fro jobs. Tokens replace passwords in an authentication flow and should be protected like passwords. To protect tokens, Databricks recommends that you store tokens in:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://docs.databricks.com/security/secrets/index.html" alt="https://docs.databricks.com/security/secrets/index.html" target="_blank"&gt;Secret management&lt;/A&gt;&amp;nbsp;and retrieve tokens in notebooks using the&amp;nbsp;&lt;A href="https://docs.databricks.com/dev-tools/databricks-utils.html#dbutils-secrets" alt="https://docs.databricks.com/dev-tools/databricks-utils.html#dbutils-secrets" target="_blank"&gt;Secrets utility (dbutils.secrets)&lt;/A&gt;.&lt;/LI&gt;&lt;LI&gt;A local key store and use the&amp;nbsp;&lt;A href="https://pypi.org/project/keyring/" alt="https://pypi.org/project/keyring/" target="_blank"&gt;Python keyring&lt;/A&gt;&amp;nbsp;package to retrieve tokens at runtime.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Please refer: &lt;A href="https://docs.databricks.com/dev-tools/api/latest/authentication.html" alt="https://docs.databricks.com/dev-tools/api/latest/authentication.html" target="_blank"&gt;https://docs.databricks.com/dev-tools/api/latest/authentication.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, you can store the tokens in .netrc file and use them in curl : &lt;A href="https://docs.databricks.com/dev-tools/api/latest/authentication.html#store-tokens-in-a-netrc-file-and-use-them-in-curl" alt="https://docs.databricks.com/dev-tools/api/latest/authentication.html#store-tokens-in-a-netrc-file-and-use-them-in-curl" target="_blank"&gt;https://docs.databricks.com/dev-tools/api/latest/authentication.html#store-tokens-in-a-netrc-file-and-use-them-in-curl&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For GIT integration please refer: &lt;A href="https://docs.databricks.com/repos/index.html" alt="https://docs.databricks.com/repos/index.html" target="_blank"&gt;https://docs.databricks.com/repos/index.html&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let us know if this helps. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2022 07:51:42 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/schedule-job-runs-with-different-parameters/m-p/23984#M16637</guid>
      <dc:creator>Debayan</dc:creator>
      <dc:date>2022-11-04T07:51:42Z</dc:date>
    </item>
  </channel>
</rss>

