Re: java.net.URISyntaxException: Relative path in absolute URI:

2016-08-05 Thread Flavio
xt: http://apache-spark-user-list.1001560.n3.nabble.com/java-net-URISyntaxException-Relative-path-in-absolute-URI-tp27466p27487.html Sent from the Apache Spark User List mailing list archive at Nabble.com. - To unsubscribe e-mail: user-unsubscr...@spark.apache.org

Re: java.net.URISyntaxException: Relative path in absolute URI:

2016-08-03 Thread Flavio
18:49 INFO TaskSchedulerImpl: Removed TaskSet 0.0, whose tasks have all completed, from pool 16/08/03 18:18:49 INFO DAGScheduler: Job 0 finished: reduce at MLUtils.scala:92, took 0.432523 s Exception in thread "main" java.lang.IllegalArgumentException: java.net.URISyntaxException

Re: java.net.URISyntaxException: Relative path in absolute URI:

2016-08-03 Thread flavio marchi
:05 AM, Flavio wrote: > > Hello everyone, > > > > I am try to run a very easy example but unfortunately I am stuck on the > > follow exception: > > > > Exception in thread "main" java.lang.IllegalArgumentException: > > java.net.URISyntaxException: Rel

Re: java.net.URISyntaxException: Relative path in absolute URI:

2016-08-03 Thread flavio marchi
owse/SPARK-15899> ? > > On Wed, Aug 3, 2016 at 11:05 AM, Flavio wrote: > >> Hello everyone, >> >> I am try to run a very easy example but unfortunately I am stuck on the >> follow exception: >> >> Exception in thread "main" java.lang.Ill

Re: java.net.URISyntaxException: Relative path in absolute URI:

2016-08-03 Thread Sean Owen
ot; java.lang.IllegalArgumentException: > java.net.URISyntaxException: Relative path in absolute URI: file: "absolute > directory" > > I was wondering if anyone got this exception trying to run the examples on > the spark git repo; actually the code I am try to run is the follow: >

Re: java.net.URISyntaxException: Relative path in absolute URI:

2016-08-03 Thread Ted Yu
java.lang.IllegalArgumentException: > java.net.URISyntaxException: Relative path in absolute URI: file: "absolute > directory" > > I was wondering if anyone got this exception trying to run the examples on > the spark git repo; actually the code I am try to run is the follow:

java.net.URISyntaxException: Relative path in absolute URI:

2016-08-03 Thread Flavio
Hello everyone, I am try to run a very easy example but unfortunately I am stuck on the follow exception: Exception in thread "main" java.lang.IllegalArgumentException: java.net.URISyntaxException: Relative path in absolute URI: file: "absolute directory" I was wonderin

Re: Relative path in absolute URI

2016-08-03 Thread Sean Owen
t.read > .format("com.databricks.spark.csv") > .option("header", "true") > .option("inferSchema", "true") > .load(path) > .show() > > java.net.URISyntaxException: Relative path in absolute URI: > file:C:/test/s

Relative path in absolute URI

2016-08-02 Thread Abhishek Ranjan
ema", "true") .load(path) .show() java.net.URISyntaxException: Relative path in absolute URI: file:C:/test/sampleApp/spark-warehouse Complete details are available here: http://stackoverflow.com/questions/38687811/not-able-to-load-file-from-hdfs-in-spark-dataframe Somehow it is picking

Re: Spark 2.0 -- spark warehouse relative path in absolute URI error

2016-07-28 Thread Tony Lane
e: Spark 2.0 -- spark warehouse relative path in absolute URI > error > To: Rohit Chaddha > Cc: "user @spark" > > > Ah, right. This wasn't actually resolved. Yeah your input on 15899 > would be welcome. See if the proposed fix helps. > > On Thu, Jul

Re: Spark 2.0 -- spark warehouse relative path in absolute URI error

