Created 10-25-2017 11:05 PM
For a sqoop job with --null-string or --null-non-string the value earlier was <arg></arg>. However it fails with a NullPointerException- Main class [org.apache.oozie.action.hadoop.SqoopMain], exception invoking main(), null.
However changing it to <arg>' '</arg> resolves the issue. In the earlier sqoop version(1.4.6.2.3.4.0-3485) it worked but with the upgraded sqoop version(1.4.6.2.6.0.3-8) it failed with the above error.
1) Is there a fix for this issue on the latest upgraded sqoop version
2) Assuming the work-around that I have mentioned, which is <arg>' '</arg> will the output of the sqoop version remain the same?
Created 10-27-2017 07:50 AM
@Omkar Nalawade As per the Sqoop document,
"The --null-string
and --null-non-string
arguments are optional.\ If not specified, then the string "null" will be used."
So, in case if you are using --null-string or --null-non-string you will need to pass some value to these arguments. If you want string "null" to be used in place of null values you can ignore these arguments. You can also use '\N' or "\\N" to use null values.
Created 10-27-2017 07:50 AM
@Omkar Nalawade As per the Sqoop document,
"The --null-string
and --null-non-string
arguments are optional.\ If not specified, then the string "null" will be used."
So, in case if you are using --null-string or --null-non-string you will need to pass some value to these arguments. If you want string "null" to be used in place of null values you can ignore these arguments. You can also use '\N' or "\\N" to use null values.
Created 10-29-2017 12:09 AM
Thanks a lot. Ignoring the --null-string and --null-non-string arguments worked for me.