Member since
05-05-2016
147
Posts
223
Kudos Received
18
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
3659 | 12-28-2018 08:05 AM | |
3616 | 07-29-2016 08:01 AM | |
2977 | 07-29-2016 07:45 AM | |
6916 | 07-26-2016 11:25 AM | |
1369 | 07-18-2016 06:29 AM |
07-04-2016
02:27 PM
4 Kudos
See if this help to contribute:- https://launchpad.net/openstack-doc-tools https://forge.puppet.com/openstack/cinder/changelog
... View more
07-04-2016
01:19 PM
5 Kudos
Could you please share table structure as if we run compaction on ORC ACID Hive table still have bug in open state see below:- https://issues.apache.org/jira/browse/HIVE-14017
... View more
07-03-2016
01:07 AM
5 Kudos
If you are on Spark 1.6.x, it is strongly recommended to upgrade to Spark stable release of 1.6.2. https://spark.apache.org/releases/spark-release-1-6-2.html
... View more
07-02-2016
05:29 PM
2 Kudos
This error seems to appear when we add cluster to secure cluster. Could you please verify your authentication capability to Kafka brokers added for encryption with this upgrade.
... View more
06-29-2016
09:08 AM
I am using HDP2.4 sandbox with HPL/SQL 0.3.17.
... View more
06-28-2016
09:47 AM
5 Kudos
Below is the code and output from function:- CREATE FUNCTION my_function() RETURNS STRING BEGIN DROP TABLE default.dg_join3 ; CREATE TABLE default.dg_join3 (name string, phone string) ; INSERT INTO TABLE default.dg_join3 SELECT a.name, b.phone from default.dg_1 a,default.dg_2 b where a.id = b.id ; SELECT * FROM default.dg_join3 ; END; -- Invoke the function PRINT 'world, come with me now'; PRINT my_function(); [root@sandbox hplsql-0.3.17]# ./hplsql -f my_function.txt
world, come with me now
16/06/28 09:34:15 INFO jdbc.Utils: Supplied authorities: localhost:10000
16/06/28 09:34:15 INFO jdbc.Utils: Resolved authority: localhost:10000
Open connection: jdbc:hive2://localhost:10000 (414 ms)
Starting SQL statement
SQL statement executed successfully (387 ms)
Starting SQL statement
SQL statement executed successfully (1.29 sec)
Starting SQL statement
SQL statement executed successfully (9.85 sec)
Starting query
Query executed successfully (880 ms)
null
... View more
06-28-2016
09:17 AM
4 Kudos
Could you please verify your create table statement of dg_1 and dg_2? As below statement that executed successfully at my end without any issue. [root@sandbox hplsql-0.3.17]# ./hplsql -e "INSERT INTO TABLE default.dg_join3 SELECT a.name, b.phone from default.dg_1 a join default.dg_2 b on a.id = b.id ;"
16/06/28 09:01:13 INFO jdbc.Utils: Supplied authorities: localhost:10000 16/06/28 09:01:13 INFO jdbc.Utils: Resolved authority: localhost:10000 Open connection: jdbc:hive2://localhost:10000 (438 ms)
Starting SQL statement
SQL statement executed successfully (11.86 sec)
... View more
06-28-2016
08:22 AM
6 Kudos
This is an introduction to Hadoop 2.7 improvement as hive cli automatic initialization of logging I think if you want to remove this message you need to build Hive again with program changes, see some suggestion below:- https://issues.apache.org/jira/browse/HADOOP-11257 https://issues.apache.org/jira/browse/HIVE-10100
... View more
06-27-2016
12:10 PM
3 Kudos
In addition to Kuldeep's comment check your error message and verify your directory present in hdfs location and verify your application path oozie.wf.application.path=
... View more
06-09-2016
12:17 PM
4 Kudos
I'm getting same error in HDP 2.4 sandbox, if use %hive on Zeppelin and then aggregate functions are not working... %hive
select count(*) from health_table
java.lang.NullPointerException
at org.apache.zeppelin.hive.HiveInterpreter.getConnection(HiveInterpreter.java:184)
at org.apache.zeppelin.hive.HiveInterpreter.getStatement(HiveInterpreter.java:204)
at org.apache.zeppelin.hive.HiveInterpreter.executeSql(HiveInterpreter.java:233)
at org.apache.zeppelin.hive.HiveInterpreter.interpret(HiveInterpreter.java:328)
at org.apache.zeppelin.interpreter.ClassloaderInterpreter.interpret(ClassloaderInterpreter.java:57)
at org.apache.zeppelin.interpreter.LazyOpenInterpreter.interpret(LazyOpenInterpreter.java:93)
at org.apache.zeppelin.interpreter.remote.RemoteInterpreterServer$InterpretJob.jobRun(RemoteInterpreterServer.java:295)
at org.apache.zeppelin.scheduler.Job.run(Job.java:171)
at org.apache.zeppelin.scheduler.ParallelScheduler$JobRunner.run(ParallelScheduler.java:162)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
at java.util.concurrent.FutureTask.run(FutureTask.java:262)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:178)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:292)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
at java.lang.Thread.run(Thread.java:745) This issue resolved when i use %sql. I know your issue is not to related HDP sandbox 2.4 but may be this comment help someone using %hive on HDP sandbox 2.4.
... View more
- « Previous
- Next »