21 Broadcast Variable and Accumulators in Spark

Sdílet
Vložit
  • čas přidán 26. 07. 2024
  • Video explains - What are Distributed variable in Spark? How they work? What is Broadcast variable? What are Accumulators?
    Chapters
    00:00 - Introduction
    02:24 - Broadcast Variable
    06:57 - Accumulators
    Local PySpark Jupyter Lab setup - • 03 Data Lakehouse | Da...
    Python Basics - www.learnpython.org/
    GitHub URL for code - github.com/subhamkharwal/pysp...
    The series provides a step-by-step guide to learning PySpark, a popular open-source distributed computing framework that is used for big data processing.
    New video in every 3 days ❤️
    #spark #pyspark #python #dataengineering

Komentáře • 13

  • @DEwithDhairy
    @DEwithDhairy Před 5 měsíci

    AWESOME

  • @sureshraina321
    @sureshraina321 Před 7 měsíci +1

    @8:50 , I have one small doubt " we have already filtered out the department_id == 6 , In that case we wont have any other department other than 6. Do we need to really groupBy(department_id) after filtering ?? ".

    • @easewithdata
      @easewithdata  Před 7 měsíci +1

      Yes, since the data is already filtered you can directly apply sum on it. Group by is not mandatory

    • @sureshraina321
      @sureshraina321 Před 7 měsíci

      ​@@easewithdata
      Thank you 👍

  • @TechnoSparkBigData
    @TechnoSparkBigData Před 6 měsíci +1

    In last video you mentioned that we should avoid UDF but here you used it during getting the broadcast value. Will it impact the performance?

    • @easewithdata
      @easewithdata  Před 6 měsíci +1

      Yes we should avoid Python UDF as much as possible. This example was just for demonstration of an use case of broadcast variable.
      You can always use UDF written in Scala and registered for use in Python.

    • @TechnoSparkBigData
      @TechnoSparkBigData Před 6 měsíci

      @@easewithdata thanks

  • @devarajusankruth7115
    @devarajusankruth7115 Před měsícem

    hi sir, what is the difference between broadcast join and broadcast variable.
    in broadcast join also a copy of smaller dataframe is stored at each executor,so no shuffling happens across the executors

    • @easewithdata
      @easewithdata  Před měsícem

      Broadcast joins implements the same concept of broadcast variable. It simplifies the use in Dataframes

  • @sushantashow000
    @sushantashow000 Před 24 dny

    can accumulator variables be used to calculate avg as well? as when we are calculating the sum it can do for each executors but average wont work in the same way.

    • @easewithdata
      @easewithdata  Před 23 dny

      Hello Sushant,
      To calculate avg, the simplest approach is to use two variables one for sum and another for count. Later you can divide the sum with count to get the avg.
      If you like the content, please make sure to share with your network 🛜

  • @at-cv9ky
    @at-cv9ky Před 5 měsíci

    pls can you provide the link to download sample data ?

    • @easewithdata
      @easewithdata  Před 5 měsíci

      All datasets are available on GitHub. Checkout the url in video description