103. Databricks | Pyspark |Delta Lake: Spark/Databricks Interview Question Series - III

แชร์
ฝัง
  • เผยแพร่เมื่อ 1 ธ.ค. 2024

ความคิดเห็น • 27

  • @whymeiy
    @whymeiy ปีที่แล้ว +2

    Genuinely one of the best data engineering related courses I've ever seen. Clear and concise with practical demonstrations of the concepts discussed. I've recommended this playlist to the rest of my colleagues. Thank you very much for pulling this together! 💜

    • @rajasdataengineering7585
      @rajasdataengineering7585  ปีที่แล้ว

      Thanks for your comment and recommendation to your colleagues. Hope this course helps you gaining knowledge in bigdata and databricks

  • @SureshBabu-kf5jx
    @SureshBabu-kf5jx 10 หลายเดือนก่อน +1

    Hi Raja, Thank you so much for wonderful videos, Please do not mind to reduce the length of the videos and continue like however you want to post the videos. Each detailed point and explanation are very important for everyone. Whomever do not want lengthy videos they have option of forwarding or skipping. But if content is not there then, We will miss the information. Please consider this. Thanks again

  • @ruinmaster5039
    @ruinmaster5039 ปีที่แล้ว +1

    Thanks for sharing all this valuable inormation!!!

  • @tanushreenagar3116
    @tanushreenagar3116 ปีที่แล้ว +1

    Finally watched 🙌 whole playlist of delta lake it helped me a lot thank you 😊 🎉

  • @jhonsen9842
    @jhonsen9842 7 หลายเดือนก่อน +2

    I don't want to name others but for this same content some are charging heavy fees well its may be their way to feed their Family . But many thanks to you on this content.

  • @prabhatgupta6415
    @prabhatgupta6415 ปีที่แล้ว +3

    He is iron man of Big data

  • @sabesanj5509
    @sabesanj5509 ปีที่แล้ว +2

    Thank you so much raja bro for all your efforts in giving us those quality contents which will surely help aspiring big data candidates.

  • @latartecutieke772
    @latartecutieke772 ปีที่แล้ว +2

    Hello sir can you pls create video on deployment from dev to uat or other higher environments

  • @Learn2Share786
    @Learn2Share786 ปีที่แล้ว +1

    Thank you sir, pls make a detailed video on Question 18 ( SelectiveReplace) & Question 20(Deletion Vector)

    • @rajasdataengineering7585
      @rajasdataengineering7585  ปีที่แล้ว

      Ho Fahad, noted down. Sure will create videos on replacewhere and deletion vector

  • @lalithroy
    @lalithroy ปีที่แล้ว +1

    Hi Raja could you please make videos on delta live tables.

  • @VKGT11
    @VKGT11 ปีที่แล้ว

    I would like to know whether you provide any online training? I dropped you a mail regarding this. Thank you.

  • @hritiksharma7154
    @hritiksharma7154 ปีที่แล้ว

    Please create video on unity catalog setup.

  • @sundarrajan211
    @sundarrajan211 ปีที่แล้ว

    Bro do u know tamil?

  • @starmscloud
    @starmscloud ปีที่แล้ว +1

    Question No 23 :
    Drop UnManaged/ External Table :
    Run Below Commands in PySpark :
    First :Check the Path of the Table using following Piece of code :
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    spark.sql("DESCRIBE EXTENDED ") .show(truncate=False)
    Second : Drop the Table
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    if (spark.catalog._jcatalog.tableExists(""):
    spark.sql("DROP TABLE ")
    Third: Remove the File & Folder
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    dbutils.fs.rm(" " , recurse =true )