<?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 Re: &amp;quot;Path does not exist&amp;quot; error message received when trying to load data from HDFS in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/quot-Path-does-not-exist-quot-error-message-received-when/m-p/285367#M211776</link>
    <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/71583"&gt;@Bindal&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Spark expects the &lt;STRONG&gt;riskfactor1.csv&lt;/STRONG&gt; file to be in hdfs path /tmp/data/ but to me it seems you have the file &lt;STRONG&gt;riskfactor1.csv&lt;/STRONG&gt; on your local filesystem &lt;STRONG&gt;/tmp/data&amp;nbsp;&amp;nbsp;&lt;/STRONG&gt;I have run the below from a sandbox&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please follow the below steps to resolve that "&lt;STRONG&gt;Path does not exist&lt;/STRONG&gt;" error. Log on the CLI on your sandbox as user root then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Switch user to hdfs&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF6600"&gt;[root@sandbox-hdp ~]# su - hdfs&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Check the current hdfs directory&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF6600"&gt;[hdfs@sandbox-hdp ~]$ hdfs dfs -ls / &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;Found 13 items &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;drwxrwxrwt+ - yarn hadoop 0 2019-10-01 18:34 /app-logs&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;drwxr-xr-x+ - hdfs hdfs 0 2018-11-29 19:01 /apps&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;drwxr-xr-x+ - yarn hadoop 0 2018-11-29 17:25 /ats&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;drwxr-xr-x+ - hdfs hdfs 0 2018-11-29 17:26 /atsv2 &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;drwxr-xr-x+ - hdfs hdfs 0 2018-11-29 17:26 /hdp&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;drwx------+ - livy hdfs 0 2018-11-29 17:55 /livy2-recovery &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;drwxr-xr-x+ - mapred hdfs 0 2018-11-29 17:26 /mapred &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;drwxrwxrwx+ - mapred hadoop 0 2018-11-29 17:26 /mr-history &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;drwxr-xr-x+ - hdfs hdfs 0 2018-11-29 18:54 /ranger &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;drwxrwxrwx+ - spark hadoop 0 2019-11-24 22:41 /spark2-history&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;drwxrwxrwx+ - hdfs hdfs 0 2018-11-29 19:01 /tmp &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;drwxr-xr-x+ - hdfs hdfs 0 2019-09-21 13:32 /user&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Create the directory in &lt;STRONG&gt;hdfs&lt;/STRONG&gt; usually under &lt;STRONG&gt;/user/xxxx&lt;/STRONG&gt; depending on the user but here we are creating a directory&lt;STRONG&gt; /tmp/data&lt;/STRONG&gt; and giving an open permission &lt;STRONG&gt;777&lt;/STRONG&gt; so any user can execute the spark&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Create directory in hdfs&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF6600"&gt;$ hdfs dfs -mkdir -p /tmp/data/&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Change permissions&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF6600"&gt;$ hdfs dfs -chmod 777 /tmp/data/&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now copy the riskfactor1.csv in the local filesystem to hdfs, here I am assuming the file is in &lt;STRONG&gt;/tmp&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF6600"&gt;[hdfs@sandbox-hdp tmp]$ hdfs dfs -copyFromLocal /tmp/riskfactor1.csv&amp;nbsp; /tmp/data&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The above copies the riskfactor1.csv from local temp to &lt;STRONG&gt;hdfs&lt;/STRONG&gt; location &lt;STRONG&gt;/tmp/data&lt;/STRONG&gt; you can validate by running the below command&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF6600"&gt;[hdfs@sandbox-hdp ]$ hdfs dfs -ls /tmp/data &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;Found 1 items &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;-rw-r--r-- 1 hdfs hdfs 0 2019-12-11 18:40 /tmp/data/riskfactor1.csv&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now you can run your spark in zeppelin it should succeed.&lt;/P&gt;&lt;P&gt;Please revert !&lt;/P&gt;</description>
    <pubDate>Wed, 11 Dec 2019 18:50:58 GMT</pubDate>
    <dc:creator>Shelton</dc:creator>
    <dc:date>2019-12-11T18:50:58Z</dc:date>
    <item>
      <title>"Path does not exist" error message received when trying to load data from HDFS</title>
      <link>https://community.cloudera.com/t5/Support-Questions/quot-Path-does-not-exist-quot-error-message-received-when/m-p/285305#M211748</link>
      <description>&lt;P&gt;I am running following command in Zeppelin.First created hive context with following code -&amp;nbsp;&lt;/P&gt;&lt;P&gt;val hiveContext = new org.apache.spark.sql.SparkSession.Builder().getOrCreate()&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;then I tried to load a file from HDFS with following code -&lt;/P&gt;&lt;P&gt;val riskFactorDataFrame = spark.read.format("csv").option("header", "true").load("hdfs:///tmp/data/riskfactor1.csv")&lt;/P&gt;&lt;P&gt;but I am getting following error message "&lt;SPAN&gt;org.apache.spark.sql.AnalysisException: Path does not exist: hdfs://sandbox-hdp.hortonworks.com:8020/tmp/data/riskfactor1.csv;&lt;/SPAN&gt;"&lt;/P&gt;&lt;P&gt;I am quite new in Hadoop. Please help me figure out what wrong I am doing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2019 03:14:30 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/quot-Path-does-not-exist-quot-error-message-received-when/m-p/285305#M211748</guid>
      <dc:creator>Bindal</dc:creator>
      <dc:date>2019-12-11T03:14:30Z</dc:date>
    </item>
    <item>
      <title>Re: "Path does not exist" error message received when trying to load data from HDFS</title>
      <link>https://community.cloudera.com/t5/Support-Questions/quot-Path-does-not-exist-quot-error-message-received-when/m-p/285367#M211776</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/71583"&gt;@Bindal&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Spark expects the &lt;STRONG&gt;riskfactor1.csv&lt;/STRONG&gt; file to be in hdfs path /tmp/data/ but to me it seems you have the file &lt;STRONG&gt;riskfactor1.csv&lt;/STRONG&gt; on your local filesystem &lt;STRONG&gt;/tmp/data&amp;nbsp;&amp;nbsp;&lt;/STRONG&gt;I have run the below from a sandbox&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please follow the below steps to resolve that "&lt;STRONG&gt;Path does not exist&lt;/STRONG&gt;" error. Log on the CLI on your sandbox as user root then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Switch user to hdfs&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF6600"&gt;[root@sandbox-hdp ~]# su - hdfs&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Check the current hdfs directory&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF6600"&gt;[hdfs@sandbox-hdp ~]$ hdfs dfs -ls / &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;Found 13 items &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;drwxrwxrwt+ - yarn hadoop 0 2019-10-01 18:34 /app-logs&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;drwxr-xr-x+ - hdfs hdfs 0 2018-11-29 19:01 /apps&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;drwxr-xr-x+ - yarn hadoop 0 2018-11-29 17:25 /ats&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;drwxr-xr-x+ - hdfs hdfs 0 2018-11-29 17:26 /atsv2 &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;drwxr-xr-x+ - hdfs hdfs 0 2018-11-29 17:26 /hdp&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;drwx------+ - livy hdfs 0 2018-11-29 17:55 /livy2-recovery &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;drwxr-xr-x+ - mapred hdfs 0 2018-11-29 17:26 /mapred &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;drwxrwxrwx+ - mapred hadoop 0 2018-11-29 17:26 /mr-history &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;drwxr-xr-x+ - hdfs hdfs 0 2018-11-29 18:54 /ranger &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;drwxrwxrwx+ - spark hadoop 0 2019-11-24 22:41 /spark2-history&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;drwxrwxrwx+ - hdfs hdfs 0 2018-11-29 19:01 /tmp &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;drwxr-xr-x+ - hdfs hdfs 0 2019-09-21 13:32 /user&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Create the directory in &lt;STRONG&gt;hdfs&lt;/STRONG&gt; usually under &lt;STRONG&gt;/user/xxxx&lt;/STRONG&gt; depending on the user but here we are creating a directory&lt;STRONG&gt; /tmp/data&lt;/STRONG&gt; and giving an open permission &lt;STRONG&gt;777&lt;/STRONG&gt; so any user can execute the spark&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Create directory in hdfs&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF6600"&gt;$ hdfs dfs -mkdir -p /tmp/data/&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Change permissions&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF6600"&gt;$ hdfs dfs -chmod 777 /tmp/data/&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now copy the riskfactor1.csv in the local filesystem to hdfs, here I am assuming the file is in &lt;STRONG&gt;/tmp&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF6600"&gt;[hdfs@sandbox-hdp tmp]$ hdfs dfs -copyFromLocal /tmp/riskfactor1.csv&amp;nbsp; /tmp/data&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The above copies the riskfactor1.csv from local temp to &lt;STRONG&gt;hdfs&lt;/STRONG&gt; location &lt;STRONG&gt;/tmp/data&lt;/STRONG&gt; you can validate by running the below command&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF6600"&gt;[hdfs@sandbox-hdp ]$ hdfs dfs -ls /tmp/data &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;Found 1 items &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;-rw-r--r-- 1 hdfs hdfs 0 2019-12-11 18:40 /tmp/data/riskfactor1.csv&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now you can run your spark in zeppelin it should succeed.&lt;/P&gt;&lt;P&gt;Please revert !&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2019 18:50:58 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/quot-Path-does-not-exist-quot-error-message-received-when/m-p/285367#M211776</guid>
      <dc:creator>Shelton</dc:creator>
      <dc:date>2019-12-11T18:50:58Z</dc:date>
    </item>
    <item>
      <title>Re: "Path does not exist" error message received when trying to load data from HDFS</title>
      <link>https://community.cloudera.com/t5/Support-Questions/quot-Path-does-not-exist-quot-error-message-received-when/m-p/285630#M211940</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/20288"&gt;@Shelton&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Great thanks for your detailed response. I have added a print screen of Ambari 'File Views'. I want to know whether it is local file system or hdfs file system. However I run commands suggested by you. But when when I tried to run following command "&lt;SPAN&gt;hdfs dfs -copyFromLocal /tmp/data/riskfactor1.csv /tmp/data" . I got the message "copyFromLocal: `/tmp/data/riskfactor1.csv': No such file or directory". I am not sure where I am doing something wrong. Thanks again for your help. Eagerly waiting for your response.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RiskFactor1.png" style="width: 999px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/25715iFED82ABBEAF2BB11/image-size/large?v=v2&amp;amp;px=999" role="button" title="RiskFactor1.png" alt="RiskFactor1.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Dec 2019 02:55:38 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/quot-Path-does-not-exist-quot-error-message-received-when/m-p/285630#M211940</guid>
      <dc:creator>Bindal</dc:creator>
      <dc:date>2019-12-16T02:55:38Z</dc:date>
    </item>
    <item>
      <title>Re: "Path does not exist" error message received when trying to load data from HDFS</title>
      <link>https://community.cloudera.com/t5/Support-Questions/quot-Path-does-not-exist-quot-error-message-received-when/m-p/285684#M211974</link>
      <description>Hi . Please try with below step :- df = spark.read.format("csv").option("header", "true").load("csvfile.csv") just remove "hdfs:///" from path and also try to create separate dir within user dir or other. then load that data and give that path with your code! Thanks HadoopHelp</description>
      <pubDate>Mon, 16 Dec 2019 13:06:18 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/quot-Path-does-not-exist-quot-error-message-received-when/m-p/285684#M211974</guid>
      <dc:creator>HadoopHelp</dc:creator>
      <dc:date>2019-12-16T13:06:18Z</dc:date>
    </item>
    <item>
      <title>Re: "Path does not exist" error message received when trying to load data from HDFS</title>
      <link>https://community.cloudera.com/t5/Support-Questions/quot-Path-does-not-exist-quot-error-message-received-when/m-p/285697#M211977</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/71583"&gt;@Bindal&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanks for sharing the screenshot. I can see from the screenshot your &lt;STRONG&gt;riskfactor&amp;nbsp;&lt;/STRONG&gt;and &lt;STRONG&gt;riskfactor1&lt;/STRONG&gt; are directories !!&amp;nbsp; not files&lt;/P&gt;&lt;P&gt;Can you double click on either of them and see the contents.&lt;/P&gt;&lt;P&gt;I have mounted an old HDP 2.6.x for illustration whatever filesystem you see under Ambari view is in HDFS.&lt;/P&gt;&lt;P&gt;Here is the local filesystem&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="002.PNG" style="width: 767px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/25724i872299F0C3B56C2D/image-size/large?v=v2&amp;amp;px=999" role="button" title="002.PNG" alt="002.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My Ambari view before the creation of the&amp;nbsp; &lt;STRONG&gt;/Bindal/data&lt;/STRONG&gt;&amp;nbsp; the equivalent to &lt;STRONG&gt;/tmp/data&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="001.PNG" style="width: 999px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/25723i3D9157EE80F7D66D/image-size/large?v=v2&amp;amp;px=999" role="button" title="001.PNG" alt="001.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created a directory&amp;nbsp; in hdfs&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="FS.PNG" style="width: 979px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/25725iF9CBC62CF3E1415C/image-size/large?v=v2&amp;amp;px=999" role="button" title="FS.PNG" alt="FS.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="bindal_directory.PNG" style="width: 999px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/25729i58B2CF2852CE276F/image-size/large?v=v2&amp;amp;px=999" role="button" title="bindal_directory.PNG" alt="bindal_directory.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Make&amp;nbsp; the&amp;nbsp; directory&amp;nbsp; this is the local fine system&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="zzzzz.PNG" style="width: 632px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/25728iC867405377608463/image-size/large?v=v2&amp;amp;px=999" role="button" title="zzzzz.PNG" alt="zzzzz.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Copy the&lt;STRONG&gt; riskfactor1.csv&lt;/STRONG&gt; from local file system&amp;nbsp; /tmp/data&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="CopyFromLocal.PNG" style="width: 999px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/25726i195DCABC30F12876/image-size/large?v=v2&amp;amp;px=999" role="button" title="CopyFromLocal.PNG" alt="CopyFromLocal.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Check the copied file in hdfs&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="bindal_copied.PNG" style="width: 999px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/25731iC87974FC529D61D9/image-size/large?v=v2&amp;amp;px=999" role="button" title="bindal_copied.PNG" alt="bindal_copied.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So a walk through from the Linux CLI as root user I&amp;nbsp; created a directory in &lt;STRONG&gt;/tmp/data&lt;/STRONG&gt; and placed the riskfactor1.csv in there then create a directory in HDFS&amp;nbsp; &lt;STRONG&gt;/Bindal/data/.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I then copied the file from the local&amp;nbsp; Linux boy to HDFS , I hope that explains the difference between local filesystem and hdfs.&lt;/P&gt;&lt;P&gt;Below is again a screenshot to show the difference&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Locaand HDFS.PNG" style="width: 793px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/25732i37C2A78C13C15309/image-size/large?v=v2&amp;amp;px=999" role="button" title="Locaand HDFS.PNG" alt="Locaand HDFS.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Once the file is in HDFS your zeppelin should run successfully, as reiterated in your screenshot you share you need to double click on &lt;STRONG&gt;riskfactor&lt;/STRONG&gt; and &lt;STRONG&gt;riskfactor1&lt;/STRONG&gt;&amp;nbsp; which are directory to see if the difference with my screenshots&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;</description>
      <pubDate>Mon, 16 Dec 2019 13:55:36 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/quot-Path-does-not-exist-quot-error-message-received-when/m-p/285697#M211977</guid>
      <dc:creator>Shelton</dc:creator>
      <dc:date>2019-12-16T13:55:36Z</dc:date>
    </item>
    <item>
      <title>Re: "Path does not exist" error message received when trying to load data from HDFS</title>
      <link>https://community.cloudera.com/t5/Support-Questions/quot-Path-does-not-exist-quot-error-message-received-when/m-p/285757#M212012</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/20288"&gt;@Shelton&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you are awesome. You are trying your best to help me. But I am just the starter, so missing the minute threads.&lt;/P&gt;&lt;P&gt;I followed the steps you have provided. But still the same issue. Pls see the screen shot. I want to gain a pinch of what you have mastered. Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Issue.png" style="width: 999px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/25742iFC44E57F38BDBC74/image-size/large?v=v2&amp;amp;px=999" role="button" title="Issue.png" alt="Issue.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Dec 2019 03:27:41 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/quot-Path-does-not-exist-quot-error-message-received-when/m-p/285757#M212012</guid>
      <dc:creator>Bindal</dc:creator>
      <dc:date>2019-12-17T03:27:41Z</dc:date>
    </item>
    <item>
      <title>Re: "Path does not exist" error message received when trying to load data from HDFS</title>
      <link>https://community.cloudera.com/t5/Support-Questions/quot-Path-does-not-exist-quot-error-message-received-when/m-p/285793#M212034</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/71583"&gt;@Bindal&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do the following steps&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF6600"&gt;sandbox-hdp login: root&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;root@sandbox-hdp.hortonworks.com's password:&lt;/FONT&gt;&lt;BR /&gt;.....&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;[root@sandbox-hdp~] mkdir -p /tmp/data&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF6600"&gt;[root@sandbox-hdp~]cd /tmp/data&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Now here you should be in /tmp/data to validate that do&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF6600"&gt;[root@sandbox-hdp~]pwd&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;copy your riskfactor1.csv to this directory using some tool win Winscp or Mobaxterm see my screenshot using winscp&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Bindal.PNG" style="width: 999px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/25747iD6EE8BABA67BEE8F/image-size/large?v=v2&amp;amp;px=999" role="button" title="Bindal.PNG" alt="Bindal.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;My question is where is riskfactor1.csv file located? If that's not clear you can upload using the ambari view first navigate to &lt;STRONG&gt;/bindal/data&lt;/STRONG&gt; and then select the upload please&amp;nbsp; see attached screenshot to upload the file from your laptop.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Bindal2.PNG" style="width: 987px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/25748iA0010F34F1DA3FA5/image-size/large?v=v2&amp;amp;px=999" role="button" title="Bindal2.PNG" alt="Bindal2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;After the successful upload, you can run your Zeppelin job and keep me posted&lt;/P&gt;</description>
      <pubDate>Tue, 17 Dec 2019 13:48:40 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/quot-Path-does-not-exist-quot-error-message-received-when/m-p/285793#M212034</guid>
      <dc:creator>Shelton</dc:creator>
      <dc:date>2019-12-17T13:48:40Z</dc:date>
    </item>
  </channel>
</rss>

