Shengjie
Shengjie

Reputation: 12786

Can sqoop run without hadoop?

Just wondering can sqoop run without a hadoop cluster? sort of in a standalone mode? Has anyone tried to run sqoop on spark, please share some experiences on it.

Upvotes: 5

Views: 4455

Answers (1)

franklinsijo
franklinsijo

Reputation: 18270

To run Sqoop commands (both sqoop1 and sqoop2), Hadoop is a mandatory prerequisite. You cannot run sqoop commands without the Hadoop libraries.

Sqoop works in local mode too, so it is not a requirement that the Hadoop daemons must be running. To run sqoop in local mode,

sqoop [tool-name] -fs local -jt local [tool-arguments]

Sqoop on Spark is still In-Progress. See SQOOP-1532

Upvotes: 10

Related Questions