AWS Glue is the central service of an AWS trendy knowledge structure. It’s a serverless knowledge integration service that means that you can uncover, put together, and mix knowledge for analytics and machine studying. AWS Glue presents you a complete vary of instruments to carry out ETL (extract, remodel, and cargo) on the proper scale. AWS Glue Python shell jobs are designed for operating small-to-medium dimension ETL, and triggering SQLs (together with long-running queries) on Amazon Redshift, Amazon Athena, Amazon EMR, and extra.
As we speak, we’re excited to announce a brand new launch of AWS Glue Python shell that helps Python 3.9 with extra pre-loaded libraries. Moreover, it means that you can customise your Python shell atmosphere with pre-loaded libraries and presents you PIP assist to put in different native or customized Python libraries.
The brand new launch of AWS Glue Python shell contains the required Python libraries to attach your script to SQL engines and knowledge warehouses like SQLAlchemy, PyMySQL, pyodbc, psycopg2, redshift, and extra. It additionally helps communications with different AWS companies similar to Amazon OpenSearch Service (opensearch-py, elasticsearch), Amazon Neptune (gremlinpython), or Athena (PyAthena). It integrates AWS Information Wrangler for ETL duties like loading and unloading knowledge from knowledge lakes, knowledge warehouses, and databases. It additionally contains library assist for knowledge serialization in trade codecs similar to avro and et-xmlfile.
On this publish, we stroll you thru on use AWS Glue Python shell to create an ETL job that imports an Excel file and writes it in a relational database and knowledge warehouse. The job reads the Excel file as a Pandas DataFrame, creates a knowledge profiling report, and exports it into your Amazon Easy Storage Service (Amazon S3) bucket. This routine cleans inaccurate data and imputes lacking values primarily based on predefined enterprise guidelines. It writes the information right into a goal MySQL database for low-latency knowledge entry. Moreover, in parallel, the script exports the DataFrame within the knowledge lake in columnar format to be copied into Amazon Redshift for reporting and visualization.
AWS Glue Python shell new options
The brand new launch of AWS Glue Python shell means that you can use new options of Python 3.9 and add customized libraries to your script utilizing job parameter configurations. This offers you extra flexibility to jot down your Python code and reduces the necessity to manually preserve and replace Python libraries wanted in your code.
Personalized pre-loaded library environments
AWS Glue Python shell for Python 3.9 comes with two library atmosphere choices:
- analytics (default) – You’ll be able to run your script in a fullly pre-loaded atmosphere for advanced analytics workloads. This feature masses the total bundle of libraries.
- none – You’ll be able to select an empty atmosphere for easy and quick ETL jobs. This feature solely masses
awscli
andbotocore
as primary libraries.
You’ll be able to set this selection through the use of the library-set
parameter within the job creation, for instance:
On your reference, the next desk lists the libraries included in every choice.
Python model | Python 3.9 | |
Library set | analytics (default) | none |
avro | 1.11.0 | . |
awscli | 1.23.5 | 1.23.5 |
awswrangler | 2.15.1 | . |
botocore | 1.23.5 | 1.23.5 |
boto3 | 1.22.5 | . |
elasticsearch | 8.2.0 | . |
numpy | 1.22.3 | . |
pandas | 1.4.2 | . |
psycopg2 | 2.9.3 | . |
pyathena | 2.5.3 | . |
PyMySQL | 1.0.2 | . |
pyodbc | 4.0.32 | . |
pyorc | 0.6.0 | . |
redshift-connector | 2.0.907 | . |
requests | 2.27.1 | . |
scikit-learn | 1.0.2 | . |
scipy | 1.8.0 | . |
SQLAlchemy | 1.4.36 | . |
s3fs | 2022.3.0 | . |
Added assist for library compilers
On this launch, you may import and set up libraries as a part of the script, together with your personal C-based libraries. You will have PIP assist to put in native or buyer supplied Python libraries with the assist of the next compilers:
- gcc
- gcc-c++
- gmake
- cmake
- cython
- boost-devel
- conda
- python-dev
If you wish to embrace a brand new bundle throughout your job creation, you may add the job parameter --additional-python-modules
adopted by the identify of the library and the model. For instance:
use the brand new options with the AWS Glue Python shell script
Now that we now have launched the brand new options, let’s create a Python 3.9 job with further libraries with AWS Glue Python shell. You will have two choices to create and submit a job: you need to use the interface of AWS Glue Studio, or the AWS Command Line Interface (AWS CLI) for a programmatic strategy.
AWS Glue Studio
To make use of AWS Glue Studio, full the next steps:
- On the AWS Glue Studio console, create a brand new job and choose Python Shell script editor.
- Enter a job identify and enter your Python script.
- On the Job particulars tab, enter an optionally available description.
- For IAM function¸ select your job function.
- For Python model, select Python 3.9.
- Choose Load widespread Python libraries.
- Select the script and the short-term information places.
- Embody the extra libraries as job parameters (
--additional-python-modules
).
AWS CLI
With the brand new launch, now you can use the AWS CLI with the brand new parameters. The next is an instance of an AWS CLI assertion to create the AWS Glue Python shell script job with Python 3.9:
Let’s discover the primary variations from the earlier AWS Glue Python shell variations:
- Set the choice
PythonVersion
inside the--command
parameter to three.9. - So as to add new libraries, use
--additional-python-modules
as a brand new parameter after which record the library and the required model as follows:boto3==1.22.13
. - Embody
library-set
inside –default-arguments and select one of many values, similar todefault/analytics/none
.
Answer overview
This tutorial demonstrates the brand new options utilizing a standard use case the place knowledge flows into your system as spreadsheet information stories. On this case, you wish to rapidly orchestrate a technique to serve this knowledge to the best instruments. This script imports the information from Amazon S3 right into a Pandas DataFrame. It creates a profiling report that’s exported into your S3 bucket as an HTML file. The routine cleans inaccurate data and imputes lacking values primarily based on predefined enterprise guidelines. It writes the information immediately from Python shell to an Amazon Relational Database Service (Amazon RDS) for MySQL server for low-latency app response. Moreover, it exports the information right into a Parquet file and copies it into Amazon Redshift for visualization and reporting.
In our case, we deal with every situation as unbiased duties with no dependency between them. You solely must create the infrastructure for the use instances that you just wish to check. Every part offers steerage and hyperlinks to the documentation to arrange the required infrastructure.
Conditions
There are a number of necessities which can be widespread to all situations:
- Create an S3 bucket to retailer the enter and output information, script, and short-term information.
Then, we create the AWS Identification and Entry Administration (IAM) consumer and function essential to create and run the job. - Create an IAM AWS Glue service function referred to as
glue-blog-role
and fasten the AWS managed coverageAWSGlueServiceRole
for common AWS Glue permissions.If you happen to’re additionally testing an Amazon Redshift or Amazon RDS use case, it’s worthwhile to grant the required permission to this function. For extra data, check with Utilizing identity-based insurance policies (IAM insurance policies) for Amazon Redshift and Identification-based coverage examples for Amazon RDS. - Create an IAM consumer with safety credentials and configure your AWS CLI in your native terminal.
This lets you create and launch your scripts out of your native terminal. It is strongly recommended to create a profile related to this configuration.The dataset used on this instance is an Excel file containing Amazon Video Evaluation knowledge with the next construction. In a later step, we place the Excel file in our S3 bucket to be processed by our ETL script.
- Lastly, to work with pattern knowledge, we’d like 4 Python modules that had been made obtainable in AWS Glue Python shell when the parameter
library-set
is ready toanalytics
:boto3
awswrangler
PyMySQL
Pandas
Observe that Amazon buyer opinions are usually not licensed for industrial use. It’s best to change this knowledge with your personal approved knowledge supply when implementing your utility.
Load the information
On this part, you begin writing the script by loading the information utilized in all of the situations.
- Import the libraries that we’d like:
- Learn the Excel spreadsheet right into a DataFrame:
Situation 1: Information profiling and dataset cleansing
To help with primary knowledge profiling, we use the pandas-profiling
module and generate a profile report from our Pandas DataFrame. Pandas profiling helps output information in JSON and HTML format. On this publish, we generate an HTML output file and place it in an S3 bucket for fast knowledge evaluation.
To make use of this new library in the course of the job, add the --additional-python-modules
parameter from the job particulars web page in AWS Glue Studio or throughout job creation from the AWS CLI. Keep in mind to incorporate this bundle within the imports of your script:
A typical drawback that we regularly see when coping with a column’s knowledge kind is the combination of information varieties are recognized as an object in a Pandas DataFrame. Combined knowledge kind columns are flagged by pandas-profiling
as Unsupported
kind and saved within the profile report description. We are able to entry the data and standardize it to our desired knowledge varieties.
The next traces of code loop each column within the DataFrame and verify if any of the columns are flagged as Unsupported by pandas-profiling
. We then forged it to string:
To additional clear or course of your knowledge, you may entry variables supplied by pandas-profiling
. The next instance prints out all columns with lacking values:
Situation 2: Export knowledge in columnar format and duplicate it to Amazon Redshift
On this situation, we export our DataFrame into Parquet columnar format, retailer it in Amazon S3, and duplicate it to Amazon Redshift. We use Information Wrangler to attach our script to Amazon Redshift. This Python module is already included within the analytics atmosphere. Full the next steps to arrange the required infrastructure:
Now we are able to write uncooked knowledge to Amazon S3 in Parquet format and to Amazon Redshift.
A typical partition technique is to divide rows by yr, month, and day out of your date column and apply multi-level partitioning. This strategy permits quick and cost-effective retrieval for all rows assigned to a selected yr, month, or date. One other technique to partition your knowledge is through the use of a selected column immediately. For instance, utilizing review_date
as a partition offers you single stage of listing for each distinctive date and shops the corresponding knowledge in it.
On this publish, we put together our knowledge for the multi-level date partitioning technique. We begin by extracting yr, month, and day from our date column:
With our partition columns prepared, we are able to use the awswrangler
module to jot down to Amazon S3 in Parquet format:
To question your partitioned knowledge in Amazon S3, you need to use Athena, our serverless interactive question service. For extra data, check with Partitioning knowledge with Athena.
Subsequent, we write our DataFrame on to Amazon Redshift inner storage through the use of Information Wrangler. Writing to Amazon Redshift inner storage is suggested once you’re going to make use of this knowledge often for advanced analytics, massive SQL operations, or enterprise intelligence (BI) reporting. In Amazon Redshift, it’s suggested to outline the distribution model and type key on the desk to enhance cluster efficiency. If you happen to’re undecided about the best worth for these parameters, you need to use the Amazon Redshift auto distribution model and type key and observe Amazon Redshift advisor suggestions. For extra data on Amazon Redshift knowledge distribution, check with Working with knowledge distribution types.
Situation 3: Information ingestion into Amazon RDS
On this situation, we open a connection between AWS Glue Python shell and ingest the information immediately into Amazon RDS for MySQL. The infrastructure you require for this situation is an RDS for MySQL database in the identical Area because the AWS Glue Python shell job. For extra data, check with Making a MySQL DB occasion and connecting to a database on a MySQL DB occasion.
With the PyMySQL
and boto3
modules, we are able to now connect with our RDS for MySQL database and write our DataFrame right into a desk.
Put together the variables for connection and generate a database authentication token for database login:
For extra details about utilizing an SSL connection together with your RDS occasion, check with Utilizing SSL/TLS to encrypt a connection to a DB occasion.
Connect with your RDS for MySQL database and write a Pandas DataFrame into the desk with the next code:
That you must create a desk in Amazon RDS for MySQL previous to operating the insert assertion. Use the next DDL to create the demo_blog.amazon_video_review
desk:
When the information is on the market in database, you may carry out a easy aggregation as follows:
Create and run your job
After you finalize your code, you may run it from AWS Glue Studio or put it aside in a script .py file and submit a job with the AWS CLI. Keep in mind so as to add the required parameters in your job creation relying of the situation you’re testing. The next job parameters cowl all of the situations:
Evaluation the outcomes
On this part, we overview the anticipated outcomes for every situation.
In Situation 1, pandas-profiling
generates a knowledge report in HTML format. On this report, you may visualize lacking values, duplicated values, dimension estimations, or correlations between columns, as proven within the following screenshots.
For Situation 2, you may first overview the Parquet file written to Amazon S3 in Parquet format with partition yr/month/day.
Then you need to use the Amazon Redshift question editor to question and visualize the information.
For Situation 3, you need to use a JDBC connection or database IDE to connect with your RDS database and question the information that you just simply ingested.
Clear up
AWS Glue Python shell is a serverless routine that received’t incur in any further costs when it isn’t operating. Nevertheless, this demo used a number of companies that may incur in further prices. Clear up after finishing this walkthrough with the next steps:
- Take away the contents of your S3 bucket and delete it. If you happen to encounter any errors, check with Why can’t I delete my S3 bucket utilizing the Amazon S3 console or AWS CLI, even with full or root permissions.
- Cease and delete the RDS DB occasion. For directions, see Deleting a DB occasion.
- Cease and delete the Amazon Redshift cluster. For directions, check with Deleting a cluster.
Conclusion
On this publish, we launched AWS Glue Python shell with Python 3.9 assist and extra pre-loaded libraries. We introduced the customizable Python shell atmosphere with pre-loaded libraries and PIP assist to put in different native or customized Python libraries. We coated the brand new options and get began by way of AWS Glue Studio and the AWS CLI. We additionally demonstrated a step-by-step tutorial of how one can simply use these new capabilities to perform widespread ETL use instances.
To be taught extra about AWS Glue Python shell and this new characteristic, check with Python shell jobs in AWS Glue.
In regards to the authors
Alunnata Mulyadi is an Analytics Specialist Options Architect at AWS. Alun has over a decade of expertise in knowledge engineering, serving to prospects tackle their enterprise and technical wants. Outdoors of the work, he enjoys pictures, biking, and basketball.
Quim Bellmunt is an Analytics Specialist Options Architect at Amazon Internet Providers. Quim has a PhD in Pc Science and Data Graph specializing in knowledge modeling and transformation. With over 6 years of hands-on expertise within the analytics and AI/ML house, he enjoys serving to prospects create programs that scale with their enterprise wants and generate worth from their knowledge. Outdoors of the work, he enjoys strolling together with his canine and biking.
Kush Rustagi is a Software program Improvement Engineer on the AWS Glue staff with over 4 years of expertise within the trade having labored on large-scale monetary programs in Python and C++, and is now utilizing his scalable system design expertise in the direction of cloud growth. Earlier than engaged on Glue Python Shell, Kush labored on anomaly detection challenges within the fin-tech house. Except for exploring new applied sciences, he enjoys EDM, touring, and studying non-programming languages.