Spark Performance Tuning | Handling DATA Skewness | Interview Question

Поділитися
Вставка
  • Опубліковано 11 вер 2024

КОМЕНТАРІ • 34

  • @desparadoking8209
    @desparadoking8209 2 роки тому +1

    Very informative video 👍🙂

  • @sahiba2227
    @sahiba2227 3 роки тому +3

    7:24, repartition does full shuffling and hence creates equal size partitions. i.e It always guarantess the equal sized partitions.

  • @brothermalcolm
    @brothermalcolm 2 роки тому

    Great video, like the pace, like the presentation.

  • @AdityaKommu1
    @AdityaKommu1 4 роки тому +2

    Hello,
    Your videos are very good,
    Can you please do a video on incremental data load and full data load by taking an example?

  • @vijeandran
    @vijeandran 3 роки тому +1

    Hi Viresh, Thanks for the video.... How can we achieve salting technique in Pyspark?

  • @Dsmehra379
    @Dsmehra379 4 роки тому +1

    thank you so much for this video, but i am not able to find the 2nd part of this video.. Can you please comment the link for the part 2 video

  • @ayanbizz
    @ayanbizz 4 роки тому

    Nice explanation.A couple of questions 1) Repartitioning does ensure the data distribution is not skewed (unlike coalesce) 2) You said repartitioning uses the hash value to distribute the data (are you talking about bucketing ?)

    • @TechWithViresh
      @TechWithViresh  4 роки тому

      There are two provided partitioners in Spark 1. Hash partitioner and 2. Range partitioner.Default is Hash one.

    • @harshvardhansolanki1466
      @harshvardhansolanki1466 4 роки тому

      If you repartition on column, there you can get skewed data. If you repartition by number of parts then distribution may be almost equal.

  • @vivekpuurkayastha1580
    @vivekpuurkayastha1580 2 роки тому

    If the partition key is non numeric then how to perform salting? like your tower ids were numeric, but if instead of being 1, 2, .. they are to be A, B, ...

  • @ramkumarananthapalli7151
    @ramkumarananthapalli7151 2 роки тому +1

    Thank you for making this video. Could you suggest on which column mean, medium and the mode are calculated?

    • @bentchow
      @bentchow Рік тому

      The columns are those that are being shuffled by such as the join columns or group by columns. There is data skew when the distribution is not normal.

  • @ajaywade9418
    @ajaywade9418 Рік тому

    video from 11:30, we are adding random key to exiting towerid key
    for Example. tower id: 101 and salt key : 67 then 101+67= 168 hash value of the 168 would be a final value right.
    what in case of partition column is string datatype. ??

    • @TechWithViresh
      @TechWithViresh  Рік тому

      Incase of strings, we can add surrogate keys, based on string column values and then do the salting.

  • @rishigc
    @rishigc 4 роки тому

    @TechWithViresh I simply love your videos. I have watched your other tutorial videos too. They are awesome. I am interested in knowing how to do Iterative Broadcast Join with the SQL API. Any help is highly appreciated. Can you pls advise.

  • @Gecasomx
    @Gecasomx 3 роки тому

    Thanks for the video, no part 2 tho?

  • @udaynayak4788
    @udaynayak4788 2 роки тому

    Hi Viresh, can you please share the link for part 2

  • @SpiritOfIndiaaa
    @SpiritOfIndiaaa 4 роки тому

    thank you so much , really good , so what is the difference b/w isolation salting and salting ? and what is difference b/w , isolation map join & map join ??

  • @thanoojbharateeyudu3786
    @thanoojbharateeyudu3786 3 роки тому

    We could loose our key join by Salting key adding random numbers
    If we want to do join with the same key then problem
    May be join key could be the different on other than salted column

  • @harshvardhansolanki1466
    @harshvardhansolanki1466 4 роки тому

    Thank you so much for the video. I seek some clarification though.
    In your example you did mapPartition. Means for each partition of different keys, you updated the key with salt. But still the records remained in the respective partitions only. How will those records be shuffled across partitions for equal distribution?

    • @TechWithViresh
      @TechWithViresh  4 роки тому

      Partition will change with the change in the key, as it is essentially the hascode of key+salt now.

    • @harshvardhansolanki1466
      @harshvardhansolanki1466 4 роки тому

      @@TechWithViresh I tried it so I believe a new DF will have to be created and REPARTITIONED again! in order for the records to be shuffle by updated salted keys. It wont just trigger shuffle on key update in mapPartition function! That only makes sense.

  • @jaiharsad7121
    @jaiharsad7121 4 роки тому

    Hi sir, pls upload the spark interview question videos which were present earlier.. I'm not able to find them in your playlist

    • @TechWithViresh
      @TechWithViresh  4 роки тому

      All the videos are uploaded, please check:)

  • @chilukapavan6344
    @chilukapavan6344 4 роки тому

    Awesome video 🙏...can you pls share part2 video link

  • @rishigc
    @rishigc 4 роки тому

    where is Part 2 ?

  • @bhuneshwarsingh630
    @bhuneshwarsingh630 4 роки тому

    please give some solid coding example with explaination

  • @aneksingh4496
    @aneksingh4496 4 роки тому

    have u uploaded part 2 of this

    • @TechWithViresh
      @TechWithViresh  4 роки тому

      Check out other videos in the playlist for performance optimization and executor tuning.

  • @Hk-eo5yr
    @Hk-eo5yr 4 роки тому

    can u share part 2 video