Member since
05-29-2017
408
Posts
123
Kudos Received
9
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2789 | 09-01-2017 06:26 AM | |
1701 | 05-04-2017 07:09 AM | |
1462 | 09-12-2016 05:58 PM | |
2082 | 07-22-2016 05:22 AM | |
1631 | 07-21-2016 07:50 AM |
06-29-2016
12:26 PM
@Rahul Pathak: I tried to go to grub menu in VM fusion by hitting shift during reboot but did not get success. So can you please let me know how to go to grub menu ?
... View more
06-29-2016
10:13 AM
I changed root password at very first time but it was a quite long time and now I forgot that password. So can anyone help me to reset it again in hdp 2.4
... View more
Labels:
- Labels:
-
Hortonworks Data Platform (HDP)
06-22-2016
07:05 AM
I have a requirement where we have to connect to HDP through teradata studio 15.11, but don't have any idea for this setup. Its new to me so can someone please help me to set it up. Thanks in advance.
... View more
Labels:
- Labels:
-
Hortonworks Data Platform (HDP)
06-21-2016
06:49 AM
@pooja khandelwal: You may use following approach to get hadoop archived file in your local machine. hadoop fs -text har:///org/project/archived/data/hive/warehouse/test.har/Stats/2016_06_20.txt > 2016_06_20.txt
... View more
06-08-2016
06:02 AM
1 Kudo
@Jitendra Yadav: This is a bug https://issues.apache.org/jira/browse/HIVE-13120 for odbc only. It was checking for wrong user due to this bug. hive.fetch.task.conversion
Default Value: minimal in Hive 0.10.0 through 0.13.1, more in Hive 0.14.0 and later Added In: Hive 0.10.0 with HIVE-2925; default changed in Hive 0.14.0 with HIVE-7397 Some select queries can be converted to a single FETCH task, minimizing latency. Currently the query should be single sourced not having any subquery and should not have any aggregations or distincts (which incur RS – ReduceSinkOperator, requiring a MapReduce task), lateral views and joins. Supported values are none, minimal and more . 0. none : Disable hive.fetch.task.conversion (value added in Hive 0.14.0 with HIVE-8389)
1. minimal : SELECT *, FILTER on partition columns (WHERE and HAVING clauses), LIMIT only
2. more : SELECT, FILTER, LIMIT only (including TABLESAMPLE, virtual columns) " more " can take any kind of expressions in the SELECT clause, including UDFs.
(UDTFs and lateral views are not yet supported – see HIVE-5718.) So to resolve this issue we have to set none like below and in this way issue will get resolved. hive.fetch.task.conversion=none
... View more
06-07-2016
12:03 PM
@Jitendra Yadav: I also thought of permission issue. But I did not get anything from ranger audit and even in hiveserevr2 log as well. I saw one suspicious thing,actually logged in user is getting switched to some other users. So any idea of such case ?
... View more
06-07-2016
10:32 AM
1 Kudo
@Jitendra Yadav: Yes Jitendra I am facing problem for mr also. but when I am using hive cli then it is running fine for tez and mr. 443/default> select * from testtable where lct_nbr=2413 and ivo_nbr in (17469,18630); Error: java.io.IOException: java.lang.RuntimeException: serious problem (state=,code=0)
... View more
06-07-2016
10:17 AM
Can you try check ambari server and agent status and if those are down then restart them . Check status : $service ambari-server status $service ambari-agent status Restart: $service ambari-server restart $service ambari-agent restart
... View more
06-07-2016
10:13 AM
Team, My simple query is failing with following error when I am running on external portioned table though beeline. 0: jdbc:hive2://server1:8443/default> select * from testtable where lct_nbr=2413 and ivo_nbr in (17469,18630); Error: java.io.IOException: java.lang.RuntimeException: serious problem (state=,code=0) I found following in hiveserver2 log. Caused by: java.io.IOException: java.lang.RuntimeException: serious problem
at org.apache.hadoop.hive.ql.exec.FetchOperator.getNextRow(FetchOperator.java:508)
at org.apache.hadoop.hive.ql.exec.FetchOperator.pushRow(FetchOperator.java:415)
at org.apache.hadoop.hive.ql.exec.FetchTask.fetch(FetchTask.java:140)
at org.apache.hive.service.cli.operation.SQLOperation.getNextRowSet(SQLOperation.java:347)
... 43 more
Caused by: java.lang.RuntimeException: serious problem
at org.apache.hadoop.hive.ql.io.orc.OrcInputFormat.generateSplitsInfo(OrcInputFormat.java:1059)
at org.apache.hadoop.hive.ql.io.orc.OrcInputFormat.getSplits(OrcInputFormat.java:1086)
at org.apache.hadoop.hive.ql.exec.FetchOperator.getNextSplits(FetchOperator.java:363)
at org.apache.hadoop.hive.ql.exec.FetchOperator.getRecordReader(FetchOperator.java:295)
at org.apache.hadoop.hive.ql.exec.FetchOperator.getNextRow(FetchOperator.java:446)
... 47 more
... View more
Labels:
- Labels:
-
Apache Hadoop
-
Apache Hive