34. Databricks - Spark: Data Skew Optimization

Поделиться
HTML-код
  • Опубликовано: 8 ноя 2024

Комментарии • 33

  • @Prashanth-os5he
    @Prashanth-os5he Год назад +4

    This is by far the best databricks and spark tutorial series on youtube... great job Raja

  • @sumanmondal8836
    @sumanmondal8836 2 года назад +3

    Thanks, Raja, your explanations are really good...can you please make a video on salting techniques with example? It will be very helpful.

  • @abhinavsingh1173
    @abhinavsingh1173 Год назад +2

    Your course it
    best. But problem with you course is that you are not attching the github link for your sample data and code. Irequest you as your audience please do this. Thanks

  • @skasifali4457
    @skasifali4457 2 года назад +2

    Thanks Raja..Your video is really useful. Can you please create a video on debugging techniques and how we can use spark UI to debug and understand the bottleneck using use cases. Thanks a lot again

  • @swapnilgosawi
    @swapnilgosawi 2 месяца назад

    Do you have a document with all these details ?if yes, that would be great to share on git., Really Great explanation. Thank you !!

  • @srinubathina7191
    @srinubathina7191 Год назад +1

    Awesome content Thank You So much Sir

  • @joyo2122
    @joyo2122 2 года назад +1

    You are the best Raja 🙌

  • @iamkiri_
    @iamkiri_ 11 месяцев назад +1

    Thanks for the video, I have a question.. Is salting technique applied while reading the data from source or during intermediate processing of the application..

  • @SaurabhDestiny18
    @SaurabhDestiny18 Год назад

    Hi Tq for such useful videos, i have one question, i am still confused about executor boundary and cores/tasks boundary. In your first video you mentioned executor can have many cores/ram and then this video you mention executor runs in its own jvm process , which means all the cores/tasks are running under one jvm process? Or under than parent jvm process there are many more jvm process are running which are equal to number of cores/tasks?

  • @Personalcomments
    @Personalcomments 2 года назад +1

    Your videos are very informative. Can you please post a video on Client mode vs Cluster mode vs local

  • @VishalSharma-hv6ks
    @VishalSharma-hv6ks 2 года назад +2

    You mainly focus on theoretical. It would be great if you write the code for salting as well.

  • @rajunaik8803
    @rajunaik8803 Год назад +1

    Hi Raja, QQ - Does AQE take care of salting and skew hint technique automatically in case of data skewness?
    Or do we have to explicitly apply them?

    • @rajasdataengineering7585
      @rajasdataengineering7585  Год назад +1

      Yes AQE handles data skewness automatically. In later spark versions after 3.0, it is enabled by default. For prior versions of spark, we just need to enable AQE through spark config settings

    • @rajunaik8803
      @rajunaik8803 Год назад

      @@rajasdataengineering7585 thanks alot for your response. Do you have any telegram channel? And may I know your LinkedIn id please

  • @sravankumar1767
    @sravankumar1767 2 года назад +1

    Superb

  • @naveenkumarsingh3829
    @naveenkumarsingh3829 5 месяцев назад

    why cant we use set maxpartitionbytes to get equal size of partitions and handle data skewness?

  • @tanushreenagar3116
    @tanushreenagar3116 2 года назад +1

    nice

  • @balakrishna61
    @balakrishna61 6 месяцев назад

    @rajasdataengineering7585 Please explain salting in detail.It's not clear how you parition the German-1,_2 and so on .Each record will become one partition correct in this case?

  • @prathapganesh7021
    @prathapganesh7021 7 месяцев назад +1

    thank you

  • @sanskarsuman9340
    @sanskarsuman9340 2 года назад +1

    i have doubt:
    when u say data is partitioned on country and there are five different countries, out of which lets say Germany has 80% of data, so how can I say that germany data is in single partition only? coz partition is determined on the size of the block and 1 parttion = 128mb size, so depending on its size, germany data could be splitted into multiple partitions automatically?