2016-07-28 Thread Rohit Chaddha
>>> > -Rohit > >>> > > >>> > > >>> > > >>> > On Thu, Jul 28, 2016 at 11:51 PM, Sean Owen > wrote: > >>> >> > >>> >> IIRC that was fixed, in that this is actually an invalid URI. Use > >>> >> file:/C:/... I think. > >>> >> > >>> >> On Thu, Jul 28, 2016 at 10:47 AM, Rohit Chaddha > >>> >> wrote: > >>> >> > I upgraded from 2.0.0-preview to 2.0.0 > >>> >> > and I started getting the following error > >>> >> > > >>> >> > Caused by: java.net.URISyntaxException: Relative path in absolute > >>> >> > URI: > >>> >> > file:C:/ibm/spark-warehouse > >>> >> > > >>> >> > Any ideas how to fix this > >>> >> > > >>> >> > -Rohit > >>> > > >>> > > >> > >> > > >

Re: Spark 2.0 -- spark warehouse relative path in absolute URI error

2016-07-28 Thread Sean Owen
t; >>> > On Thu, Jul 28, 2016 at 11:51 PM, Sean Owen wrote: >>> >> >>> >> IIRC that was fixed, in that this is actually an invalid URI. Use >>> >> file:/C:/... I think. >>>

Re: Spark 2.0 -- spark warehouse relative path in absolute URI error

2016-07-28 Thread Rohit Chaddha
rote: >> >> >> >> IIRC that was fixed, in that this is actually an invalid URI. Use >> >> file:/C:/... I think. >> >> >> >> On Thu, Jul 28, 2016 at 10:47 AM, Rohit Chaddha >> >> wrote: >> >> > I upgraded from 2.0.0-preview to 2.0.0 >> >> > and I started getting the following error >> >> > >> >> > Caused by: java.net.URISyntaxException: Relative path in absolute >> URI: >> >> > file:C:/ibm/spark-warehouse >> >> > >> >> > Any ideas how to fix this >> >> > >> >> > -Rohit >> > >> > >> > >

Re: Spark 2.0 -- spark warehouse relative path in absolute URI error

2016-07-28 Thread Rohit Chaddha
n Thu, Jul 28, 2016 at 10:47 AM, Rohit Chaddha > >> wrote: > >> > I upgraded from 2.0.0-preview to 2.0.0 > >> > and I started getting the following error > >> > > >> > Caused by: java.net.URISyntaxException: Relative path in absolute URI: > >> > file:C:/ibm/spark-warehouse > >> > > >> > Any ideas how to fix this > >> > > >> > -Rohit > > > > >

Re: Spark 2.0 -- spark warehouse relative path in absolute URI error

2016-07-28 Thread Hatim Diab
e: >>>> I upgraded from 2.0.0-preview to 2.0.0 >>>> and I started getting the following error >>>> >>>> Caused by: java.net.URISyntaxException: Relative path in absolute URI: >>>> file:C:/ibm/spark-war

Re: Spark 2.0 -- spark warehouse relative path in absolute URI error

2016-07-28 Thread Sean Owen
>> wrote: >> > I upgraded from 2.0.0-preview to 2.0.0 >> > and I started getting the following error >> > >> > Caused by: java.net.URISyntaxException: Relative path in absolute URI: >> > file:C:/ibm/spark-warehouse >> > >> > Any i

Re: Spark 2.0 -- spark warehouse relative path in absolute URI error

2016-07-28 Thread Rohit Chaddha
47 AM, Rohit Chaddha > wrote: > > I upgraded from 2.0.0-preview to 2.0.0 > > and I started getting the following error > > > > Caused by: java.net.URISyntaxException: Relative path in absolute URI: > > file:C:/ibm/spark-warehouse > > > > Any ideas how to fix this > > > > -Rohit >

Re: Spark 2.0 -- spark warehouse relative path in absolute URI error

2016-07-28 Thread Sean Owen
IIRC that was fixed, in that this is actually an invalid URI. Use file:/C:/... I think. On Thu, Jul 28, 2016 at 10:47 AM, Rohit Chaddha wrote: > I upgraded from 2.0.0-preview to 2.0.0 > and I started getting the following error > > Caused by: java.net.URISyntaxException: Rela

Spark 2.0 -- spark warehouse relative path in absolute URI error

2016-07-28 Thread Rohit Chaddha
I upgraded from 2.0.0-preview to 2.0.0 and I started getting the following error Caused by: java.net.URISyntaxException: Relative path in absolute URI: file:C:/ibm/spark-warehouse Any ideas how to fix this -Rohit