Versions Compared

Key

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

WORK IN PROGRESS

Table of Contents

Some of the well known quirks for the Sqoop2 integration test suite is documented here so that developers can be aware of what to expect when running

...

What happens when integration tests are abruptly terminated due to CTRL + C or failures?

 

Please look for zombie java processes and kill them all before running the integration tests. Currently the cluster does not cleanly shutdown.

...

Code Block
ps -ef | grep java
killall -9 java
 
or more advanced....
for p in `ps aux | grep java | grep YarnChild| sed -re "s/<username> ([0-9]+) ./\1/"`; do echo $p; kill -9 $p;  done

Unusual Tomcat failed to start

...

issue found?

First check the tomcat.log under /path/to/sqoop//test/target/sqoop-cargo-tests/ org.apache.sqoop.integration.connector.jdbc.generic.FromRDBMSToHDFSTest/testBasic/log/tomcat.log

...