Member since
02-29-2016
41
Posts
20
Kudos Received
0
Solutions
03-28-2018
09:43 AM
@alpertankut current link is https://www.cloudera.com/documentation/enterprise/latest/topics/impala_analytic_functions.html#row_number
... View more
03-12-2018
06:02 AM
Is it possible to write into a location directly instead of hdfs path ?
... View more
01-22-2018
01:25 PM
Hello everyone, I was wondering like Iamwan if it was still impossible today (in January 2018) to auto increment an ID (an int, a bigint or whatever) in a table (in Impala or Hive) when data are added. Would you have further information please ? I didn't find anything about it here : https://www.cloudera.com/documentation/enterprise/5-9-x/topics/impala_datatypes.html Have a nice day !
... View more
07-25-2016
08:45 AM
Hi @Ram, You may want to have a look here: https://docs.hortonworks.com/HDPDocuments/Ambari-2.2.2.0/bk_Ambari_Users_Guide/content/_configuring_notifications.html Ambari gives you the possibility to configure custom notifications and have email alerting. Hope this helps.
... View more
04-26-2016
10:56 PM
The CREATE EXTERNAL TABLE statement must match the format on disk. If the files are in a self-describing format like parquet, you should not need to specify any table properties to read them (remove the TBLPROPERTIES line). If you want to convert to a new format, including a different compression algorithm, you will need to create a new table.
... View more
03-22-2016
04:39 PM
@Ram Note that disks are required for NN also. See post related to sizing of NN. https://community.hortonworks.com/questions/1692/any-recommendation-on-how-to-partition-disk-space.html#answer-1762
... View more
12-15-2016
04:43 PM
Yep, its for hive;) Give it a try as per instructions mentioned on my github page. If you face any problems shoot a mail on manojkumarvohra9@gmail.com
... View more
02-25-2016
01:01 PM
3 Kudos
Hi @prakash pal there are some differences between these data types, basically string allows a variable length of characters (max 32K chars), char is a fixed length string (max. 255 chars). Usually (I doubt that this is different with Impala) CHAR is more efficient and can speed up operations and is better reg. memory allocation. (This does not mean always use CHAR) See this => "All data in CHAR and VARCHAR columns must be in a character encoding that is compatible with UTF-8. If you have binary data from another database system (that is, a BLOB type), use a STRING column to hold it." There are a lot of use cases where it makes sense to only use CHAR instead of STRING, e.g. lets say you want to have a column that stores the two-letter country code (ISO_3166-1_alpha-2; e.g. US, ES, UK,...), here it makes more sense to use CHAR.
... View more
02-26-2016
01:09 AM
@prakash pal Perfect! Please close the thread by accepting the answer.
... View more