Member since
08-04-2016
19
Posts
1
Kudos Received
0
Solutions
11-29-2021
02:10 AM
I found other simple solution for this issue, Simply find faulty partition from partition list by using command. show partitions table table_name; then rename the faulty partition to some other name in correct format of your partition. In my case, I used ALTER table table_name partition (date_flag='2021-11-25_bak') rename to partition (date_flag='2021-01-01');
... View more
07-18-2018
01:47 AM
Here's why: https://issues.apache.org/jira/browse/KAFKA-5089 Workaround/Hack: Force Kafka COnnect libs like javax.ws.rs-api-2.0.1.jar to appear on the classpath first by exporting your CLASSPATH variable before running connect-standalone.sh export CLASSPATH=/usr/hdp/2.6.4.0-91/kafka/libs/*
... View more
09-04-2017
08:27 PM
Hi @Gnanasekaran G, is there an OVERRIDE command in your statement? You may be running into this issue - https://issues.apache.org/jira/browse/HIVE-4605
... View more
06-15-2017
10:41 AM
thank you @Frank Welsch. I'll check
... View more
03-16-2017
05:44 AM
2 Kudos
Thanks @Gnanasekaran G please accept best answer. we can close the thread
... View more
03-16-2017
04:58 AM
@Gnanasekaran G if this helped, please vote/accept best answer. we can close the thread
... View more
05-15-2017
02:36 PM
If you're looking for a standalone tool to convert CSV to ORC have a look at https://github.com/cartershanklin/csv-to-orc It's a standalone Java tool that can run anywhere, including off of
your Hadoop cluster. It supports custom null strings, row skipping and
basic Hive types (no complex types currently)
... View more