Member since
08-16-2016
642
Posts
131
Kudos Received
68
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
3554 | 10-13-2017 09:42 PM | |
6529 | 09-14-2017 11:15 AM | |
3305 | 09-13-2017 10:35 PM | |
5272 | 09-13-2017 10:25 PM | |
5950 | 09-13-2017 10:05 PM |
12-31-2018
05:10 AM
Setting quota will work. Queries will fail with quota errors.
... View more
12-28-2018
05:48 AM
I don't think that it (Cloudera ODBC driver doesn't support insert) is true. By defining table as transcational table, you can insert data. CREATE TABLE insert_test( column1 string, column2 string) clustered by (column1) into 3 buckets stored as orcfile TBLPROPERTIES ('transactional'='true'); insert into table efvci_lnd_edw_dev.insert_test values('1', 'One'); insert into table efvci_lnd_edw_dev.insert_test values('2', 'Two'); Thanks, Chirag Patel
... View more
12-21-2018
12:55 AM
I can't see the relationship between yarn.scheduler.minimum-allocation-mb and the error is reported. According to hive documentation, yarn.scheduler.minimum-allocation-mb is the "container memory minimum". But in this case, the container is running of memory, so it makes sense to increase the "maximum-allocation" instead. Anyway, as it was answered, increasing "mapreduce.map.memory.mb" and "mapreduce.reduce.memory.mb" must work, as those parameters controls how much memory is used by the map-reduce task is run by Hive.
... View more
12-04-2018
07:43 AM
Hi, After clearing all the caches and Force quitting the Chrome, executing the following command works fine with Mac Chrome: /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --auth-server-whitelist="*.example.com" The difference in this command and the one in the documentation is that, here the command has "*.example.com" and in the documentation it is "hostname/domain" Hope that helps. Regards, Thina
... View more
11-30-2018
02:22 AM
I use the below trick in shell scripts for known queries that don't have an impact if killed. I call the impala-shell from bash/cron using the below line timeout 600 impala-shell -i $IMPALA_ADDRESS -q "compute stats hive_db.table_name;" The all important part is "timeout 600" which will end the session after 10 mins.
... View more
10-31-2018
09:04 AM
Any luck on the solution?
... View more
10-22-2018
06:43 PM
Thank you so munch! I change the group of '/tmp/logs' to hadoop , and restart the JobHistoryServer role, everything being OK. So happy !
... View more
10-18-2018
06:57 AM
How can i login to a master node of cluster via terminal ??? I looked for it every where but it made me more confuse. I appreciate your help. Thanks, Roshan
... View more