Created
February 25, 2020 00:46
-
-
Save iqbalhasnan/ed92fa2450cab9c5b63d2402f3ff2c72 to your computer and use it in GitHub Desktop.
Spark Hive errors and solutions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. | |
Error: | |
java.io.IOException: java.lang.IllegalArgumentException: bucketId out of range: -1 | |
Solution: | |
set hive.fetch.task.conversion=none; | |
2. | |
Error: | |
java.io.IOException: [Error 30022]: Must use HiveInputFormat to read ACID tables | |
Solution: | |
set hive.input.format=org.apache.hadoop.hive.ql.io.HiveInputFormat | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
it save my life. thank you so much.