Big Data Engineering Mock Interview | Big Data Pipeline | AWS Cloud Services | Project Architecture

แชร์
ฝัง
  • เผยแพร่เมื่อ 24 มี.ค. 2024
  • To enhance your career as a Cloud Data Engineer, Check trendytech.in/?src=youtube&su... for curated courses developed by me.
    I have trained over 20,000+ professionals in the field of Data Engineering in the last 5 years.
    30 INTERVIEWS IN 30 DAYS- BIG DATA INTERVIEW SERIES
    This mock interview series is launched as a community initiative under Data Engineers Club aimed at aiding the community's growth and development
    Our highly experienced guest interviewer, Satinder, / satinder-singh-699aab2b shares invaluable insights and practical advice coming from her extensive experience.
    Our talented guest interviewee Aditya Patil, / ap-patil has an impressive approach to answering the interview questions in a very well articulated manner.
    Link of Free SQL & Python series developed by me are given below -
    SQL Playlist - • SQL tutorial for every...
    Python Playlist - • Complete Python By Sum...
    Don't miss out - Subscribe to the channel for more such informative interviews and unlock the secrets to success in this thriving field!
    Social Media Links :
    LinkedIn - / bigdatabysumit
    Twitter - / bigdatasumit
    Instagram - / bigdatabysumit
    Student Testimonials - trendytech.in/#testimonials
    Discussed Questions : Timestamp
    2:34 Brief overview of projects.
    3:19 Describe your data pipeline flow and architecture.
    5:10 What transformations do you use, and in which format do you write data to Redshift?
    6:44 How do you handle null values?
    9:03 Which file format do you use for end-user data?
    9:50 Why is Parquet preferred over ORC?
    11:10 What are the join types in Hive?
    12:07 Which types of joins are used to avoid shuffling in Hive and PySpark? Do you know the specific term?
    12:53 Explain how broadcast join avoids shuffling.
    14:07 Which property controls broadcast join in Spark?
    14:40 How do you start a Spark application in PySpark?
    16:09 What does the builder do in Spark session creation?
    17:43 What are the partitioning types in Hive?
    18:36 Difference between managed and external tables in Hive.
    19:16 Have you performed Spark performance tuning?
    19:36 Difference between repartition and coalesce in Spark?
    20:25 Have you used NoSQL databases?
    21:02 SQL coding question
    Tags
    #mockinterview #bigdata #career #dataengineering #data #datascience #dataanalysis #productbasedcompanies #interviewquestions #apachespark #google #interview #faang #companies #amazon #walmart #flipkart #microsoft #azure #databricks #jobs

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

  • @imranhossain1660
    @imranhossain1660 3 หลายเดือนก่อน +5

    parquet is a columnar based storage format, so it is a very good file format in terms of retrieving the data through the query. It definitely reduces the usage of i/o read and network bandwidth. Besides that it has built in support for compression in the form of snappy format. So it reduces the space usgae. Another one I can think of is, parquet files comes up a structure with 3 components, they are header, body and footer. Heder actually the name of the file(part001,part002). Body is actual data content which it is storing and footer is basically for the metadata. This metadata includes the minimum and maximum values of the columns. So whenever we try to query the data which is stored in parquet format this metadata helps us for the data skipping which in turn fast our query execution. Hope it helps.

  • @mohammedalikhan9819
    @mohammedalikhan9819 3 หลายเดือนก่อน +9

    The interview was more focused on pyspark, sql we expect interviewer to ask more qns on AWS cloud as well. Because in most of the interview videos posted pyspark has been asked a lot.If qns on AWS would have been asked it would have been very helpful.

    • @sumitmittal07
      @sumitmittal07  3 หลายเดือนก่อน +1

      Hi Mohammed, will definitely have some interviews planned specifically for AWS in the upcoming days.

    • @mohammedalikhan9819
      @mohammedalikhan9819 3 หลายเดือนก่อน

      Thank you sir😊

    • @avinash7003
      @avinash7003 3 หลายเดือนก่อน

      I see mostly asked 70% in Pyspark SQL rest cloud ​@@mohammedalikhan9819

  • @mojibshaikh4092
    @mojibshaikh4092 2 หลายเดือนก่อน

    Informative and Excellent interview.

  • @sauravroy9889
    @sauravroy9889 3 หลายเดือนก่อน

    Really nice interview sir.❤

  • @KiyanshLife
    @KiyanshLife 3 หลายเดือนก่อน +4

    Best Interview I ever seen. Both of you too good at your level.

    • @sumitmittal07
      @sumitmittal07  3 หลายเดือนก่อน +1

      yes this interview was next level

  • @tanujarora4906
    @tanujarora4906 หลายเดือนก่อน

    Satinder sir is awesome, always something to learn from his questions.

  • @sruthiselvakumar9817
    @sruthiselvakumar9817 3 หลายเดือนก่อน +2

    This interview is really great as Satinder explained some concepts like property for broadcast etc more clearly. Thanks Sumit Sir!! Expecting more videos like this..

    • @sumitmittal07
      @sumitmittal07  3 หลายเดือนก่อน +1

      satinder will be conducting more interviews

  • @goldykarn5922
    @goldykarn5922 3 หลายเดือนก่อน

    Best interview session so far.

  • @abhishekmodak8496
    @abhishekmodak8496 3 หลายเดือนก่อน

    This was a good interview and Satinder has good experience as an interviewer.

  • @user-im6ui9zd8v
    @user-im6ui9zd8v 3 หลายเดือนก่อน +2

    This was a good interview. Different from the earlier one's. Satinder's question and advice was very good.

    • @sumitmittal07
      @sumitmittal07  3 หลายเดือนก่อน

      this interview has really gone well

  • @grim_rreaperr
    @grim_rreaperr 3 หลายเดือนก่อน

    Hi Sumit Sir,
    In the first sql problem where we are required to find subject wise toppers, one case where row_number() will fail is when we have two top-scorers with the same marks in a specific subject. Please check the example below:
    student_name, subject, marks (-- derived column)
    stud_1, maths, 90 -- 1
    stud_2, maths, 90 -- 1
    stud_1,economics, 95 --1
    stud_2, economics, 90 -- 2
    stud_3, economics, 88 -- 3
    Instead of row_number(), we can choose any one from rank or dense_rank as we just need the first rankers(based on highest marks scored in each subject). My approach will be as follows:
    WITH top_scorers AS
    (
    SELECT student_name,
    subject,
    marks,
    DENSE_RANK() OVER(PARTITION BY subject ORDER BY marks DESC) AS rnk
    FROM student_marks
    )
    SELECT student_name,
    subject,
    marks
    FROM top_scorers
    WHERE rnk = 1;

  • @safarnama65
    @safarnama65 3 หลายเดือนก่อน

    Very Informative one of the best mock interview with proper answering and details

    • @sumitmittal07
      @sumitmittal07  3 หลายเดือนก่อน

      Keep watching for more such insightful interviews

  • @akshaykumarverma8644
    @akshaykumarverma8644 3 หลายเดือนก่อน

    This was a very good video

  • @ashwenkumar
    @ashwenkumar หลายเดือนก่อน

    Aditya - u need to be strong in the basics and always answer straight forward and crisply on points . Don’t beat the bush

  • @DataJourneyHub
    @DataJourneyHub 3 หลายเดือนก่อน

    It’s really helpful sir. Thank you so much

  • @Sagar0155
    @Sagar0155 3 หลายเดือนก่อน

    Interview was insightful. Learnt core concepts of spark from Satinder

    • @sumitmittal07
      @sumitmittal07  3 หลายเดือนก่อน

      glad that it helped you

  • @sabyspeaksonline
    @sabyspeaksonline 3 หลายเดือนก่อน

    What's the difference between parquet and delta format?

  • @abhishekkmalik4399
    @abhishekkmalik4399 3 หลายเดือนก่อน

    Very informative video, liked the point of view by Satinder Sir.

    • @sumitmittal07
      @sumitmittal07  3 หลายเดือนก่อน

      satinder is a very knowledgeable person

  • @DesireIsIrrelevant
    @DesireIsIrrelevant 3 หลายเดือนก่อน

    Thanks for uploading such a great Interview video Sir!

    • @sumitmittal07
      @sumitmittal07  3 หลายเดือนก่อน

      Glad you found the interview informative!

  • @AliKhanLuckky
    @AliKhanLuckky 3 หลายเดือนก่อน +1

    Sir i personaly want to see satinder sirs more interviews 😊

    • @sumitmittal07
      @sumitmittal07  3 หลายเดือนก่อน +1

      yes definitely, he will be conducting more interviews

  • @zaffer2024
    @zaffer2024 3 หลายเดือนก่อน

    Excellent

  • @Abhishek-14
    @Abhishek-14 3 หลายเดือนก่อน +3

    Sir please continue python course along with this 🙏

    • @sumitmittal07
      @sumitmittal07  3 หลายเดือนก่อน +2

      yes, one video coming tomorrow at 7 pm

    • @Abhishek-14
      @Abhishek-14 3 หลายเดือนก่อน

      @@sumitmittal07 thank you so much sir that's a relief to hear this.

  • @amritmanash7950
    @amritmanash7950 3 หลายเดือนก่อน

    Very nice interview

    • @sumitmittal07
      @sumitmittal07  3 หลายเดือนก่อน

      glad that you liked it

  • @ameygoesgaming8793
    @ameygoesgaming8793 3 หลายเดือนก่อน

    My SQL would be:
    SELECT student_id, max(marks)
    FROM class
    GROUP BY subject

    • @grim_rreaperr
      @grim_rreaperr 3 หลายเดือนก่อน

      every non-aggregated column in your select statement must be included in the group by statement.( here student_id is a non aggregated column and it should be in your group by clause and same applies for the subject column too which is not being called in the select statement)

    • @ameygoesgaming8793
      @ameygoesgaming8793 3 หลายเดือนก่อน

      @@grim_rreaperr Oh yes, its a typing bug.
      It should be:
      SELECT subject, max(marks)
      FROM class
      GROUP BY subject

  • @doyouwanttoknow3366
    @doyouwanttoknow3366 3 หลายเดือนก่อน

    Please upload a gcp data engineer interview video sir

  • @ameygoesgaming8793
    @ameygoesgaming8793 3 หลายเดือนก่อน

    what is NC SQL way?

    • @SB-ix7db
      @SB-ix7db 3 หลายเดือนก่อน

      ANSI

    • @ameygoesgaming8793
      @ameygoesgaming8793 3 หลายเดือนก่อน

      so ANSI SQL is normal SQL syntax which we write right?@@SB-ix7db

  • @mohitbutola1140
    @mohitbutola1140 3 หลายเดือนก่อน

    have anyone have taken the course ?

    • @sumitmittal07
      @sumitmittal07  3 หลายเดือนก่อน

      Please share your contact number if you would like to know more about the courses that I offer

  • @zaffer2024
    @zaffer2024 3 หลายเดือนก่อน

    Why data engineer roles have very easy questions

    • @sumitmittal07
      @sumitmittal07  3 หลายเดือนก่อน +1

      we make it look easy, else its complex.. haha