Shengjie
Shengjie

Reputation: 12796

Does Flume have Excel source

I am just wondering has anybody come across the scenario where you need to import or read the data from excel to Hadoop? Is there such thing like Flume Excel source around?

btw, I know I can convert the excel file to csv then deal with it. Really just trying to explore flume source a bit further here.

Upvotes: 1

Views: 669

Answers (1)

Dmitry
Dmitry

Reputation: 2993

Spooling Directory Source can be configured to read from Excel files (or any other format). As documentation states, this source can be configured with EventDeserializer - the class that implements logic of parsing the file into events.

I don't think somebody already implemented such deserializer, but it seems to be quite easy task with Apache POI library.

Upvotes: 2

Related Questions