[
https://issues.apache.org/jira/browse/SPARK-22225?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16198335#comment-16198335
]
Hyukjin Kwon commented on SPARK-22225:
--------------------------------------
Sure, Thanks [~sams].
> wholeTextFilesIterators
> -----------------------
>
> Key: SPARK-22225
> URL: https://issues.apache.org/jira/browse/SPARK-22225
> Project: Spark
> Issue Type: New Feature
> Components: Spark Core
> Affects Versions: 2.2.0
> Reporter: sam
>
> It is a very common use case to want to preserve a path -> file mapping in an
> RDD, or read an entire file in one go. Especially for unstructured data and
> ETL.
> Currently wholeTextFiles is the goto method for this, but it read the entire
> file into memory, which is sometimes an issue (see SPARK-18965). It also
> precludes the option to lazily process files.
> It would be nice to have a method with the following signature:
> {code}
> def wholeTextFilesIterators(
> path: String,
> minPartitions: Int = defaultMinPartitions,
> delimiter: String = "\n"): RDD[(String, Iterator[String])]
> {code}
> Where each `Iterator[String]` is a lazy file iterator where each string is
> delimited by the `delimiter` field.
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]