Member since
12-09-2015
115
Posts
43
Kudos Received
12
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
8369 | 07-10-2017 09:38 PM | |
5902 | 04-10-2017 03:24 PM | |
1356 | 03-04-2017 04:08 PM | |
4708 | 02-17-2017 10:42 PM | |
6153 | 02-17-2017 10:41 PM |
07-20-2016
04:52 PM
thank you, this gives me a good idea. let me play with ranger and see what i can accomplish
... View more
07-18-2016
07:58 PM
Labels:
- Labels:
-
Kerberos
04-04-2016
03:48 PM
desc function reflect;
Error: Error while processing statement: FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.DDLTask. org.apache.hadoop.hive.ql.parse.SemanticException: UDF reflect is not allowed (state=08S01,code=1) it is working with hive though: hive> describe function reflect;
OK
reflect(class,method[,arg1[,arg2..]]) calls method with reflection
Time taken: 1.973 seconds, Fetched: 1 row(s)
... View more
04-04-2016
03:40 PM
2 Kudos
not able to use refect function using beeline, same query just works fine with hivecli. both in hivecli & beeline when i search for show functions i could see reflect .. I donot see any denials in ranger SELECT reflect("java.net.URLDecoder","decode",search_query) FROM jlp_endeca_searches limit 5;
Error: Error while compiling statement: FAILED: SemanticException UDF reflect is not allowed (state=42000,code=40000)
... View more
Labels:
- Labels:
-
Apache Hive
03-18-2016
09:10 PM
3 Kudos
it is an issue with meta data..we just dropped it and recreated the table and all is well...
... View more
03-14-2016
03:26 PM
1 Kudo
Execution engine from MR to TEZ
... View more
03-14-2016
03:25 PM
1 Kudo
Just upgraded HDP from 2.2 to 2.3.4. & default execution engine to MR to TEZ. table we are querying has 2.4Billion rows select * from lowes_clickstream.clickstream_mobile limit 100;
Error: java.io.IOException: java.lang.IndexOutOfBoundsException: toIndex = 993 (state=,code=0)
0: jdbc:hive2://hadoop-sa:8443/default>
... View more
Labels:
- Labels:
-
Apache Tez
02-05-2016
12:35 AM
@Neeraj Sabharwal yea...we did follow with support and they said it is a know issue...i posted the comments below..alll we need to do is change the DB engine for all the tables which are MyISAM to InnoDB. thanks for your response though..
... View more
02-05-2016
12:33 AM
1 Kudo
This is known issue for MYSQL DBs and we need to convert all the tables to use InnoDB engine. You can use the below SQL to generate the commands to alter the tables to InnoDB engine. SELECT concat('ALTER TABLE ',TABLE_NAME,' ENGINE=InnoDB;') FROM Information_schema.TABLES WHERE TABLE_SCHEMA = 'ambaridb' AND ENGINE = 'MyISAM' AND TABLE_TYPE='BASE TABLE'; Once we get the output , remove the ' | ' and run the alter commands. Once we run alter commands, commit and exit mysql. and than run ambari-server upgrade.
... View more
02-04-2016
12:10 AM
@Artem Ervits no it is not
... View more