Member since
04-11-2016
535
Posts
148
Kudos Received
77
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
7488 | 09-17-2018 06:33 AM | |
1825 | 08-29-2018 07:48 AM | |
2742 | 08-28-2018 12:38 PM | |
2118 | 08-03-2018 05:42 AM | |
1987 | 07-27-2018 04:00 PM |
07-19-2018
08:59 AM
@Daniel Müller
When merging the Hive ORC files, instead of matching the files wrt Block size, the files are merge as per the ORC stripe size. The property which controls this is hive.merge.orcfile.stripe.level. When the property is set to true, the merge happens at stripe level and when set to false, the files are merge at file level. Parameters which affect the file level merge are: hive.merge.tezfiles=true
hive.merge.mapfiles=true
hive.merge.size.per.task=256000000
hive.merge.smallfiles.avgsize=16000000 For more details refer link. Also, there are some known limitations related to concatenation. Do observe the behaviour and file count when the concatenate is run in say 5 iterations.
... View more
07-19-2018
07:39 AM
@wei mou Seems like the privilege issue at the MySQL end. Please try running the below command: grant all privileges on *.* to 'root'@'hadoopS4' using password 'xxx';
flush privileges;
... View more
07-19-2018
06:30 AM
1 Kudo
@rganeshbabu
Inserting the data into ACID table or to a bucketed table from Pig is not supported, hence the error is seen. Workaround: 1. Load the data into non-transactional table. 2. From Hive client, load the data from non-transactional table into transactional table. insert into acid_table select * from non_acid_table;
... View more
07-17-2018
05:59 AM
@Anjali Shevadkar It seems like you are hitting "Dag submit failed due to Invalid TaskLaunchCmdOpts defined for Vertex Map 1 : Invalid/conflicting GC options found". Please check and share the values of the following parameters "tez.am.launch.cmd-opts" and "hive.tez.java.opts" they should not be conflicting. Specially the GC options. Remove +UseParallelGC from either of the properties to address the issue. This is because "-XX:+UseG1GC and -XX:+UseParallelGC" Should never be used together."
... View more
07-16-2018
03:18 PM
1 Kudo
@Sambasivam Subramanian Please refer below links for adding nodes to existing cluster: https://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.6.2/bk_administration/content/ref-4303e343-9aee-4e70-b38a-2837ae976e73.1.html https://www.youtube.com/watch?v=jiCI4yIkUlc
... View more
07-05-2018
10:28 AM
@Anjali Shevadkar I checked internally and below policy works: beeline> !connect jdbc:hive2://:2181,:2181,:2181/;serviceDiscoveryMode=zooKeeper;zooKeeperNamespace=hiveserver2
Connecting to jdbc:hive2://:2181,:2181,:2181/;serviceDiscoveryMode=zooKeeper;zooKeeperNamespace=hiveserver2
Enter username for jdbc:hive2://:2181,:2181,:2181/;serviceDiscoveryMode=zooKeeper;zooKeeperNamespace=hiveserver2: hive
Enter password for jdbc:hive2://:2181,:2181,:2181/;serviceDiscoveryMode=zooKeeper;zooKeeperNamespace=hiveserver2: ****
Connected to: Apache Hive (version 1.2.1000.2.6.5.0-292)
Driver: Hive JDBC (version 1.2.1000.2.6.5.0-292)
0: jdbc:hive2://xxx:> show databases;
+----------------+--+
| database_name|
+---------------+--+
| default|
| testdb |
+----------------+--+2 rows selected (0.362 seconds)
... View more
07-05-2018
09:49 AM
@Rajendra Manjunath You can use Metron 0.4.2 with HDP 2.6.5 including Kafka 0.10.1 and Storm 1.1.0.
... View more
07-05-2018
09:33 AM
@Anjali Shevadkar Can you share the screenshot of the Ranger policy and also, error snippet from Hiveserver2 log?
... View more
07-05-2018
09:19 AM
@Anjali Shevadkar Do you have Ranger policies defined for Hive? If yes, check if the login user has use/select on the databases. Also, you could check the 'show databases' from Hive Cli as it by-passes the Ranger.
... View more