Member since
02-16-2017
13
Posts
0
Kudos Received
0
Solutions
12-28-2018
07:59 AM
Hi @Jalender , @subhash parise I am able to solve this issue. Based on the log from 'yarn logs -applicationId applicatioon_1545806970486_****', the main issue was following. "java.lang.Exception: java.util.concurrent.ExecutionException: java.lang.VerifyError: Bad return type" This error have caused as the jar I complied had all the dependency library package in it (I am using maven). There were 2 jar file generated when I used "clean install package" in maven. One jar had all the dependency library with file size of ~77mb. Another jar file had only class definition (file sze ~100kb) . I was using the jar will all the dependency library in the Hive cluster. It may have caused this error "java.lang.Exception: java.util.concurrent.ExecutionException: java.lang.VerifyError: Bad return type" as suggested in this post "https://stackoverflow.com/questions/100107/causes-of-getting-a-java-lang-verifyerror". So using the second jar with only class definition, the Insert query with custom UDF was working. Thank you all for the suggestion.
... View more
12-12-2018
01:34 AM
Thank you very much for the explanation regarding the work around to delete the row.
... View more