Тёмный
No video :(

Apache Spark Memory Management 

Afaque Ahmad
Подписаться 5 тыс.
Просмотров 9 тыс.
50% 1

Опубликовано:

 

22 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 63   
@hritikapal683
@hritikapal683 4 месяца назад
Please don't stop making videos they're highly insightful!
@afaqueahmad7117
@afaqueahmad7117 4 месяца назад
Appreciate it :)
@nayanroy13
@nayanroy13 5 месяцев назад
The best 23mins 8secs I have ever spent :). This is easily one of the most useful videos on RU-vid!
@afaqueahmad7117
@afaqueahmad7117 5 месяцев назад
Thank you @nayanroy13, means a lot :)
@himanshuxyz87
@himanshuxyz87 4 месяца назад
I have read so many articles before on Spark Memory Management but this is the first time I have understood the allocation and other details so clearly. Thanks a lot. Really helpful video.
@afaqueahmad7117
@afaqueahmad7117 4 месяца назад
@himanshuxyz87 This means a lot, thank you for the appreciation :)
@Pratik0917
@Pratik0917 3 месяца назад
All Videos are of high quality. I dont think we could this level of knowledge anywhere.. THank you, Afaque
@afaqueahmad7117
@afaqueahmad7117 3 месяца назад
Thank you @Pratik0917, appreciate it, means a lot to me :)
@vinitrai5020
@vinitrai5020 5 месяцев назад
Hey Afique, thanks for the wonderful explanation. Ok, so now I have got a few questions, plz clear the doubts: 1. In the unified memory, what if the the execution memory needs the full space that is occupied by storage memory, can the blocks from the storage memory be evicted to make room for the execution memory? So, can the execution memory occupy 100% of the space of unified memory (execution + storage) 2. If yes, so let's suppose an event where the execution memory occupies the full unified memory and it still needs more memory. 3. So, in this case, we have two choices -a disk spill or an off heap memory, we should opt for off heap memory over disk spill as u explained in your video . 4. The most important question now is that if we can use disk spill or off heap memory why do we get Out Of Memory Error in executors. I hope that you got my points and will soon get clear explanations from your end. Thanks again.
@afaqueahmad7117
@afaqueahmad7117 5 месяцев назад
Hi @vinitrai5020, Good question! Yes, execution can request 100% of space from the unified memory manager pool, however, in cases where you want to immune the cached blocks from eviction, you can always set `spark.memory.storageFraction` to a value. If you set this value to, for e.g. 0.1, 10% of the total memory cannot be evicted by execution. However, it is important to note that this is on-demand. If `spark.memory.storageFraction` is set to 0.1 (10%) but nothing is cached, execution will just go ahead and use that storage memory and storage will wait for that 10% memory to free up before it can use it. Refer Spark documentation here: spark.apache.org/docs/latest/tuning.html#memory-management-overview On Spark throwing OOM errors, despite always having the option to spill to disk is because most in-memory structures used for joins, aggregations, sorting, shuffling cannot be “split”. Consider an example where you’re doing a join or an aggregation. In this operation, the same keys land in the same partition. Imagine one of the join/aggregation key being so large that it doesn’t fit in-memory. Now, spill doesn’t work here because that in-memory structure “supposedly” holding that large key cannot be “split” i.e. depending on the nature of data, half of the join cannot be done while spilling the rest and then later getting the spilled data back and doing the join for this half. This is primarily because that in-memory structure cannot be “split”. Enabling off-heap memory would help reduce the memory pressure and now: - Total execution memory = execution (on-heap) + execution (off-heap) - Total storage memory = storage (on-heap) + storage (off-heap) If the size of the large key (as discussed above) is good enough to fit in the total execution memory after enabling off-heap memory, an OOM will be avoided. Hope this clarifies :)
@tahiliani22
@tahiliani22 4 месяца назад
@@afaqueahmad7117 Thanks for explaining this. I had the same question and this really helps.
@SurendraKumar-qj9tv
@SurendraKumar-qj9tv 15 дней назад
Awesome explanations! pls share us more relevant videos
@cloudanddatauniverse
@cloudanddatauniverse Месяц назад
Top Class brother! Simple, Amazing and impactful. You deserve great appreciation to bring these internals. May God bless you with great health, peace, mind and prosperity! Keep growing.
@afaqueahmad7117
@afaqueahmad7117 Месяц назад
Many thanks @cloudanddatauniverse, this means a lot, thank you for the kind words :)
@skybluelearner4198
@skybluelearner4198 11 дней назад
I spent INR 42000 on a Big Data course but could not understand this concept clearly because the trainer himself lacked clarity. Here I understood completely.
@afaqueahmad7117
@afaqueahmad7117 9 дней назад
Appreciate the kind words @skybluelearner4198 :)
@iamexplorer6052
@iamexplorer6052 5 месяцев назад
Thank you we are expecting you with solid content like this
@afaqueahmad7117
@afaqueahmad7117 5 месяцев назад
@iamexplorer6052 Really appreciate it :)
@senthilkumarpalanisamy365
@senthilkumarpalanisamy365 Месяц назад
Excellent and clear cut explanation, thanks much for taking time and preaparing the content. Please do more.
@afaqueahmad7117
@afaqueahmad7117 9 дней назад
Appreciate it @senthilkumarpalanisamy365. More coming soon, stay tuned :)
@PratikPande-k5h
@PratikPande-k5h 29 дней назад
Really appreciate your efforts. This was very easy to understand and comprehensive as well.
@afaqueahmad7117
@afaqueahmad7117 9 дней назад
@PratikPande-k5h Glad you're finding it easy to understand :)
@rgv5966
@rgv5966 Месяц назад
Hey @afaque, this is top class stuff, thanks for putting in all the effort and making it available for us. Keep going :)
@afaqueahmad7117
@afaqueahmad7117 Месяц назад
Many thanks @rgv5966, this means a lot, appreciate it :)
@Ravi_Teja_Padala_tAlKs
@Ravi_Teja_Padala_tAlKs 21 день назад
Excellent 🎉 👍 appreciate your effort
@technicalsuranii
@technicalsuranii 4 месяца назад
Very in-depth description of Apache Spark Memory management 🎉🎉❤
@afaqueahmad7117
@afaqueahmad7117 4 месяца назад
Thank you @technicalsuranii, appreciate it :)
@coledenesik
@coledenesik 2 месяца назад
I have two accounts in RU-vid and subscribed in both, Reason is you are putting some serious effort into the content. Beautiful Diagrams clear explanation accurate information is beauty of your content. Thanks, Afaque Bhai
@afaqueahmad7117
@afaqueahmad7117 2 месяца назад
Bohot shukriya @coledenesik bhai :) This comment made my day. Thank you for appreciating my efforts, it means a lot to me brother
@Akshaykumar-pu4vi
@Akshaykumar-pu4vi 17 дней назад
Useful information
@nikhillingam4630
@nikhillingam4630 Месяц назад
It's very useful ❤
@iamkiri_
@iamkiri_ 4 месяца назад
Good one Bro. You are one of the elite DataEngineer youtuber -)
@afaqueahmad7117
@afaqueahmad7117 4 месяца назад
@iamkiri_ Thanks man, it means a lot to me :)
@prabas5646
@prabas5646 2 месяца назад
Excellent.. pls keep posting on internals of spark
@afaqueahmad7117
@afaqueahmad7117 2 месяца назад
Thanks @prabas5646, appreciate it :)
@pratikparbhane8677
@pratikparbhane8677 4 месяца назад
You are the Real Gem❤ , Thanks Bhai for crystal clear explanation❤❤
@afaqueahmad7117
@afaqueahmad7117 4 месяца назад
@pratikparbhane8677 Means a lot, thank you :)
@avinash7003
@avinash7003 4 месяца назад
please do one full time project on Apache Spark
@afaqueahmad7117
@afaqueahmad7117 3 месяца назад
Thanks for the suggestion @avinash7003! It's in the plan.
@avinash7003
@avinash7003 3 месяца назад
@@afaqueahmad7117 upload most questions asked in Data engineering interview
@amiyakumarnayak8286
@amiyakumarnayak8286 4 месяца назад
very detailed explanation. Thanks
@rambabuposa5082
@rambabuposa5082 4 месяца назад
Thanks Afaque Ahmad, very good series and loved all of them. Good work I have a few questions for you, may be we can discuss here if possible or if you are planning a new video, I will wait for it. 1. Here you discussed about Executor Memory Management. What about Driver Memory Management, how it works internally? 2. What are the similarities between Executor and Driver Memory Management? 3. What are the differences between Executor and Driver Memory Management? Many thanks in advance.
@afaqueahmad7117
@afaqueahmad7117 4 месяца назад
Hey @rambabuposa5082, thank you for the kind words, really appreciate it :) Regarding `Driver Memory Management`, appreciate the ask, but I do not have plans yet for a video. Reason is, I believe Driver & Executor memory management go hand-in-hand and relatively easy to manage Driver if your concepts are clear on Executor memory management because of several similarities (as you asked in one of your questions). Internally their memory components look similar in the sense that they both have JVM (on-heap) and off-heap memory and the division/logic of memory in the driver is just the same as the executor. Key differences are in terms of "roles and usage". You would have 1 driver which is solely responsible for creating tasks, scheduling those tasks, communicating back and forth with the executors on progress and aggregating the results (if needed), therefore its memory usage patterns differ from those of executors, which perform the actual data processing and storage. An important difference is on the ways OOM (out of memory errors) would happen on drivers vs executors. Hopefully, I'll be creating some content on OOM & other issues specifically and how to navigate through them. Hope that clarifies :)
@bhargaviakkineni
@bhargaviakkineni День назад
Sir please do a video on executor out of memory in spark and driver out of memory in spark
@user-sk8vi1xy7q
@user-sk8vi1xy7q 3 месяца назад
Rare video thanks for making this video. Please make more videos ❤
@afaqueahmad7117
@afaqueahmad7117 3 месяца назад
Thank you @user-sk8vi1xy7q, appreciate the kind words :)
@ybalasaireddy1248
@ybalasaireddy1248 5 месяцев назад
Thanks for the Fabulous content. More power to you
@afaqueahmad7117
@afaqueahmad7117 5 месяцев назад
Thank you @ybalasaireddy1248, really appreciate it :)
@AlluArjun-ds9hh
@AlluArjun-ds9hh 5 месяцев назад
Can you please explain more about serialization and deserialization in spark?
@bhargaviakkineni
@bhargaviakkineni 4 месяца назад
Excellent video sir. Could u please make a video on garbage collection in spark and jvm
@piyushkumawat8042
@piyushkumawat8042 22 дня назад
Why to give such a large fraction (0.4) to User memory as in the end when the transformations will be performed in a particular stage , whether we give it a user defined function or any other function execution memory will be only used . So Whats exactly the role of User Memory ??
@deepakgonugunta
@deepakgonugunta 4 месяца назад
Please don't stop making videos
@afaqueahmad7117
@afaqueahmad7117 4 месяца назад
Appreciate it, @deepakgonugunta :)
@marreddyp3010
@marreddyp3010 4 месяца назад
Thanks for the excellent content. Could we see all the mentioned memory details in spark ui.
@afaqueahmad7117
@afaqueahmad7117 4 месяца назад
Thanks @marreddyp3010! RE: Spark UI, on the "Executors" tab, you can see most of the memory components - storage, on-heap, off-heap memory, disk usage
@marreddyp3010
@marreddyp3010 4 месяца назад
@@afaqueahmad7117 I am confused with user memory . As per spark documentation by default it is 40% of total memory. How can we check usage this memory in spark ui. Could you kindly please help to sort it. Kindly please make poc (proof of concept) video on resources usage by using GB's of data.
@dileepn2479
@dileepn2479 3 месяца назад
What is the use of overhead memory ?
@afaqueahmad7117
@afaqueahmad7117 3 месяца назад
Hey @dileepn2479, as mentioned at 4.18, it's used for internal system level operations - these are not directly related to data processing but are essential for the proper functioning of the executor e.g. managing memory for JVM, networking during shuffling etc.. Hope this clarifies :)
@dileepn2479
@dileepn2479 3 месяца назад
Thank you @@afaqueahmad7117 . I wasn't expecting such swift response from your end . Thanks much again !!
@grim_rreaperr
@grim_rreaperr 4 месяца назад
Thanks a lot bhai
@afaqueahmad7117
@afaqueahmad7117 4 месяца назад
Appreciate it, bhai :)
@i_am_out_of_office_
@i_am_out_of_office_ 5 месяцев назад
keep it coming!!
@afaqueahmad7117
@afaqueahmad7117 5 месяцев назад
More on the way :)
Далее
КТО ЛЮБИТ ГРИБЫ?? #shorts
00:24
Просмотров 1,1 млн
would you eat this? #shorts
00:29
Просмотров 1,5 млн
Deep Dive: Apache Spark Memory Management
26:13
Просмотров 55 тыс.
Shuffle Partition Spark Optimization: 10x Faster!
19:03
Data Validation with Pyspark || Real Time Scenario
37:34
Top 7 Ways to 10x Your API Performance
6:05
Просмотров 324 тыс.
Master Reading Spark Query Plans
39:19
Просмотров 28 тыс.
КТО ЛЮБИТ ГРИБЫ?? #shorts
00:24
Просмотров 1,1 млн