What Does a Data Engineer Do (And What They Don’t Do)?

What Does a Data Engineer Do
Categories


What does a data engineer do? How does this role differ from data scientists? What’s the salary and how to get a job? The answers await you in the article.

We imagined this article as a general overview of a data engineering role. To give you that, we’ll explain who a data engineer is and what a data engineer does and what skills you need to become one. We’ll show you what your day-to-day work encompasses and how much you could be paid.

Sometimes, understanding what something is, is best done by understanding what it isn’t. Comparing data engineers to data scientists might do the trick.

In the end, we’ll tie everything together by showing you several typical questions you might get at the job interview.

What is a Data Engineer?

A data engineer is a job in the family of data science jobs. For a quick overview of the different data science roles and what they are, go to our What Does a Data Scientist Do article.

In short, data engineers are data professionals who prepare data for other people to use. We like to consider them part of the data-provider type of data science job.

How do they provide data to others?

What Does a Data Engineer Do?

When making data available for other users, data engineers:

  • Build a pipeline
  • Maintain a pipeline
  • Wrangle data

A data pipeline is what it sounds like – a pipeline for moving data from one place to another.

A data pipeline to understand what does a data engineer do

The three main building blocks of a data pipeline are:

  1. Data sources
  2. Data processing (ETL/ELT)
  3. Data storage

Data sources are where the data is coming from. It can be anything, from databases, cloud storage, Internet of things to applications and file upload.

Data processing is what happens when raw data is extracted from its sources, transformed, and loaded into data storage.

That’s why this is called ETL or Extract, Transform, Load. After it’s pulled from the sources, the data is made usable by organizing, cleaning, changing, and validating it. In short, data is wrangled. Once this step is finished, the data is stored.

There’s also a similar process called ELT, which stands for Extract, Load, Transform. After extracting data, it’s saved into data storage, and only after that, the data transformation is performed.

Data storage is where the data is saved after it’s been processed. Usually, it’s a data warehouse or data lake. From there, data is made available to business users and other data professionals.

Types of Data Engineering Jobs

What a data engineer will focus on depends on the company size. No matter what, it will for sure revolve around data wrangling, building, and maintaining pipelines.

Based on that, there are three distinct types of data engineering jobs:

  • general practitioner
  • pipeline specialist
  • database specialist

The general practitioner data engineer works in a small company where they or their team are responsible for everything concerning data. Their work involves handling data sources, building and maintaining data pipelines and storage, and analyzing data. In this situation, they are several data professionals in one person.

The pipeline specialist works in a midsize company. Their concern is data pipelines. It means they ensure data availability to other data users by overlooking and tuning data pipelines and integration tools, ensuring data flow between data sources and data storage. They are usually part of a data science team, working with them to ensure data fits their project’s needs.

Database specialists are traditionally to be found in larger companies. They are responsible for analytics databases, and that involves setting them up, loading them with data, and maintaining them. It’s because, in large companies, a large number of analytics databases with different requirements make this type of data engineer required.

What Skills Does a Data Engineer Need?

Building data pipelines, maintaining them, and wrangling data require data engineers to have the skills of a:

  • software engineer
  • DevOps engineer
  • data analyst

Here’s a more specific list of these skills.

What Skills Does a Data Engineer Need

Data Engineer vs. Data Scientist

Data engineer is not a data scientist, which is like defining a dog by saying it’s not a cat – telling the truth and saying nothing.

In the binary categorization of data providers and data users, the data scientist is a data user. They are focused on building ML models, while the data engineers deal with raw data and data architecture.Their education is somewhat similar. The skills and tools they use overlap to a certain degree, too.

Data engineering is a tad bit heavier on the programming side. Also, data engineers don’t use ML platforms, while data scientists don’t work with ETL/ELT tools. The exception can be small companies that sometimes expect one employee to be both a data engineer and a data scientist.

You can find more details about similarities and differences in our Data Engineer vs. Data Scientist article.

Data Engineer Salary

According to the latest information from Glassdoor, the median total salary for data engineers in the US is $111,486 a year.

Data engineer salary

This salary includes the base pay of $94,150 and additional pay of $17,336.

The most likely salary range is between $88k and $142k. This is something we already covered to a great extent in our article “data engineer salary”, so there’s no need to repeat it here.

How to Ace a Data Engineering Interview?

The answer is easy: go to the interview and show you have the required skills.

Easier said than done. There are different approaches, but it always boils down to two aspects of preparation:

  • Research the company
  • Practice your technical skills

Researching the company involves knowing its history, products, organization, and competitors. Aside from these generalities, you should also get to know their interview process. In other words, how technical it gets, which skills they’re most interested in,  how many rounds there’ll be, and with whom. One of the clues to the skills you should focus on lies in the job description. But also, in this article, we outlined in detail what a data engineer does. So you’ve already completed one of the crucial steps simply by reading the article.

