<?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 What are Spark executors that runs from the datanode machines in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/What-are-Spark-executors-that-runs-from-the-datanode/m-p/182384#M144550</link>
    <description>&lt;H1 id="toc-hId-1819916389"&gt;&lt;/H1&gt;&lt;P&gt;&lt;CODE&gt;Executor&lt;/CODE&gt; is a distributed agent that is responsible for executing &lt;A href="https://jaceklaskowski.gitbooks.io/mastering-apache-spark/spark-taskscheduler-Task.html" rel="nofollow noopener noreferrer" target="_blank"&gt;tasks&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;this is very clear&lt;/P&gt;&lt;P&gt;but  how to know if there are any issues with the executors that runs from datanode machine?  &lt;/P&gt;&lt;P&gt;I asking this question because when I am looking on the datanode machine &lt;/P&gt;&lt;P&gt; I not see any logs that represented the executors , and I not understand how to trace problems about the exectores &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;the second important quastion:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;heartbeat are sent from the executor to the driver&lt;/P&gt;&lt;P&gt;what are the logs that represented this heartbeat ? &lt;/P&gt;&lt;P&gt;how to know if there are any issue with heartbeat sending ?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="87584-capture.png" style="width: 1131px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/19168i22BF417B596C2A52/image-size/medium?v=v2&amp;amp;px=400" role="button" title="87584-capture.png" alt="87584-capture.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;H1 id="toc-hId--732240572"&gt;&lt;/H1&gt;&lt;H1 id="toc-hId-1010569763"&gt;&lt;/H1&gt;</description>
    <pubDate>Sun, 18 Aug 2019 08:54:53 GMT</pubDate>
    <dc:creator>mike_bronson7</dc:creator>
    <dc:date>2019-08-18T08:54:53Z</dc:date>
    <item>
      <title>What are Spark executors that runs from the datanode machines</title>
      <link>https://community.cloudera.com/t5/Support-Questions/What-are-Spark-executors-that-runs-from-the-datanode/m-p/182384#M144550</link>
      <description>&lt;H1 id="toc-hId-1819916389"&gt;&lt;/H1&gt;&lt;P&gt;&lt;CODE&gt;Executor&lt;/CODE&gt; is a distributed agent that is responsible for executing &lt;A href="https://jaceklaskowski.gitbooks.io/mastering-apache-spark/spark-taskscheduler-Task.html" rel="nofollow noopener noreferrer" target="_blank"&gt;tasks&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;this is very clear&lt;/P&gt;&lt;P&gt;but  how to know if there are any issues with the executors that runs from datanode machine?  &lt;/P&gt;&lt;P&gt;I asking this question because when I am looking on the datanode machine &lt;/P&gt;&lt;P&gt; I not see any logs that represented the executors , and I not understand how to trace problems about the exectores &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;the second important quastion:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;heartbeat are sent from the executor to the driver&lt;/P&gt;&lt;P&gt;what are the logs that represented this heartbeat ? &lt;/P&gt;&lt;P&gt;how to know if there are any issue with heartbeat sending ?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="87584-capture.png" style="width: 1131px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/19168i22BF417B596C2A52/image-size/medium?v=v2&amp;amp;px=400" role="button" title="87584-capture.png" alt="87584-capture.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;H1 id="toc-hId--732240572"&gt;&lt;/H1&gt;&lt;H1 id="toc-hId-1010569763"&gt;&lt;/H1&gt;</description>
      <pubDate>Sun, 18 Aug 2019 08:54:53 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/What-are-Spark-executors-that-runs-from-the-datanode/m-p/182384#M144550</guid>
      <dc:creator>mike_bronson7</dc:creator>
      <dc:date>2019-08-18T08:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: What are Spark executors that runs from the datanode machines</title>
      <link>https://community.cloudera.com/t5/Support-Questions/What-are-Spark-executors-that-runs-from-the-datanode/m-p/182385#M144551</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/26229/uribarih.html" nodeid="26229"&gt;@Michael Bronson&lt;/A&gt;&lt;/P&gt;&lt;P&gt;In yarn master mode executors will run inside a yarn container. &lt;/P&gt;&lt;P&gt;Spark will launch an Application Master that will be responsible of negotiating the containers with Yarn. Having that said only nodes running Nodemanager are eligible to run executors.  &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;First question:&lt;/STRONG&gt; The executor logs you are looking for will be part of the yarn application logs for the container running on the specific node. (yarn logs -applicationId &amp;lt;appId&amp;gt;)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Second question: &lt;/STRONG&gt;Executor will notify in case heartbeat fails to reach driver for some network problem/timeout. So this should be in the executor log that is part of the application logs. &lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;*** If you found this answer addressed your question, please take a moment to login and click the "accept" link on the answer.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Sep 2018 19:49:58 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/What-are-Spark-executors-that-runs-from-the-datanode/m-p/182385#M144551</guid>
      <dc:creator>falbani</dc:creator>
      <dc:date>2018-09-07T19:49:58Z</dc:date>
    </item>
  </channel>
</rss>

