All Questions
Tagged with recordreader apache-spark
2 questions
1
vote
0
answers
206
views
Custom records reader PST file format in Spark Scala
I am working on PST files, I have worked on writing custom record reader for a Mapreduce program for different input formats but this time it is going to be spark.
I am not getting any clue or ...
0
votes
1
answer
135
views
Hadoop 2: Empty result when using custom InputFormat
I want to use a own FileInputFormat with a custom RecordReader to read csv data into <Long><String> pairs.
Therefore I created the class MyTextInputFormat:
import java.io.IOException;
...