Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

No Format
--+ bin --+ sqoop
  | 
  + conf --+ sqoop_bootstrap.properties
  |        |
  |        +- sqoop.properties
  |
  + server --+ bin --+ setenv.sh
  |          |
  |          + webapps --+ sqoop.war
  |
  + sqoop-client.jar
  |
  + sqoop-common.jar
  |
  + ...

As part of this process, a copy of Tomcat server is also downloaded and put under the server directory in the above structure.

...

Alternatively, the shell client can be run in script mode. For example, a command script can be created as

No Format

echo "set server --host localhost --port 8080 --webapp sqoop" > sqoop.script
echo "show version --all" >> sqoop.script

Then, the command script can be run with

No Format

bin/sqoop client sqoop.script

The command for the shell client looks something like <command> <function> <options>:

...