Member since
04-25-2016
579
Posts
609
Kudos Received
111
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 2939 | 02-12-2020 03:17 PM | |
| 2140 | 08-10-2017 09:42 AM | |
| 12496 | 07-28-2017 03:57 AM | |
| 3444 | 07-19-2017 02:43 AM | |
| 2535 | 07-13-2017 11:42 AM |
06-16-2016
04:34 AM
1 Kudo
@KC could you please follow this tutorial http://www.mkyong.com/maven/create-a-fat-jar-file-maven-shade-plugin/
... View more
06-15-2016
07:44 AM
this jar is used by the zeppelin server at runtime zeppelin/lib/interpreter/spark/dep/zeppelin-spark-dependencies-0.6.0.2.4.0.0-169.jar, will be good if you have your version of jar shaded.
... View more
06-15-2016
07:11 AM
3 Kudos
Are you using HiveInputFormat, its better to use CombineInputFormat which combine all small files to generate a split.
... View more
06-15-2016
07:10 AM
@KCcan you lookout for these two jars, i m suspecting that zepplien spark dependency is causing this issue. zeppelin/lib/interpreter/spark/dep/zeppelin-spark-dependencies-0.6.0.2.4.0.0-169.jar /zeppelin/lib/interpreter/flink/jackson-databind-2.4.2.jar
... View more
06-15-2016
05:58 AM
please look into zeepline lib folder.
... View more
06-15-2016
05:30 AM
1 Kudo
seems you have library mismatch for jackson, could you please verify which jars contain this class com.fasterxml.jackson.databind.node.ArrayNode,isolate those jars and maintain a single version of jars available across the classpath. if you still want to use to different jar version then please consider jar shading.
... View more
06-14-2016
09:10 AM
after df=hive_context.sql("SELECT blglast FROM tab_temp AS b limit 50"), you can get the row object in which you can perform your custom logic. >>> for row in df.rdd.collect():
... dosomething ...
... View more
06-14-2016
06:28 AM
what is your sample data here, table DDL?
... View more
06-14-2016
06:17 AM
@Manikandan Durairaj you can take the advantage of regular expression with getFile, something like this https://community.hortonworks.com/questions/38120/how-to-get-files-based-on-the-time-stamp-in-nifi.html
... View more
06-14-2016
06:10 AM
1 Kudo
@Vijay Parmar you are getting this error from bash shell, you can not run the query from bash shell.use hive cli to run this query.
... View more