Collect list function in hive and impala

2019-02-12T17:26:43

I am using

concat_ws(' ',  collect_list(field1)) as field1, 

but the query is not running in impala. Does impala not support this function? If not, what is an alternative for a similar operation in impala?

Copyright License:
Author:「Himanshu Garg」,Reproduced under the CC 4.0 BY-SA copyright license with link to original source & disclaimer.
Link to:https://stackoverflow.com/questions/54646702/collect-list-function-in-hive-and-impala

About “Collect list function in hive and impala” questions

I am using concat_ws(' ', collect_list(field1)) as field1, but the query is not running in impala. Does impala not support this function? If not, what is an alternative for a similar operati...
I am looking for a consistent way to hash something in both the Hive Query Language and the Impala Query Language where the hashing function produce the same value regardless of if it is done in Hi...
I have used HIVE 13.1 extensively and want to start running some of my jobs in Impala 2.5. What functionalities in current hive are not available in impala? Has anyone transitioned workflows from...
I have used HIVE 13.1 extensively and want to start running some of my jobs in Impala 2.5. What functionalities in current hive are not available in impala? Has anyone transitioned workflows from...
Situation - approximately 30 million rows per day, 2 years worth of data in Impala managed tables in CDH 5.2 cluster (16 nodes, shared cluster). Trying to put together a daily aggregation logic, ...
I want to understand why we don't use the NOLOCK keyword at the end SQL queries that run in Impala, Hive or MySQL. For example, I use both Hive and Impala through the Cloudera workbench at work. Cl...
How is Impala able to achieve lower latency than Hive in query processing? I was going through http://impala.apache.org/overview.html, where it is stated: To avoid latency, Impala circumvents
Despite having worked with traditional databases for years, I believe I have a fundamental misunderstanding of how Hive and Impala interact with HDFS (or just how HDFS works itself!) and would like...
I have two Hive UDFs in Java which work perfectly well in Hive. Both functions are complimentary to each other. String myUDF(BigInt) BigInt myUDFReverso(String) myUDF("myInput") gives some output
How to transpose column data to row data in impala I have tried some solution that not work in impala but working in hive. Table name : test Data: day name jobdone 2017-03-25 x_user ...

Copyright License:Reproduced under the CC 4.0 BY-SA copyright license with link to original source & disclaimer.