Support Questions

Find answers, ask questions, and share your expertise
Announcements
Check out our newest addition to the community, the Cloudera Data Analytics (CDA) group hub.

SPARK job taking more memory then it is given

Contributor

Hi,

As my question is saying. Lets say I'm submiting spark-job like this:

spark-submit --class streaming.test --master yarn --deploy-mode cluster --name some_name  --executor-memory 512m --executor-cores 1 --driver-memory 512m some.jar

The job is submited and it is running as you can see here:

screenshot-6.jpg

But as you can see, I gave to job 512MB of RAM, YARN gave 3GB and it is happening for every Spark job I'm submitting. Can someone lead me where I'm mistaking?

UPDATE:
I have 3 RMs. and yarn.scheduler.minimum-alocation-mb is set to 1024. Is that because this 1024 *(num of of RM) ?

13 REPLIES 13

Rising Star

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.

Contributor

Hi @Gour Saha
Is it somehow possible to allocate just 512 because, apps jobs aren't that "expensive" that they need 3-4GBs of RAM?
Thank you 🙂

Rising Star

Yes, set yarn.scheduler.minimum-allocation-mb to 512mb or less.

Contributor

Actually I did so, kill the app, submit the same app with same config and he took 3GB again. I'll give it a shot again and give u feedback asap

Rising Star

Make sure you restart all YARN services RMs, NMs after the change

Contributor

Yeah, yeah I did it of course, it was suggesting.
I tested once more, and the same job is still taking 3GB, this s how my config looks like now screenshot-7.jpg

Contributor

I really have feelling like YARN is overriding parameters I'm passing. Also I tried to set --num-executors to 2, he set 3 as you can see on the first picture above

Rising Star

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?

Contributor

I decreased

yarn.scheduler.minimum-alocation-mb to 256MB

Spark submit configs now are following:

--executor-memory 256m --executor-cores 1 --num-executors 1 --driver-memory 512m

I need it to set --driver-memory to 512MB since application wouldn't start. So, with this configs application is taking 2 GB of RAM and as you were asking => Job is as You assume across 2 containers and each is taking 1024MB

UPDATE:
In INFO of Spark job I can see this:

17/10/30 17:57:10 INFO Client: Will allocate AM container, with 896 MB memory including 384 MB overhead

Rising Star

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?

Contributor

Spark AM logs? Can you lead me please? :S

Contributor

@Gour Saha

Can you please help me?

Rising Star

In the RM UI, you can click on the app id link for a spark job and follow the app-attempt link and then click on the logs link against the first container (typically the one ending with 0001). Check the AM logs there and see what you find.

Take a Tour of the Community
Don't have an account?
Your experience may be limited. Sign in to explore more.