Next is to practice your technical skills. It’s much easier once you know what skills the company will test, wouldn’t you say? And it’s even better if the company you’re interviewing is on our interview questions list.

The questions at the interviews are mostly coding questions. They can also be technical questions requiring coding knowledge or other technical skills.

Coding questions

Depending on the job description, you could be asked to solve a number of questions using SQL, Python, or any other programming language popular in data engineering.

Example #1: SQL Coding Question

For example, you could get this easy SQL question at an Amazon interview.


Table: dim_customer

Link to the question: https://platform.stratascratch.com/coding/2107-primary-key-violation

Data

There’s one table at your disposal: dim_customer. Take a look at the data itself.

Table: dim_customer
cust_idcust_namecust_citycust_dobcust_pin_code
C273Stephen V. CookeNew York1996-11-288235
C274Peter P. MankinMount Upton1984-06-256050
C274Juan C. ParkerMertzon1989-07-076867
C274Eve E. McClureSouthfield1995-05-187791
C275Charles J. StevensOakland1975-12-025930

Solution

You could solve the question the following way.

SELECT cust_id,
       COUNT(*) AS n_occurences
FROM dim_customer
GROUP BY cust_id
HAVING COUNT(*) > 1;


The query lists IDs and uses the COUNT() function to find the number of their occurrences. The output is grouped by ID and filtered to show only IDs that appear more than once.

Output

All required columns and the first 5 rows of the solution are shown

cust_idn_occurences
C2762
C2812
C2743

Look for some more questions in our Data Engineer Interview Questions article.

Example #2: Python Coding Question

One of the Python coding question examples is the question by Meta/Facebook.


Tables: fb_sms_sends, fb_confirmers

Link to the question: https://platform.stratascratch.com/coding/10291-sms-confirmations-from-users

Data

Here, you’ll be working with two tables: fb_sms_sends and fb_confirmers. The data in the table looks like this.

Table: fb_sms_sends
dscountrycarrierphone_numbertype
2020-08-07ESat&t9812768911confirmation
2020-08-02ADsprint9812768912confirmation
2020-08-04SAat&t9812768913message
2020-08-02AUsprint9812768914message
2020-08-07GWrogers9812768915message

The table fb_confirmers consists of the following data.

Table: fb_confirmers
datephone_number
2020-08-069812768960
2020-08-039812768961
2020-08-059812768962
2020-08-029812768963
2020-08-069812768964

Solution

Here’s the code that solves this problem.

import pandas as pd
import numpy as np

df = fb_sms_sends[["ds","type","phone_number"]]
df1 = df[df["type"] == 'message']
df1_grouped = df1.groupby('ds')['phone_number'].count().reset_index(name='count')
df1_grouped_0804 = df1_grouped[df1_grouped['ds']=='08-04-2020']
df2 = fb_confirmers[["date","phone_number"]]
df3 = pd.merge(df1,df2, how ='left',left_on =["phone_number","ds"], right_on = ["phone_number","date"])
df3_grouped = df3.groupby('date')['phone_number'].count().reset_index(name='confirmed_count')
df3_grouped_0804 = df3_grouped[df3_grouped['date']=='08-04-2020']
result = (float(df3_grouped_0804['confirmed_count'])/df1_grouped_0804['count'])*100

The code creates dataframe with three columns from the table fb_sms_sends. It is then filtered to contain only the message type, and the number of sent messages is counted for each date. Later on, the message count for only August 4, 2020, is shown.

After creating the second data frame from the second table, data frames are left joined to get the number of confirmed messages for August 4, 2020.

These two results are divided and multiplied by 100 to get the percentage.

Output

And the percentage of confirmed SMS texts for August 4, 2020, is 20%.

All required columns and the first 5 rows of the solution are shown

indexcount
220

Non-coding Questions

While coding is usually the most-tested skill, be prepared for some technical questions, too.

Example #3: Impute Missing Information

One example could be a question by Airbnb asking you to explain how you would impute missing information.

What does a data engineer do

Link to the question: https://platform.stratascratch.com/technical/2158-impute-missing-information

It’s an open-ended question, and how you answer it will show the level of your skills and experience.

Example #4: Data Structures in Python

This question is by Walmart. It asks you to explain data structures in Python, which requires certain knowledge of this programming language.

What does a data engineer do

Link to the question: https://platform.stratascratch.com/technical/2072-data-structures-in-python

Summary

Let this article “what does a data engineer do” serve you as a go-to source for a data engineer’s job, with an emphasis on the job description. We explained what the responsibilities and daily tasks of a data engineer are. Of course, it requires specific skills, and we listed them neatly. Having such skills calls for adequate compensation, which is substantial in the case of data engineers.

How do you get into the position to earn it? We can’t do the work instead of you. But we can give you actual interview questions for practicing coding and other technical skills.

Join our community and ace your coming data engineering interview!

What Does a Data Engineer Do
Categories


Become a data expert. Subscribe to our newsletter.