<?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>question Spark submit multiple configurations in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Spark-submit-multiple-configurations/m-p/188029#M61858</link>
    <description>&lt;P&gt;The docs here same to place it in key value format &lt;A href="https://spark.apache.org/docs/1.6.1/running-on-yarn.html" target="_blank"&gt;https://spark.apache.org/docs/1.6.1/running-on-yarn.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;But unfortunately did not give a clear example I want to have 2 configurations set.&lt;/P&gt;&lt;P&gt;spark-submit --conf "spark.hadoop.parquet.enable.summary-metadata=false;spark.yarn.maxAppAttempts=1" etc..&lt;/P&gt;&lt;P&gt;Is this the correct way of doing it and if not what would be the correct way.&lt;/P&gt;&lt;P&gt;I am using spark 1.6&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
    <pubDate>Fri, 26 May 2017 21:34:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2017-05-26T21:34:25Z</dc:date>
    <item>
      <title>Spark submit multiple configurations</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Spark-submit-multiple-configurations/m-p/188029#M61858</link>
      <description>&lt;P&gt;The docs here same to place it in key value format &lt;A href="https://spark.apache.org/docs/1.6.1/running-on-yarn.html" target="_blank"&gt;https://spark.apache.org/docs/1.6.1/running-on-yarn.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;But unfortunately did not give a clear example I want to have 2 configurations set.&lt;/P&gt;&lt;P&gt;spark-submit --conf "spark.hadoop.parquet.enable.summary-metadata=false;spark.yarn.maxAppAttempts=1" etc..&lt;/P&gt;&lt;P&gt;Is this the correct way of doing it and if not what would be the correct way.&lt;/P&gt;&lt;P&gt;I am using spark 1.6&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2017 21:34:25 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Spark-submit-multiple-configurations/m-p/188029#M61858</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-05-26T21:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: Spark submit multiple configurations</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Spark-submit-multiple-configurations/m-p/188030#M61859</link>
      <description>&lt;A rel="user" href="https://community.cloudera.com/users/16464/yanks09champs.html" nodeid="16464"&gt;@elliot gimple&lt;/A&gt;&lt;P&gt; the correct way to pass multiple configuration options is to specify them individually. The following should work for your example:&lt;/P&gt;&lt;P&gt;spark-submit --conf spark.hadoop.parquet.enable.summary-metadata=false --conf spark.yarn.maxAppAttempts=1&lt;/P&gt;&lt;P&gt;As always if you like the answer please up vote the answer.&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2017 23:45:57 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Spark-submit-multiple-configurations/m-p/188030#M61859</guid>
      <dc:creator>gbrahmi</dc:creator>
      <dc:date>2017-05-26T23:45:57Z</dc:date>
    </item>
    <item>
      <title>Re: Spark submit multiple configurations</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Spark-submit-multiple-configurations/m-p/188031#M61860</link>
      <description>&lt;P&gt;I had one more question if I need the arguments to be in quotes then --conf "A" --conf "B" for the arguments doesnt work. Just curious if you happen to know how pass two arguments in quotes for the spark submit.&lt;/P&gt;&lt;P&gt;Thanks for the answer :).&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2017 23:50:53 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Spark-submit-multiple-configurations/m-p/188031#M61860</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-05-26T23:50:53Z</dc:date>
    </item>
    <item>
      <title>Re: Spark submit multiple configurations</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Spark-submit-multiple-configurations/m-p/188032#M61861</link>
      <description>&lt;P&gt;I believe single quote should work. Try --conf 'some.config' --conf 'other.config'.&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2017 23:56:47 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Spark-submit-multiple-configurations/m-p/188032#M61861</guid>
      <dc:creator>gbrahmi</dc:creator>
      <dc:date>2017-05-26T23:56:47Z</dc:date>
    </item>
    <item>
      <title>Re: Spark submit multiple configurations</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Spark-submit-multiple-configurations/m-p/285224#M61862</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The correct way to pass the multiple configurations is that it should be passed along with the --conf.&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;spark-submit --conf org.spark.metadata =false --conf spark.driver.memory=10gb&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;AK&lt;/P&gt;</description>
      <pubDate>Tue, 10 Dec 2019 07:32:53 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Spark-submit-multiple-configurations/m-p/285224#M61862</guid>
      <dc:creator>AKR</dc:creator>
      <dc:date>2019-12-10T07:32:53Z</dc:date>
    </item>
  </channel>
</rss>

