Reputation: 21
I want to load unstructured data(images,videos) into HDFS using hadoop components.Anyone can help me in this query.
Which hadoop component, I need to use in loading the unstructured data.
And using that component, how to import it.
Upvotes: 1
Views: 2218
Reputation: 3514
Unstructured data as in regular files? If data is stored on a normal filesystem somewhere, then you don't need any fancy components. You can upload it using built-in HDFS tools (hadoop fs
etc.). You can write some shell scripts to automate this...
If for some reason your data is stored as blobs in a database, you can use Sqoop.
Upvotes: 1