- Project delivered in July 2023
- Repository includes 11 files:
- A
accelerometer_landing.sql
script - A
customer_landing.sql
script - A
step_trainer_landing.sql
script - A
Customer_Landing_to_Trusted.py
script - An
Accelerometer_Landing_to_Trusted.py
script - A
Customer_Trusted_to_Curated.py
script - A
Step_Trainer_Landing_to_Curated.py
script - A
Machine_Learning_Curated.py
script - .jpg screenshots of the customer_landing, accelerometer_landing, and customer_trusted tables in Athena
- A
The STEDI Team has been hard at work developing a hardware STEDI Step Trainer that:
- trains the user to do a STEDI balance exercise
- has sensors on the device that collect data to train a machine-learning algorithm to detect steps
- has a companion mobile app that collects customer data and interacts with the device sensors
STEDI has heard from millions of early adopters who are willing to purchase the STEDI Step Trainers and use them.
Several customers have already received their Step Trainers, installed the mobile application, and begun using them together to test their balance. The Step Trainer is just a motion sensor that records the distance of the object detected. The app uses a mobile phone accelerometer to detect motion in the X, Y, and Z directions.
The STEDI team wants to use the motion sensor data to train a machine learning model to detect steps accurately in real-time. Privacy will be a primary consideration in deciding what data can be used.
Some of the early adopters have agreed to share their data for research purposes. Only these customers’ Step Trainer and accelerometer data should be used in the training data for the machine learning model.
As a data engineer on the STEDI Step Trainer team, extract the data produced by the STEDI Step Trainer sensors and the mobile app, and curate them into a data lakehouse solution on AWS. The intent is for the company's Data Scientists to use the solution to train machine learning models.
There are sensors on the device that collect data to train a machine learning algorithm to detect steps. It also has a companion mobile app that collects customer data and interacts with the device sensors. The step trainer is just a motion sensor that records the distance of the object detected.
-
Customer Records (from fulfillment and the STEDI website):
- Location: AWS S3 Bucket URI - s3://cd0030bucket/customers/
- Contains the following fields:
- serialnumber
- sharewithpublicasofdate
- birthday
- registrationdate
- sharewithresearchasofdate
- customername
- lastupdatedate
- phone
- sharewithfriendsasofdate
-
Step Trainer Records (data from the motion sensor):
- Location: AWS S3 Bucket URI - s3://cd0030bucket/step_trainer/
- Contains the following fields:
- sensorReadingTime
- serialNumber
- distanceFromObject
-
Accelerometer Records (from the mobile app):
- Location: AWS S3 Bucket URI - s3://cd0030bucket/accelerometer/
- Contains the following fields:
- timeStamp
- user
- x
- y
- z
- An S3 bucket to store data categorized into either the landing, trusted, or curated zone
- Landing zone S3 buckets to ingest raw customer, step trainer, and accelerometer JSON files
- IAM permissions for S3, Glue, and Athena
- Database specific for project's Glue tables, e.g.
project
The solution is built on AWS and uses the following services:
- S3 for data storage
- Glue for data processing
- Athena for querying data
My data lakehouse solution is comprised of five Python scripts which are run in AWS Glue. The scripts are run in the following order:
Customer_Landing_to_Trusted.py
: This script transfers customer data from the 'landing' to 'trusted' zones. It filters for customers who have agreed to share data with researchers.Accelerometer_Landing_to_Trusted.py
: This script transfers accelerometer data from the 'landing' to 'trusted' zones. It filters for Accelerometer readings from customers who have agreed to share data with researchers.Customer_Trusted_to_Curated.py
: This script transfers customer data from the 'trusted' to 'curated' zones. It filters for customers with Accelerometer readings and have agreed to share data with researchers.Step_Trainer_Landing_to_Curated.py
: This script transfers step trainer data from the 'landing' to 'curated' zones. It filters for curated customers with Step Trainer readings.Machine_Learning_Curated.py
: This script combines Step Trainer and Accelerometer data from the 'curated' zone into a single table to train a machine learning model.
- a. Run
customer_landing.sql
script in Athena to createcustomer_landing
table
- b. Run
accelerometer_landing.sql
script in Athena to createaccelerometer_landing
table
- c. Run
step_trainer_landing.sql
script in Athena to createstep_trainer_landing
table
- Run
Customer_Landing_to_Trusted.py
script in Glue to createcustomer_trusted
table
- Run
Accelerometer_Landing_to_Trusted.py
script in Glue to createaccelerometer_trusted
table
- Run
Customer_Trusted_to_Curated.py
script in Glue to createcustomer_curated
table
- Run
Step_Trainer_Landing_to_Curated.py
script in Glue to createstep_trainer_curated
table
- Run
Machine_Learning_Curated.py
script in Glue to createmachine_learning_curated
table
In a data lake architecture, the use of landing, trusted, and curated zones serves specific purposes that can significantly enhance the quality, reliability, and usability.
-
Landing Zone: The landing zone is often the first point of contact for raw data as it enters the data lake. It serves as a staging area where data from various sources is collected, often in its original format. This zone provides a place to accumulate data before any substantial processing occurs. This allows for flexibility, as the original raw data remains intact and available for different types of analysis or processing in the future.
-
Trusted Zone: After data has been landed, it may then be processed and moved to the trusted zone. In this zone, data is cleansed, validated, and often transformed into a structured format. This can include operations like deduplication, handling missing or incorrect data, and ensuring our customers have approved their data to be used for research purposes. The trusted zone is designed to be a source of reliable data for further analysis.
-
Curated Zone: The curated zone is where data is further transformed, often to meet the specific needs of a particular analysis, application, or group of users. This may involve operations like aggregating data, creating derived metrics, or combining multiple datasets. The curated zone should provide data that's ready-to-use for your specific data-driven applications and analyses.
In essence, these three zones facilitate a layered approach to data management and preparation. Each stage adds value to the data, making it increasingly reliable and useful for our specific needs. This strategy also aids in maintaining data quality, tracking data lineage, and enabling efficient and versatile data exploration and analysis.
My data lakehouse solution is designed to give STEDI a robust and flexible data infrastructure that allows them to store, clean, and transform vast amounts of data.
First, my solution provides scalability and cost efficiency by leveraging Amazon S3 for storage, enabling them to store large amounts of diverse data cost-effectively. They can scale storage up or down based on the business's needs, and they only pay for what they use.
Second, by using AWS Glue, a fully managed extract, transform, and load (ETL) service, they are able to clean, normalize, and relocate data on an adhoc basis. This structured data is then ready for downstream use by STEDI's data scientists for exploratory data analysis or to train machine learning models.
Moreover, my solution provides a single source of truth, improving data quality and consistency. This is particularly beneficial when dealing with complex datasets as it simplifies the process of data management and increases efficiency.
Overall, my data lakehouse solution gives STEDI the power to make data-driven decisions, improve their products, and deliver a superior customer experience.