An Azure analytics service that brings together data integration, enterprise data warehousing, and big data analytics. Previously known as Azure SQL Data Warehouse.
Hello @Anonymous ,
Welcome to the MS Q&A platform.
From your screenshot, I see you have XXLarge spark pool (64 Gb and 3 to 16 nodes)
So the total available V cores are 64* 16 = 1024 on the spark pool.
For your question: how to set the complete session size to a single node executor?
When you enable 'Dynamically Allocate Executors', sparkpool will Dynamically allocate executors between the min and max values.
If you want to allocate one executor, you can choose 'Dynamically Allocate Executors' to disable and set it to '1'
(or) enable "Dynamically allocate executors" and set the min 1 to max 1
meaning, your Notebook session will use = 1*64 + (1 driver) --( 1 executor *64 + 1 driver)
= 64+ 64
----------------
128 V cores will be available on the Notebook session
--------------
If you choose 2 executors then, the max available v-cores on the notebook session will be = 2*64+ (1 driver ) = 128 +64 = 192 Vcores
Here, the driver size is equal to executor size
(or)
I hope this helps. In case if you have any further questions, please let me know.
------------------------------
- Please don't forget to click on
and upvote
button whenever the information provided helps you. Original posters help the community find answers faster by identifying the correct answer. Here is how - Want a reminder to come back and check responses? Here is how to subscribe to a notification
- If you are interested in joining the VM program and help shape the future of Q&A: Here is how you can be part of Q&A Volunteer Moderators
Thank you.