Satinder has in-depth understanding and a lot of experience and he explains things in precise and easy to understand language. Kudos to him. Thanks a lot Sumit Sir.
@MANGESHpawarsm42Ай бұрын
One of the most Informative interview I ever Watched. Big Shout Out to Satinder Singh as he explained topic clear and most understandable way. Thank You.
@imranhossain16609 ай бұрын
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.
@pallavigosavi68519 ай бұрын
Thank you!! 👍
@sruthiselvakumar98179 ай бұрын
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..
@sumitmittal079 ай бұрын
satinder will be conducting more interviews
@KiyanshLife9 ай бұрын
Best Interview I ever seen. Both of you too good at your level.
@sumitmittal079 ай бұрын
yes this interview was next level
@mohammedalikhan98199 ай бұрын
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.
@sumitmittal079 ай бұрын
Hi Mohammed, will definitely have some interviews planned specifically for AWS in the upcoming days.
@mohammedalikhan98199 ай бұрын
Thank you sir😊
@avinash70039 ай бұрын
I see mostly asked 70% in Pyspark SQL rest cloud @@mohammedalikhan9819
@Hope-xb5jv5 ай бұрын
23:05 use dense rank instead of row number because may be more than one student have same highest number in same subject
@grim_rreaperr9 ай бұрын
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;
@SreemantaKesh9 ай бұрын
This was a good interview. Different from the earlier one's. Satinder's question and advice was very good.
@sumitmittal079 ай бұрын
this interview has really gone well
@sunitasolankar5161Ай бұрын
Thank you so much satindar sir its very informative and useful while giving interview excellent.
@abhishekmodak84969 ай бұрын
This was a good interview and Satinder has good experience as an interviewer.
@safarnama659 ай бұрын
Very Informative one of the best mock interview with proper answering and details
@sumitmittal079 ай бұрын
Keep watching for more such insightful interviews
@goldykarn59229 ай бұрын
Best interview session so far.
@tanujarora49067 ай бұрын
Satinder sir is awesome, always something to learn from his questions.
@mojibshaikh40928 ай бұрын
Informative and Excellent interview.
@Sagar01559 ай бұрын
Interview was insightful. Learnt core concepts of spark from Satinder
@sumitmittal079 ай бұрын
glad that it helped you
@abhishekkmalik43999 ай бұрын
Very informative video, liked the point of view by Satinder Sir.
@sumitmittal079 ай бұрын
satinder is a very knowledgeable person
@DesireIsIrrelevant9 ай бұрын
Thanks for uploading such a great Interview video Sir!
@sumitmittal079 ай бұрын
Glad you found the interview informative!
@AliKhanLuckky9 ай бұрын
Sir i personaly want to see satinder sirs more interviews 😊
@sumitmittal079 ай бұрын
yes definitely, he will be conducting more interviews
@akshaykumarverma86449 ай бұрын
This was a very good video
@sauravroy98899 ай бұрын
Really nice interview sir.❤
@DataJourneyHuub9 ай бұрын
It’s really helpful sir. Thank you so much
@sumitmittal079 ай бұрын
Most welcome
@sabyspeaksonline9 ай бұрын
What's the difference between parquet and delta format?
@ashwenkumar8 ай бұрын
Aditya - u need to be strong in the basics and always answer straight forward and crisply on points . Don’t beat the bush
@akashprabhakar63533 ай бұрын
i felt the same.
@ameygoesgaming87939 ай бұрын
My SQL would be: SELECT student_id, max(marks) FROM class GROUP BY subject
@grim_rreaperr9 ай бұрын
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)
@ameygoesgaming87939 ай бұрын
@@grim_rreaperr Oh yes, its a typing bug. It should be: SELECT subject, max(marks) FROM class GROUP BY subject
@Abhishek-149 ай бұрын
Sir please continue python course along with this 🙏
@sumitmittal079 ай бұрын
yes, one video coming tomorrow at 7 pm
@Abhishek-149 ай бұрын
@@sumitmittal07 thank you so much sir that's a relief to hear this.
@Amrit-Manash9 ай бұрын
Very nice interview
@sumitmittal079 ай бұрын
glad that you liked it
@zaffer20249 ай бұрын
Excellent
@sumitmittal079 ай бұрын
Thanks
@ameygoesgaming87939 ай бұрын
what is NC SQL way?
@SB-ix7db9 ай бұрын
ANSI
@ameygoesgaming87939 ай бұрын
so ANSI SQL is normal SQL syntax which we write right?@@SB-ix7db
@doyouwanttoknow33669 ай бұрын
Please upload a gcp data engineer interview video sir
@sumitmittal079 ай бұрын
very soon
@mohitbutola11409 ай бұрын
have anyone have taken the course ?
@sumitmittal079 ай бұрын
Please share your contact number if you would like to know more about the courses that I offer
@zaffer20249 ай бұрын
Why data engineer roles have very easy questions
@sumitmittal079 ай бұрын
we make it look easy, else its complex.. haha
@akhilsingh38016 ай бұрын
Bro is cheating on mock interview with zero fundamental knowledge of Spark or Hadoop 😂😂😂. At least interviewer has asked questions to get something out of this video.