Created 06-13-2016 09:56 AM
Hi,
What is the best way to have an Oozie action performing a multiple tables export using Sqoop?
Context:
I'd like to have one single Oozie action calling Sqoop to export all the files in the target database.
Is it something we can do? What are the available options?
Created 06-13-2016 11:11 AM
Ah just read that its an export. But again I don't think there is any automated way to do that.
So I suppose your only choice is to make a custom shell/ssh action that runs a script ( shell, python ... ) that lists the files from the directory and then executes sqoop jobs for them. Would be my approach.
Created 06-13-2016 11:11 AM
Ah just read that its an export. But again I don't think there is any automated way to do that.
So I suppose your only choice is to make a custom shell/ssh action that runs a script ( shell, python ... ) that lists the files from the directory and then executes sqoop jobs for them. Would be my approach.
Created 06-13-2016 11:46 AM
Hi @Benjamin Leonhardi, thanks for your answer, it confirms what I read so far. I'll go that way, thanks again.