Take home project Python Spark ETL
Sr Data Engineer Interview Questions
2,563 sr data engineer interview questions shared by candidates
E.g. Parsing json in python.
functional vs non-functional requirements examples of projects you worked on and challenges faced examples of taking initiative
Given these 3 requests from business, write SQL queries to extract the relevant data. You are given table names and some reference columns but that's about it.
Discuss how you would move data from one virtual machine to another via an ETL process?
LeetCode questions and some core JAVA related theory questions
Tell me about your previous experience and describe interesting problem that you faced.
I was asked multiple scenarios about handling the situation with client apps updating data in near real time.
How would you build a data pipeline?
The Packages table represents packages that customers purchase. Each package has an ID, a start and end date (represented by a number), and a number of installs that the package includes. The Consumption table shows us how many installs each account used and when. When we get a user's consumption data, we need to check according to the date, which packages the user used. A user can only have one package at any given time. The report we need to calculate needs to show how many installs a user used from each of its packages, and how many installs remain in each package the user purchased. Packages table +-----+-------------------+----------------+-------------------+ |pack |pack_end_date |pack_installs |pack_start_date| +-----+-------------------+----------------+-------------------+ | 1 | 123460| 10| 123456| | 2 | 123470| 5| 123460| | 3 | 123475| 10| 123470| +-----+-------------------+----------------+-------------------+ consumption table +----------+--------------+---------+ |account |install_date | installs| +----------+--------------+---------+ | AB| 123459| 10| | AB| 123465| 5| | AB| 123466| 3| +----------+--------------+---------+
Viewing 1371 - 1380 interview questions