Member since
09-29-2015
51
Posts
9
Kudos Received
6
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
4061 | 11-10-2018 12:51 AM | |
5776 | 12-14-2017 09:53 PM | |
3240 | 09-01-2017 09:10 PM | |
3313 | 05-01-2017 09:54 PM | |
1540 | 02-08-2017 08:51 PM |
12-14-2017
09:53 PM
When you use "-log_files spark.log", you are basically asking for files of exact same name (spark.log). Probably the files older than 2 days are rotated to different names and hence not showing up. Alternately, you can use "-log_files_pattern <Log File Pattern>" to fetch all files which match a pattern. So maybe something like this will fetch all old logs for you "-log_files_pattern spark*"
... View more
12-11-2017
06:15 PM
Once you go to YARN Configs tab you can search for those properties. In latest versions of Ambari these show up in the Settings tab (not Advanced tab) as sliders. You can increase the values by moving the slider to the right or even click the edit pen to manually enter a value.
... View more
12-08-2017
05:29 PM
You should be able to over-subscribe memory by setting yarn.nodemanager.resource.memory-mb to a value higher than the actual physical memory in your nodes. Alternately, you might want to check the value of yarn.scheduler.minimum-allocation-mb and lower it a bit to accommodate for more containers.
... View more
11-03-2017
04:45 PM
Spark Client is overriding the AM memory from 512mb to 896MB. Can you check Spark AM logs and see if the AM is overriding the container memory from 256MB to the higher value?
... View more
10-30-2017
04:56 PM
One container is always the AM (application master), that's why it is 3. Can you click on the application ID in the first row, and then click on the attempt ID link and then on each of the 3 container ID links to see how much memory each container is taking?
... View more
10-30-2017
04:36 PM
Make sure you restart all YARN services RMs, NMs after the change
... View more
10-30-2017
04:25 PM
Yes, set yarn.scheduler.minimum-allocation-mb to 512mb or less.
... View more
10-30-2017
03:59 PM
1 Kudo
The 3GB is the total memory across all containers. 4 apps in that screenshot show 3GB because they have 3 running containers. If you see the app in the 3rd row you will see 1 container only and hence 1024mb.
... View more
10-16-2017
04:07 PM
Not sure why this comment went all the way to the top. In case you have missed, I am pasting it here again - "Still not very sure if this is what you need, but this might help - In Ambari go to YARN configs -> Advanced yarn-site -> set yarn.resourcemanager.max-completed-applications to 50"
... View more
10-13-2017
06:01 PM
1 Kudo
Still not very sure if this is what you need, but this might help - In Ambari go to YARN configs -> Advanced yarn-site -> set yarn.resourcemanager.max-completed-applications to 50
... View more
- « Previous
-
- 1
- 2
- Next »