Member since
04-25-2016
579
Posts
609
Kudos Received
111
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 2938 | 02-12-2020 03:17 PM | |
| 2140 | 08-10-2017 09:42 AM | |
| 12496 | 07-28-2017 03:57 AM | |
| 3442 | 07-19-2017 02:43 AM | |
| 2534 | 07-13-2017 11:42 AM |
06-10-2016
10:24 AM
@Varun Kumar Chepuri Can you please elobarate your problem statement bit more?
... View more
06-10-2016
10:22 AM
2 Kudos
Could you please try this http://blog.jaceklaskowski.pl/2015/07/20/real-time-data-processing-using-apache-kafka-and-spark-streaming.html
... View more
06-10-2016
10:01 AM
1 Kudo
if you are running mapreduce over yarn then enable yarn remote log aggregation(http://hortonworks.com/blog/simplifying-user-logs-management-and-access-in-yarn/), it will centralized all logging for you and you can perform your analysis over on aggregated logs.
... View more
06-10-2016
09:23 AM
2 Kudos
can you try this? ALTER TABLE dtl.ordersummery PARTITION (tran_date='2016-04-06',ordertype='SUPE') COMPACT 'minor';
... View more
06-10-2016
07:15 AM
1 Kudo
I am not sure about whether is any way available to get the desired output from sql server import, but I dont think it matter much if you import sql server smalldate to hive string. you can modify the hive query to get the expected output e.g unix_timestamp you can convert the string to desired timestamp to know more about it you can check following documentation. https://cwiki.apache.org/confluence/display/Hive/LanguageManual+UDF
... View more
06-09-2016
11:48 AM
2 Kudos
with spark-submit option --jar, are you passing spark-kafka-assembly jar along with kafka_2.10-*.jar from /usr/hdp/2.4.0.0-169/kafka/libs/ location.
... View more
06-09-2016
10:27 AM
3 Kudos
what version of hiveserver2 you are running with? it seems that you are trying to connect with old version of thrift client to the newer version of hiveserver2. can you try to check the the libthrift api version of your hive-client vs hive-server. if there is a mismatch then you are not able to connect with hive-server as it is known issue with hive. see this https://issues.apache.org/jira/browse/HIVE-6050
... View more
06-09-2016
08:56 AM
3 Kudos
I think its not problem with hive server thrift api rather it looks a problem with the thrift plugin of Intellij IDEA. could you try this after disabling the thrift plugin in Intellij
... View more
06-08-2016
01:46 PM
with spark-submit you can try uploading the file to driver using -Dapplication.properties.file=<file path on location>
... View more