[jira] [Updated] (SPARK-21996) Streaming ignores files with spaces in the file names

2018-01-16 Thread Shixiong Zhu (JIRA)

 [ 
https://issues.apache.org/jira/browse/SPARK-21996?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Shixiong Zhu updated SPARK-21996:
-
Component/s: (was: SQL)
 Structured Streaming

> Streaming ignores files with spaces in the file names
> -
>
> Key: SPARK-21996
> URL: https://issues.apache.org/jira/browse/SPARK-21996
> Project: Spark
>  Issue Type: Bug
>  Components: Structured Streaming
>Affects Versions: 2.2.0
> Environment: openjdk version "1.8.0_131"
> OpenJDK Runtime Environment (build 1.8.0_131-8u131-b11-2ubuntu1.17.04.3-b11)
> OpenJDK 64-Bit Server VM (build 25.131-b11, mixed mode)
>Reporter: Ivan Sharamet
>Priority: Major
> Attachments: spark-streaming.zip
>
>
> I tried to stream text files from folder and noticed that files inside this 
> folder with spaces in their names ignored and there are some warnings in the 
> log:
> {code}
> 17/09/13 16:15:14 WARN InMemoryFileIndex: The directory 
> file:/in/two%20two.txt was not found. Was it deleted very recently?
> {code}
> I found that this happens due to duplicate file path URI encoding (I suppose) 
> and the actual URI inside path objects looks like this 
> {{file:/in/two%2520two.txt}}.
> To reproduce this issue just place some text files with spaces in their names 
> and execute some simple streaming code:
> {code:java}
> /in
> /one.txt
> /two two.txt
> /three.txt
> {code}
> {code}
> sparkSession.readStream.textFile("/in")
>   .writeStream
>   .option("checkpointLocation", "/checkpoint")
>   .format("text")
>   .start("/out")
>   .awaitTermination()
> {code}
> The result will contain only content of files {{one.txt}} and {{three.txt}}.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org



[jira] [Updated] (SPARK-21996) Streaming ignores files with spaces in the file names

2017-09-13 Thread Ivan Sharamet (JIRA)

 [ 
https://issues.apache.org/jira/browse/SPARK-21996?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ivan Sharamet updated SPARK-21996:
--
Description: 
I tried to stream text files from folder and noticed that files inside this 
folder with spaces in their names ignored and there are some warnings in the 
log:

{code}
17/09/13 16:15:14 WARN InMemoryFileIndex: The directory file:/in/two%20two.txt 
was not found. Was it deleted very recently?
{code}

I found that this happens due to duplicate file path URI encoding (I suppose) 
and the actual URI inside path objects looks like this 
{{file:/in/two%2520two.txt}}.

To reproduce this issue just place some text files with spaces in their names 
and run simple streaming code:

{code:java}
/in
/one.txt
/two two.txt
/three.txt
{code}

{code}
sparkSession.readStream.textFile("/in")
  .writeStream
  .option("checkpointLocation", "/checkpoint")
  .format("text")
  .start("/out")
  .awaitTermination()
{code}

The result will contain only content of files {{one.txt}} and {{three.txt}}.


  was:
I tried to stream text files from folder and noticed that files inside this 
folder with spaces in their names ignored and there are some warnings in the 
log:

{code}
17/09/13 16:15:14 WARN InMemoryFileIndex: The directory file:/in/my%20file.txt 
was not found. Was it deleted very recently?
{code}

I found that this happens due to duplicate file path URI encoding (I suppose) 
and the actual URI inside path objects looks like this 
{{file:/dir/my%2520file.txt}}.

To reproduce this issue just place some text files with spaces in their names 
and run simple streaming code:

{code:java}
/in
/one.txt
/two two.txt
/three.txt
{code}

{code}
sparkSession.readStream.textFile("/in")
  .writeStream
  .option("checkpointLocation", "/checkpoint")
  .format("text")
  .start("/out")
  .awaitTermination()
{code}

The result will contain only content of files {{one.txt}} and {{three.txt}}.



> Streaming ignores files with spaces in the file names
> -
>
> Key: SPARK-21996
> URL: https://issues.apache.org/jira/browse/SPARK-21996
> Project: Spark
>  Issue Type: Bug
>  Components: SQL
>Affects Versions: 2.2.0
> Environment: openjdk version "1.8.0_131"
> OpenJDK Runtime Environment (build 1.8.0_131-8u131-b11-2ubuntu1.17.04.3-b11)
> OpenJDK 64-Bit Server VM (build 25.131-b11, mixed mode)
>Reporter: Ivan Sharamet
> Attachments: spark-streaming.zip
>
>
> I tried to stream text files from folder and noticed that files inside this 
> folder with spaces in their names ignored and there are some warnings in the 
> log:
> {code}
> 17/09/13 16:15:14 WARN InMemoryFileIndex: The directory 
> file:/in/two%20two.txt was not found. Was it deleted very recently?
> {code}
> I found that this happens due to duplicate file path URI encoding (I suppose) 
> and the actual URI inside path objects looks like this 
> {{file:/in/two%2520two.txt}}.
> To reproduce this issue just place some text files with spaces in their names 
> and run simple streaming code:
> {code:java}
> /in
> /one.txt
> /two two.txt
> /three.txt
> {code}
> {code}
> sparkSession.readStream.textFile("/in")
>   .writeStream
>   .option("checkpointLocation", "/checkpoint")
>   .format("text")
>   .start("/out")
>   .awaitTermination()
> {code}
> The result will contain only content of files {{one.txt}} and {{three.txt}}.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org



[jira] [Updated] (SPARK-21996) Streaming ignores files with spaces in the file names

2017-09-13 Thread Ivan Sharamet (JIRA)

 [ 
https://issues.apache.org/jira/browse/SPARK-21996?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ivan Sharamet updated SPARK-21996:
--
Description: 
I tried to stream text files from folder and noticed that files inside this 
folder with spaces in their names ignored and there are some warnings in the 
log:

{code}
17/09/13 16:15:14 WARN InMemoryFileIndex: The directory file:/in/two%20two.txt 
was not found. Was it deleted very recently?
{code}

I found that this happens due to duplicate file path URI encoding (I suppose) 
and the actual URI inside path objects looks like this 
{{file:/in/two%2520two.txt}}.

To reproduce this issue just place some text files with spaces in their names 
and execute some simple streaming code:

{code:java}
/in
/one.txt
/two two.txt
/three.txt
{code}

{code}
sparkSession.readStream.textFile("/in")
  .writeStream
  .option("checkpointLocation", "/checkpoint")
  .format("text")
  .start("/out")
  .awaitTermination()
{code}

The result will contain only content of files {{one.txt}} and {{three.txt}}.


  was:
I tried to stream text files from folder and noticed that files inside this 
folder with spaces in their names ignored and there are some warnings in the 
log:

{code}
17/09/13 16:15:14 WARN InMemoryFileIndex: The directory file:/in/two%20two.txt 
was not found. Was it deleted very recently?
{code}

I found that this happens due to duplicate file path URI encoding (I suppose) 
and the actual URI inside path objects looks like this 
{{file:/in/two%2520two.txt}}.

To reproduce this issue just place some text files with spaces in their names 
and run simple streaming code:

{code:java}
/in
/one.txt
/two two.txt
/three.txt
{code}

{code}
sparkSession.readStream.textFile("/in")
  .writeStream
  .option("checkpointLocation", "/checkpoint")
  .format("text")
  .start("/out")
  .awaitTermination()
{code}

The result will contain only content of files {{one.txt}} and {{three.txt}}.



> Streaming ignores files with spaces in the file names
> -
>
> Key: SPARK-21996
> URL: https://issues.apache.org/jira/browse/SPARK-21996
> Project: Spark
>  Issue Type: Bug
>  Components: SQL
>Affects Versions: 2.2.0
> Environment: openjdk version "1.8.0_131"
> OpenJDK Runtime Environment (build 1.8.0_131-8u131-b11-2ubuntu1.17.04.3-b11)
> OpenJDK 64-Bit Server VM (build 25.131-b11, mixed mode)
>Reporter: Ivan Sharamet
> Attachments: spark-streaming.zip
>
>
> I tried to stream text files from folder and noticed that files inside this 
> folder with spaces in their names ignored and there are some warnings in the 
> log:
> {code}
> 17/09/13 16:15:14 WARN InMemoryFileIndex: The directory 
> file:/in/two%20two.txt was not found. Was it deleted very recently?
> {code}
> I found that this happens due to duplicate file path URI encoding (I suppose) 
> and the actual URI inside path objects looks like this 
> {{file:/in/two%2520two.txt}}.
> To reproduce this issue just place some text files with spaces in their names 
> and execute some simple streaming code:
> {code:java}
> /in
> /one.txt
> /two two.txt
> /three.txt
> {code}
> {code}
> sparkSession.readStream.textFile("/in")
>   .writeStream
>   .option("checkpointLocation", "/checkpoint")
>   .format("text")
>   .start("/out")
>   .awaitTermination()
> {code}
> The result will contain only content of files {{one.txt}} and {{three.txt}}.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org



[jira] [Updated] (SPARK-21996) Streaming ignores files with spaces in the file names

2017-09-13 Thread Ivan Sharamet (JIRA)

 [ 
https://issues.apache.org/jira/browse/SPARK-21996?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ivan Sharamet updated SPARK-21996:
--
Description: 
I tried to stream text files from folder and noticed that files inside this 
folder with spaces in their names ignored and there are some warnings in the 
log:

{code}
17/09/13 16:15:14 WARN InMemoryFileIndex: The directory file:/in/my%20file.txt 
was not found. Was it deleted very recently?
{code}

I found that this happens due to duplicate file path URI encoding (I suppose) 
and the actual URI inside path objects looks like this 
{{file:/dir/my%2520file.txt}}.

To reproduce this issue just place some text files with spaces in their names 
and run simple streaming code:

{code:java}
/in
/one.txt
/two two.txt
/three.txt
{code}

{code}
sparkSession.readStream.textFile("/in")
  .writeStream
  .option("checkpointLocation", "/checkpoint")
  .format("text")
  .start("/out")
  .awaitTermination()
{code}

The result will contain only content of files {{one.txt}} and {{three.txt}}.


  was:
I tried to stream text files from folder and noticed that files inside this 
folder with spaces in their names ignored and there are some warnings in the 
log:

{code}
17/09/13 16:15:14 WARN InMemoryFileIndex: The directory file:/in/my%20file.txt 
was not found. Was it deleted very recently?
{code}

I found that this happens due to duplicate file path URI encoding (I suppose) 
and the actual URI inside path objects looks like this 
{{file:/dir/my%2520file.txt}}.

To reproduce this issue just place some text files with spaces in their names 
and run simple streaming code:

{code}
sparkSession.readStream.textFile("/in")
  .writeStream
  .option("checkpointLocation", "/checkpoint")
  .start("/out")
  .awaitTermination()
{code}





> Streaming ignores files with spaces in the file names
> -
>
> Key: SPARK-21996
> URL: https://issues.apache.org/jira/browse/SPARK-21996
> Project: Spark
>  Issue Type: Bug
>  Components: SQL
>Affects Versions: 2.2.0
> Environment: openjdk version "1.8.0_131"
> OpenJDK Runtime Environment (build 1.8.0_131-8u131-b11-2ubuntu1.17.04.3-b11)
> OpenJDK 64-Bit Server VM (build 25.131-b11, mixed mode)
>Reporter: Ivan Sharamet
> Attachments: spark-streaming.zip
>
>
> I tried to stream text files from folder and noticed that files inside this 
> folder with spaces in their names ignored and there are some warnings in the 
> log:
> {code}
> 17/09/13 16:15:14 WARN InMemoryFileIndex: The directory 
> file:/in/my%20file.txt was not found. Was it deleted very recently?
> {code}
> I found that this happens due to duplicate file path URI encoding (I suppose) 
> and the actual URI inside path objects looks like this 
> {{file:/dir/my%2520file.txt}}.
> To reproduce this issue just place some text files with spaces in their names 
> and run simple streaming code:
> {code:java}
> /in
> /one.txt
> /two two.txt
> /three.txt
> {code}
> {code}
> sparkSession.readStream.textFile("/in")
>   .writeStream
>   .option("checkpointLocation", "/checkpoint")
>   .format("text")
>   .start("/out")
>   .awaitTermination()
> {code}
> The result will contain only content of files {{one.txt}} and {{three.txt}}.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org



[jira] [Updated] (SPARK-21996) Streaming ignores files with spaces in the file names

2017-09-13 Thread Ivan Sharamet (JIRA)

 [ 
https://issues.apache.org/jira/browse/SPARK-21996?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ivan Sharamet updated SPARK-21996:
--
Description: 
I tried to stream text files from folder and noticed that files inside this 
folder with spaces in their names ignored and there are some warnings in the 
log:

{code}
17/09/13 16:15:14 WARN InMemoryFileIndex: The directory file:/in/my%20file.txt 
was not found. Was it deleted very recently?
{code}

I found that this happens due to duplicate file path URI encoding (I suppose) 
and the actual URI inside path objects looks like this 
{{file:/dir/my%2520file.txt}}.

To reproduce this issue just place some text files with spaces in their names 
and run simple streaming code:

{code}
sparkSession.readStream.textFile("/in")
  .writeStream
  .option("checkpointLocation", "/checkpoint")
  .start("/out")
  .awaitTermination()
{code}




  was:
I tried to stream text files from folder and noticed that files inside this 
folder with spaces in their names ignored and there are some warnings in the 
log:

{code}
17/09/13 16:15:14 WARN InMemoryFileIndex: The directory file:/in/my%20file.txt 
was not found. Was it deleted very recently?
{code}

I found that this happens to the duplicate file path URI encoding and actual 
URI inside path objects looks like this {{file:/dir/my%2520file.txt}}.

To reproduce this issue just place some text files with spaces in their names 
and run simple streaming code:

{code}
sparkSession.readStream.textFile("/in")
  .writeStream
  .option("checkpointLocation", "/checkpoint")
  .start("/out")
  .awaitTermination()
{code}





> Streaming ignores files with spaces in the file names
> -
>
> Key: SPARK-21996
> URL: https://issues.apache.org/jira/browse/SPARK-21996
> Project: Spark
>  Issue Type: Bug
>  Components: SQL
>Affects Versions: 2.2.0
> Environment: openjdk version "1.8.0_131"
> OpenJDK Runtime Environment (build 1.8.0_131-8u131-b11-2ubuntu1.17.04.3-b11)
> OpenJDK 64-Bit Server VM (build 25.131-b11, mixed mode)
>Reporter: Ivan Sharamet
> Attachments: spark-streaming.zip
>
>
> I tried to stream text files from folder and noticed that files inside this 
> folder with spaces in their names ignored and there are some warnings in the 
> log:
> {code}
> 17/09/13 16:15:14 WARN InMemoryFileIndex: The directory 
> file:/in/my%20file.txt was not found. Was it deleted very recently?
> {code}
> I found that this happens due to duplicate file path URI encoding (I suppose) 
> and the actual URI inside path objects looks like this 
> {{file:/dir/my%2520file.txt}}.
> To reproduce this issue just place some text files with spaces in their names 
> and run simple streaming code:
> {code}
> sparkSession.readStream.textFile("/in")
>   .writeStream
>   .option("checkpointLocation", "/checkpoint")
>   .start("/out")
>   .awaitTermination()
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org



[jira] [Updated] (SPARK-21996) Streaming ignores files with spaces in the file names

2017-09-13 Thread Ivan Sharamet (JIRA)

 [ 
https://issues.apache.org/jira/browse/SPARK-21996?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ivan Sharamet updated SPARK-21996:
--
Attachment: spark-streaming.zip

Sample application to reproduce this issue.

> Streaming ignores files with spaces in the file names
> -
>
> Key: SPARK-21996
> URL: https://issues.apache.org/jira/browse/SPARK-21996
> Project: Spark
>  Issue Type: Bug
>  Components: SQL
>Affects Versions: 2.2.0
> Environment: openjdk version "1.8.0_131"
> OpenJDK Runtime Environment (build 1.8.0_131-8u131-b11-2ubuntu1.17.04.3-b11)
> OpenJDK 64-Bit Server VM (build 25.131-b11, mixed mode)
>Reporter: Ivan Sharamet
> Attachments: spark-streaming.zip
>
>
> I tried to stream text files from folder and noticed that files inside this 
> folder with spaces in their names ignored and there are some warnings in the 
> log:
> {code}
> 17/09/13 16:15:14 WARN InMemoryFileIndex: The directory 
> file:/in/my%20file.txt was not found. Was it deleted very recently?
> {code}
> I found that this happens to the duplicate file path URI encoding and actual 
> URI inside path objects looks like this {{file:/dir/my%2520file.txt}}.
> To reproduce this issue just place some text files with spaces in their names 
> and run simple streaming code:
> {code}
> sparkSession.readStream.textFile("/in")
>   .writeStream
>   .option("checkpointLocation", "/checkpoint")
>   .start("/out")
>   .awaitTermination()
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org



[jira] [Updated] (SPARK-21996) Streaming ignores files with spaces in the file names

2017-09-13 Thread Ivan Sharamet (JIRA)

 [ 
https://issues.apache.org/jira/browse/SPARK-21996?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ivan Sharamet updated SPARK-21996:
--
Description: 
I tried to stream text files from folder and noticed that files inside this 
folder with spaces in their names ignored and there are some warnings in the 
log:

{code}
17/09/13 16:15:14 WARN InMemoryFileIndex: The directory file:/in/my%20file.txt 
was not found. Was it deleted very recently?
{code}

I found that this happens to the duplicate file path URI encoding and actual 
URI inside path objects looks like this {{file:/dir/my%2520file.txt}}.

To reproduce this issue just place some text files with spaces in their names 
and run simple streaming code:

{code}
sparkSession.readStream.textFile("/in")
  .writeStream
  .option("checkpointLocation", "/checkpoint")
  .start("/out")
  .awaitTermination()
{code}




  was:
I tried to stream text files from folder and noticed that files inside this 
folder with spaces in their names ignored and there are some warnings in the 
log:

{code}
17/09/13 16:15:14 WARN InMemoryFileIndex: The directory file:/dir/my%20file.txt 
was not found. Was it deleted very recently?
{code}

I found that this happens to the duplicate file path URI encoding and actual 
URI inside path objects looks like this {{file:/dir/my%2520file.txt}}.

To reproduce this issue just place some text files with spaces in their names 
and run simple streaming code:

{code}
sparkSession.readStream.textFile("/in")
  .writeStream
  .option("checkpointLocation", "/checkpoint")
  .start("/out")
  .awaitTermination()
{code}





> Streaming ignores files with spaces in the file names
> -
>
> Key: SPARK-21996
> URL: https://issues.apache.org/jira/browse/SPARK-21996
> Project: Spark
>  Issue Type: Bug
>  Components: SQL
>Affects Versions: 2.2.0
> Environment: openjdk version "1.8.0_131"
> OpenJDK Runtime Environment (build 1.8.0_131-8u131-b11-2ubuntu1.17.04.3-b11)
> OpenJDK 64-Bit Server VM (build 25.131-b11, mixed mode)
>Reporter: Ivan Sharamet
>
> I tried to stream text files from folder and noticed that files inside this 
> folder with spaces in their names ignored and there are some warnings in the 
> log:
> {code}
> 17/09/13 16:15:14 WARN InMemoryFileIndex: The directory 
> file:/in/my%20file.txt was not found. Was it deleted very recently?
> {code}
> I found that this happens to the duplicate file path URI encoding and actual 
> URI inside path objects looks like this {{file:/dir/my%2520file.txt}}.
> To reproduce this issue just place some text files with spaces in their names 
> and run simple streaming code:
> {code}
> sparkSession.readStream.textFile("/in")
>   .writeStream
>   .option("checkpointLocation", "/checkpoint")
>   .start("/out")
>   .awaitTermination()
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org



[jira] [Updated] (SPARK-21996) Streaming ignores files with spaces in the file names

2017-09-13 Thread Ivan Sharamet (JIRA)

 [ 
https://issues.apache.org/jira/browse/SPARK-21996?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ivan Sharamet updated SPARK-21996:
--
Description: 
I tried to stream text files from folder and noticed that files inside this 
folder with spaces in their names ignored and there are some warnings in the 
log:

{code}
17/09/13 16:15:14 WARN InMemoryFileIndex: The directory file:/dir/my%20file.txt 
was not found. Was it deleted very recently?
{code}

I found that this happens to the duplicate file path URI encoding and actual 
URI inside path objects looks like this {{file:/dir/my%2520file.txt}}.

To reproduce this issue just place some text files with spaces in their names 
and run simple streaming code:

{code}
sparkSession.readStream.textFile("/in")
  .writeStream
  .option("checkpointLocation", "/checkpoint")
  .start("/out")
  .awaitTermination()
{code}




  was:
I tried to stream text files from folder and noticed that files with spaces in 
the name ignored and there are some warnings in the log:

{code}
17/09/13 16:15:14 WARN InMemoryFileIndex: The directory file:/dir/my%20file.txt 
was not found. Was it deleted very recently?
{code}

I found that this happens to the duplicate file path URI encoding and actual 
URI inside path objects looks like this {{file:/dir/my%2520file.txt}}.

To reproduce this issue just place some text files with spaces in their names 
and run simple streaming code:

{code}
sparkSession.readStream.textFile("/in")
  .writeStream
  .option("checkpointLocation", "/checkpoint")
  .start("/out")
  .awaitTermination()
{code}





> Streaming ignores files with spaces in the file names
> -
>
> Key: SPARK-21996
> URL: https://issues.apache.org/jira/browse/SPARK-21996
> Project: Spark
>  Issue Type: Bug
>  Components: SQL
>Affects Versions: 2.2.0
> Environment: openjdk version "1.8.0_131"
> OpenJDK Runtime Environment (build 1.8.0_131-8u131-b11-2ubuntu1.17.04.3-b11)
> OpenJDK 64-Bit Server VM (build 25.131-b11, mixed mode)
>Reporter: Ivan Sharamet
>
> I tried to stream text files from folder and noticed that files inside this 
> folder with spaces in their names ignored and there are some warnings in the 
> log:
> {code}
> 17/09/13 16:15:14 WARN InMemoryFileIndex: The directory 
> file:/dir/my%20file.txt was not found. Was it deleted very recently?
> {code}
> I found that this happens to the duplicate file path URI encoding and actual 
> URI inside path objects looks like this {{file:/dir/my%2520file.txt}}.
> To reproduce this issue just place some text files with spaces in their names 
> and run simple streaming code:
> {code}
> sparkSession.readStream.textFile("/in")
>   .writeStream
>   .option("checkpointLocation", "/checkpoint")
>   .start("/out")
>   .awaitTermination()
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org



[jira] [Updated] (SPARK-21996) Streaming ignores files with spaces in the file names

2017-09-13 Thread Ivan Sharamet (JIRA)

 [ 
https://issues.apache.org/jira/browse/SPARK-21996?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ivan Sharamet updated SPARK-21996:
--
Description: 
I tried to stream text files from folder and noticed that files with spaces in 
the name ignored and there are some warnings in the log:

{code}
17/09/13 16:15:14 WARN InMemoryFileIndex: The directory file:/dir/my%20file.txt 
was not found. Was it deleted very recently?
{code}

I found that this happens to the duplicate file path URI encoding and actual 
URI inside path objects looks like this {{file:/dir/my%2520file.txt}}.

To reproduce this issue just place some text files with spaces in their names 
and run simple streaming code:

{code}
sparkSession.readStream.textFile("/in")
  .writeStream
  .option("checkpointLocation", "/checkpoint")
  .start("/out")
  .awaitTermination()
{code}




  was:
I tried to stream text files from folder and noticed that files with spaces in 
the name ignored and there are some warnings in the log:

{code}
17/09/13 16:15:14 WARN InMemoryFileIndex: The directory file:/dir/my%20file.txt 
was not found. Was it deleted very recently?
{code}

I found that this happens to the duplicate file path URI encoding and actual 
URI inside path objects looks like this {{file:/dir/my%2520file.txt}}.

To reproduce this issue just place some text files with spaces in their names 
and run simple streaming code:

{code:scala}
sparkSession.readStream.textFile("/in")
  .writeStream
  .option("checkpointLocation", "/checkpoint")
  .start("/out")
  .awaitTermination()
{code}





> Streaming ignores files with spaces in the file names
> -
>
> Key: SPARK-21996
> URL: https://issues.apache.org/jira/browse/SPARK-21996
> Project: Spark
>  Issue Type: Bug
>  Components: SQL
>Affects Versions: 2.2.0
> Environment: openjdk version "1.8.0_131"
> OpenJDK Runtime Environment (build 1.8.0_131-8u131-b11-2ubuntu1.17.04.3-b11)
> OpenJDK 64-Bit Server VM (build 25.131-b11, mixed mode)
>Reporter: Ivan Sharamet
>
> I tried to stream text files from folder and noticed that files with spaces 
> in the name ignored and there are some warnings in the log:
> {code}
> 17/09/13 16:15:14 WARN InMemoryFileIndex: The directory 
> file:/dir/my%20file.txt was not found. Was it deleted very recently?
> {code}
> I found that this happens to the duplicate file path URI encoding and actual 
> URI inside path objects looks like this {{file:/dir/my%2520file.txt}}.
> To reproduce this issue just place some text files with spaces in their names 
> and run simple streaming code:
> {code}
> sparkSession.readStream.textFile("/in")
>   .writeStream
>   .option("checkpointLocation", "/checkpoint")
>   .start("/out")
>   .awaitTermination()
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org



[jira] [Updated] (SPARK-21996) Streaming ignores files with spaces in the file names

2017-09-13 Thread Ivan Sharamet (JIRA)

 [ 
https://issues.apache.org/jira/browse/SPARK-21996?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ivan Sharamet updated SPARK-21996:
--
Description: 
I tried to stream text files from folder and noticed that files with spaces in 
the name ignored and there are some warnings in the log:

{code}
17/09/13 16:15:14 WARN InMemoryFileIndex: The directory file:/dir/my%20file.txt 
was not found. Was it deleted very recently?
{code}

I found that this happens to the duplicate file path URI encoding and actual 
URI inside path objects looks like this {{file:/dir/my%2520file.txt}}.

To reproduce this issue just place some text files with spaces in their names 
and run simple streaming code:

{code:scala}
sparkSession.readStream.textFile("/in")
  .writeStream
  .option("checkpointLocation", "/checkpoint")
  .start("/out")
  .awaitTermination()
{code}




  was:
I tried to stream text files from folder I noticed that files with spaces in 
the name ignored and there are warnings in the log:

{code}
17/09/13 16:15:14 WARN InMemoryFileIndex: The directory file:/dir/my%20file.txt 
was not found. Was it deleted very recently?
{code}

I found that this happens to the duplicate file path URI encoding and actual 
URI inside path objects looks like this {{file:/dir/my%2520file.txt}}.

To reproduce this issue just place some text files with spaces in their names 
and run simple streaming code:

{code:scala}
sparkSession.readStream.textFile("/in")
  .writeStream
  .option("checkpointLocation", "/checkpoint")
  .start("/out")
  .awaitTermination()
{code}





> Streaming ignores files with spaces in the file names
> -
>
> Key: SPARK-21996
> URL: https://issues.apache.org/jira/browse/SPARK-21996
> Project: Spark
>  Issue Type: Bug
>  Components: SQL
>Affects Versions: 2.2.0
> Environment: openjdk version "1.8.0_131"
> OpenJDK Runtime Environment (build 1.8.0_131-8u131-b11-2ubuntu1.17.04.3-b11)
> OpenJDK 64-Bit Server VM (build 25.131-b11, mixed mode)
>Reporter: Ivan Sharamet
>
> I tried to stream text files from folder and noticed that files with spaces 
> in the name ignored and there are some warnings in the log:
> {code}
> 17/09/13 16:15:14 WARN InMemoryFileIndex: The directory 
> file:/dir/my%20file.txt was not found. Was it deleted very recently?
> {code}
> I found that this happens to the duplicate file path URI encoding and actual 
> URI inside path objects looks like this {{file:/dir/my%2520file.txt}}.
> To reproduce this issue just place some text files with spaces in their names 
> and run simple streaming code:
> {code:scala}
> sparkSession.readStream.textFile("/in")
>   .writeStream
>   .option("checkpointLocation", "/checkpoint")
>   .start("/out")
>   .awaitTermination()
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org



[jira] [Updated] (SPARK-21996) Streaming ignores files with spaces in the file names

2017-09-13 Thread Ivan Sharamet (JIRA)

 [ 
https://issues.apache.org/jira/browse/SPARK-21996?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ivan Sharamet updated SPARK-21996:
--
Description: 
I tried to stream text files from folder I noticed that files with spaces in 
the name ignored and there are warnings in the log:

{code}
17/09/13 16:15:14 WARN InMemoryFileIndex: The directory file:/dir/my%20file.txt 
was not found. Was it deleted very recently?
{code}

I found that this happens to the duplicate file path URI encoding and actual 
URI inside path objects looks like this {{file:/dir/my%2520file.txt}}.

To reproduce this issue just place some text files with spaces in their names 
and run simple streaming code:

{code:scala}
sparkSession.readStream.textFile("/in")
  .writeStream
  .option("checkpointLocation", "/checkpoint")
  .start("/out")
  .awaitTermination()
{code}




  was:
I tried to stream text files from folder I noticed that files with spaces in 
the name ignored and there are warnings in the log:

{code:shell}
17/09/13 16:15:14 WARN InMemoryFileIndex: The directory file:/dir/my%20file.txt 
was not found. Was it deleted very recently?
{code}

I found that this happens to the duplicate file path URI encoding and actual 
URI inside path objects looks like this {{file:/dir/my%2520file.txt}}.

To reproduce this issue just place some text files with spaces in their names 
and run simple streaming code:

{code:scala}
sparkSession.readStream.textFile("/in")
  .writeStream
  .option("checkpointLocation", "/checkpoint")
  .start("/out")
  .awaitTermination()
{code}





> Streaming ignores files with spaces in the file names
> -
>
> Key: SPARK-21996
> URL: https://issues.apache.org/jira/browse/SPARK-21996
> Project: Spark
>  Issue Type: Bug
>  Components: SQL
>Affects Versions: 2.2.0
> Environment: openjdk version "1.8.0_131"
> OpenJDK Runtime Environment (build 1.8.0_131-8u131-b11-2ubuntu1.17.04.3-b11)
> OpenJDK 64-Bit Server VM (build 25.131-b11, mixed mode)
>Reporter: Ivan Sharamet
>
> I tried to stream text files from folder I noticed that files with spaces in 
> the name ignored and there are warnings in the log:
> {code}
> 17/09/13 16:15:14 WARN InMemoryFileIndex: The directory 
> file:/dir/my%20file.txt was not found. Was it deleted very recently?
> {code}
> I found that this happens to the duplicate file path URI encoding and actual 
> URI inside path objects looks like this {{file:/dir/my%2520file.txt}}.
> To reproduce this issue just place some text files with spaces in their names 
> and run simple streaming code:
> {code:scala}
> sparkSession.readStream.textFile("/in")
>   .writeStream
>   .option("checkpointLocation", "/checkpoint")
>   .start("/out")
>   .awaitTermination()
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org



[jira] [Updated] (SPARK-21996) Streaming ignores files with spaces in the file names

2017-09-13 Thread Ivan Sharamet (JIRA)

 [ 
https://issues.apache.org/jira/browse/SPARK-21996?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ivan Sharamet updated SPARK-21996:
--
Description: 
I tried to stream text files from folder I noticed that files with spaces in 
the name ignored and there are warnings in the log:

{code:shell}
17/09/13 16:15:14 WARN InMemoryFileIndex: The directory file:/dir/my%20file.txt 
was not found. Was it deleted very recently?
{code}

I found that this happens to the duplicate file path URI encoding and actual 
URI inside path objects looks like this {{file:/dir/my%2520file.txt}}.

To reproduce this issue just place some text files with spaces in their names 
and run simple streaming code:

{code:scala}
sparkSession.readStream.textFile("/in")
  .writeStream
  .option("checkpointLocation", "/checkpoint")
  .start("/out")
  .awaitTermination()
{code}




  was:
I tried to stream text files from folder I noticed that files with spaces in 
the name ignored and there are warnings in the log:

{code:bash}
17/09/13 16:15:14 WARN InMemoryFileIndex: The directory file:/dir/my%20file.txt 
was not found. Was it deleted very recently?
{code}

I found that this happens to the duplicate file path URI encoding and actual 
URI inside path objects looks like this {{file:/dir/my%2520file.txt}}.

To reproduce this issue just place some text files with spaces in their names 
and run simple streaming code:

{code:scala}
sparkSession.readStream.textFile("/in")
  .writeStream
  .option("checkpointLocation", "/checkpoint")
  .start("/out")
  .awaitTermination()
{code}





> Streaming ignores files with spaces in the file names
> -
>
> Key: SPARK-21996
> URL: https://issues.apache.org/jira/browse/SPARK-21996
> Project: Spark
>  Issue Type: Bug
>  Components: SQL
>Affects Versions: 2.2.0
> Environment: openjdk version "1.8.0_131"
> OpenJDK Runtime Environment (build 1.8.0_131-8u131-b11-2ubuntu1.17.04.3-b11)
> OpenJDK 64-Bit Server VM (build 25.131-b11, mixed mode)
>Reporter: Ivan Sharamet
>
> I tried to stream text files from folder I noticed that files with spaces in 
> the name ignored and there are warnings in the log:
> {code:shell}
> 17/09/13 16:15:14 WARN InMemoryFileIndex: The directory 
> file:/dir/my%20file.txt was not found. Was it deleted very recently?
> {code}
> I found that this happens to the duplicate file path URI encoding and actual 
> URI inside path objects looks like this {{file:/dir/my%2520file.txt}}.
> To reproduce this issue just place some text files with spaces in their names 
> and run simple streaming code:
> {code:scala}
> sparkSession.readStream.textFile("/in")
>   .writeStream
>   .option("checkpointLocation", "/checkpoint")
>   .start("/out")
>   .awaitTermination()
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org