Thursday, April 25, 2024
No menu items!
HomeDatabase ManagementImplement vertical partitioning in Amazon DynamoDB using AWS Glue

Implement vertical partitioning in Amazon DynamoDB using AWS Glue

In this post, we show you how to use AWS Glue to perform vertical partitioning of JSON documents when migrating document data from Amazon Simple Storage Service (Amazon S3) to Amazon DynamoDB. You can use this technique for other data sources, including relational and NoSQL databases. DynamoDB can store and retrieve any amount of data, but there is a limit of 400 KB on the individual item size. Some real world use-cases, such as document processing, require handling larger individual items.

You can use vertical partitioning to handle documents larger than 400 KB. Vertical partitioning helps unnest documents to make them more referenceable and indexable. Use vertical partitioning to scale data efficiently in Amazon DynamoDB explains vertical partitioning in detail.

DynamoDB is a fully managed, serverless, key-value NoSQL database designed to run high-performance applications at any scale. Because DynamoDB allows flexible schema, the set of data attributes apart from the key attributes for each item can be uniform or discrete. DynamoDB is best suited for online transactional processing (OLTP) workloads where most access patterns are known beforehand. There might be use cases where key schema or key attributes need to be changed, such as changes in access patterns over time or migration across databases.

AWS Glue is a serverless data integration service that offers you a comprehensive range of tools to perform ETL (extract, transform, and load) at the right scale for your application. You can use AWS Glue to perform DynamoDB data transformation and migration. AWS Glue supports a variety of relational and non-relational databases that are hosted on AWS or on-premises. It supports DynamoDB as a source as well as a destination for ETL pipelines.

Sample source Amazon S3 data schema

For our sample use case, order data is stored in JSON files in an S3 folder. Each order is uniquely identified with order_id and contains metadata attributes such as delivery_address, creation_timestamp, invoice_id, shipment_id, and is_cod, and a list of ordered products along with the metadata for each product. When storing data in an S3 bucket, follow the S3 security best practices guide.

The following snippet shows a couple of sample order records from a JSON file:

{
“delivery_address”:
{
“door”:”0265″,
“pin”:”05759″,
“city”:”Reyes”,
“street”:689,
“state”:”DE”
},
“creation_timestamp”:”2022-07-09T20:48:01Z”,
“invoice_id”:”inv#9678394201″,
“itemlist”:[
{
“date_added”:”2022-08-13T11:33:39Z”,
“prod_price”:557,
“prod_quant”:15,
“prod_code”:”p#2724097″,
“seller_id”:”s#1472462″
},
{
“date_added”:”2022-08-13T11:33:39Z”,
“prod_price”:216,
“prod_quant”:14,
“prod_code”:”p#2591306″,
“seller_id”:”s#5190537″
},
{
“date_added”:”2022-08-13T11:33:39Z”,
“prod_price”:567,
“prod_quant”:14,
“prod_code”:”p#259494″,
“seller_id”:”s#1508727″
},
{
“date_added”:”2022-08-13T11:33:39Z”,
“prod_price”:542,
“prod_quant”:1,
“prod_code”:”p#6450941″,
“seller_id”:”s#1519549″
}
],
“shipment_id”:”ship#1525362″,
“is_cod”:false,
“order_id”:”8e4a7443-8b62-4971-bdd6-3eb01f976fec”
}
{

“delivery_address”:
{
“door”:”10029″,
“pin”:”50490″,
“city”:”Robin”,
“street”:692,
“state”:”MA”
},
“creation_timestamp”:”2022-06-20T11:54:11Z”,
“invoice_id”:”inv#4908812754″,
“itemlist”:[
{
“date_added”:”2022-08-11T23:01:38Z”,
“prod_price”:454,
“prod_quant”:4,
“prod_code”:”p#7038559″,
“seller_id”:”s#4682806″
},
{
“date_added”:”2022-08-11T23:01:38Z”,
“prod_price”:531,
“prod_quant”:11,
“prod_code”:”p#3193192″,
“seller_id”:”s#5023003″
},
{
“date_added”:”2022-08-11T23:01:38Z”,
“prod_price”:481,
“prod_quant”:14,
“prod_code”:”p#1564684″,
“seller_id”:”s#1542781″
}
],
“shipment_id”:”ship#753007″,
“is_cod”:true,
“order_id”:”d1b6fc59-0a77-4f02-a199-83d64888a110″
}

You can download this sample data to use in the solution described in this post.

Target DynamoDB key schema

A common access pattern for order data is to get product details for a product in an order or to look up different orders that include a particular product. The goal is to make the prod_code attribute indexable, which is part of the nested JSON structure. As a part of vertical partitioning, we can break down a single order document into multiple items, each corresponding to one product from the itemlist, and a single metadata item. The metadata item contains information specific to the order such as delivery_address, creation_timestamp, and more. We use the sort key attribute SK to model this one to many relationship. Using generic attribute names, such as SK, enables us to use the same attribute to store information about different entities. Therefore, the ideal target DynamoDB items for an order would look like those in Figure 1 that follows, where the order_id is the same for each entry, but each has a unique SK value.

Figure 1: Screenshot showing an example of vertically partitioned order data

Let’s see how you can achieve this using AWS Glue.

Solution overview

To migrate data from Amazon S3 to DynamoDB using AWS Glue, use the following steps:

Set up an AWS Glue crawler to read the S3 data.
Create an AWS Glue ETL job to perform the following functions:
Read data from S3.
Implement vertical partitioning as per the target schema.
Write data into the DynamoDB table.

Figure 2 that follows illustrates this architecture.

Figure 2: Architecture to migrate data from S3 to DynamoDB

Prerequisites

Make sure that you have an AWS Identity and Access Management (IAM) role with the appropriate permissions to attach to the AWS Glue crawler and ETL job. For more information, see Crawler prerequisites, Setting up IAM permissions for AWS Glue, Setting up encryption in AWS Glue, and Security best practices in AWS IAM. Also, make sure that you have your input data in an S3 bucket. You can use the downloaded sample data as input for this exercise.

Set up an AWS Glue crawler to read Amazon S3 data

AWS Glue crawlers populate the AWS Glue Data Catalog with tables, which are then used by AWS Glue ETL jobs as source and target. The source for this example is an S3 bucket.

To set up and run an AWS Glue crawler

On the AWS Management Console for AWS Glue, on the left-side menu, choose Crawlers.
On the Crawlers page, choose Create crawler. This starts a series of pages that prompt you for the crawler details.
In the Name field, enter a unique name, and choose Next.
On the Choose data sources and classifiers page, choose Add a data store and leave the default values for the remaining fields.
Now point the crawler to the S3 data. On the Add a data store page, select the Amazon S3 data store. This tutorial doesn’t use a connection, so leave the Connection field blank if it’s visible.
In the S3 path field, enter the path where the crawler can find the document data. Choose Add an S3 data source, and then choose Next.
Choose an existing IAM role that has permissions to access the data store and create objects in the Data Catalog, or choose Create a new IAM role.The IAM role name starts with AWSGlueServiceRole-, and you enter the last part of the role name in the field. Enter the role name, and then choose Next.

Note:
To create an IAM role, your AWS user must have CreateRole, CreatePolicy, and AttachRolePolicy permissions.The wizard creates an IAM role named AWSGlueServiceRole-[Name], attaches the AWS managed policy AWSGlueServiceRole to this role, and adds an inline policy that allows read access to the S3 location provided in the crawler.
Select the newly created role from the dropdown, and then choose Next.
On the Set output and scheduling page, choose Add database to create a database. In the pop-up window, enter a name for the database, and then choose Create database. Come back to the crawler creation page and select the newly created database from the dropdown for Target database. For Frequency in the crawler schedule, choose On demand, use the default values for the rest of the options, and choose Next.
Verify the choices you made in the Review and create page. If you see any mistakes, you can choose Back to return to previous pages and make changes. After you have reviewed the information, choose Create crawler.
When the banner near the top of the crawlers page shows you that the crawler was created, choose Run crawler. The banner changes to show Crawler successfully starting and Running messages for your crawler.
After a few moments, you can choose the Refresh icon to see the current status of the crawler. When the crawler completes, a new banner appears that describes the changes made by the crawler.
In the left-side navigation, under Data Catalog and below Databases, choose Tables. Here you can view the table created by the crawler. Select the table name to view the table settings, parameters, and properties. Scroll down in this view to see the schema, which is information about the columns and data types of the table.

The crawler for this post creates a table with the schema shown in figure 3 that follows.

Figure 3: Schema of table created by the crawler

You can also refer to this tutorial for creating a crawler. For more details on setting up a crawler, see to Working with crawlers on the AWS Glue console.

Create an AWS Glue ETL job

A Glue ETL job is used to implement vertical partitioning of document data and to write the data to DynamoDB with the target schema.

To create an AWS Glue ETL job

On the AWS Glue console, choose Jobs in the navigation pane.

Figure 4: Choose Jobs from the navigation pane
Select Spark script editor.
Choose Create.

Figure 5: Creating a Spark script

The following sections show how to build the script for the ETL job.

Read data from Amazon S3

Start with the following lines of code to read data from S3. Supply parameters like the database name and table name from the Data Catalog (the database and table were created by the Glue crawler in the previous steps). The following code creates a structure called DynamicFrame with the data from S3.

# Reading nested JSON data from Amazon S3 bucket
read_s3_orders_nested_json = glueContext.create_dynamic_frame.from_catalog(
database=”orders-nested”,
table_name=”s3_orders_nested_json”,
transformation_ctx=”read_s3_orders_nested_json”)

Implement vertical partitioning as per the identified target schema

For this example, you use a function called relationalize to implement vertical partitioning. The relationalize function flattens nested structures and breaks down the DynamicFrame into multiple DynamicFrames: one representing the root elements, and multiple frames representing one nested element each. The root elements and nested elements are separated after the relationalize transform. To associate the nested elements back with the root elements, you use Spark’s join function.

Note: The join function works on DataFrames, which is why code includes a conversion from DynamicFrame to DataFrame.

Additionally, you can introduce new attributes or columns in the DynamicFrame using custom Python functions. The data in this example, doesn’t have an SK attribute with the value metadata, which represents order metadata. So you can add a column for the SK attribute using a custom function called add_sort_key_col. You can also reformat the delivery_address attribute into a string.

Finally, use ApplyMapping to define the attributes in the target DynamoDB items.

# Add new column
def add_sort_key_col(r):
r[“SK”] = “metadata”
return r

add_column_to_s3_orders_nested_json = Map.apply(
frame=read_s3_orders_nested_json, f=add_sort_key_col)

# Uses transform relationalize which flattens a nested schema in a DynamicFrame
relationalized_json = add_column_to_s3_orders_nested_json.relationalize(
root_table_name=”root”, staging_path=args[“TempDir”])

root_dyf = relationalized_json.select(‘root’)
root_itemlist_dyf = relationalized_json.select(‘root_itemlist’)

# Reformat the flattened delivery_address attribute to a string
def reformat_address(r):
r[“delivery_address”] = (r[“delivery_address.door”])+”, “+str(r[“delivery_address.street”])+”, “+(r[“delivery_address.city”])+”, “+(r[“delivery_address.state”])+”, “+(r[“delivery_address.pin”])
del r[“delivery_address.door”]
del r[“delivery_address.street”]
del r[“delivery_address.city”]
del r[“delivery_address.state”]
del r[“delivery_address.pin”]
return r

root_dyf = Map.apply(frame = root_dyf, f = reformat_address)

# Convert to Spark Dataframe
root_df_jf = root_dyf.toDF()
root_itemlist_df = root_itemlist_dyf.toDF()

# Apply inner join
joined_df = root_df_jf.join(
root_itemlist_df,
root_df_jf.itemlist == root_itemlist_df.id,
how=’inner’)

# Converting back to DynamicFrame
joined_dyf = DynamicFrame.fromDF(joined_df, glueContext, “nested”)

# Use transform applymapping – applies a mapping in a DynamicFrame. We use this to define relevant attributes for the individual products and order metadata.
root_dyf_applymapping = ApplyMapping.apply(
frame=root_dyf,
mappings=[
(“order_id”,”string”,”order_id”,”string”),
(“SK”,”string”,”SK”,”string”),
(“creation_timestamp”,”string”,”creation_timestamp”,”string”),
(“is_cod”,”boolean”,”is_cod”,”boolean”),
(“delivery_address”,”string”,”delivery_address”,”string”),
(“invoice_id”,”string”,”invoice_id”,”string”),
(“shipment_id”,”string”,”shipment_id”,”string”)],
transformation_ctx=”root_dyf_applymapping”)

joined_dyf_applymapping = ApplyMapping.apply(
frame=joined_dyf,
mappings=[
(“order_id”,”string”,”order_id”,”string”),
(“`itemlist.val.prod_code`”,”string”,”SK”,”string”),
(“`itemlist.val.date_added`”,”string”,”date_added”,”string”),
(“`itemlist.val.seller_id`”,”string”,”seller_id”,”string”),
(“`itemlist.val.prod_price`”,”int”,”price”,”int”),
(“`itemlist.val.prod_quant`”,”int”,”quantity”,”int”)],
transformation_ctx=”joined_dyf_applymapping”)

Write data into the DynamoDB table

Create a new DynamoDB table called orders_vertically_partitioned where the sharded data will be written by the Glue ETL job. When storing data in Amazon DynamoDB, it’s recommended that you review DynamoDB security best practices.

The key schema for the table is:
Partition key: order_id (of type String)

Sort key: SK (a generic attribute name of type String)

In the Glue ETL job script, there are DynamicFrame structures with the intended target schema. Use the write_dynamic_frame function and provide the DynamoDB table name and write throughput threshold as parameters in the connection_options. The dynamodb.throughput.write.percent parameter limits the DynamoDB write capacity units consumed for this job.

# Writing to DynamoDB
root_dyf_write_sink_dynamodb = glueContext.write_dynamic_frame.from_options(
frame=root_dyf_applymapping,
connection_type=”dynamodb”,
connection_options={
“dynamodb.output.tableName”: “orders_vertically_partitioned”,
“dynamodb.throughput.write.percent”: “1.0”})

joined_dyf_write_sink_dynamodb = glueContext.write_dynamic_frame.from_options(
frame=joined_dyf_applymapping,
connection_type=”dynamodb”,
connection_options={
“dynamodb.output.tableName”: “orders_vertically_partitioned”,
“dynamodb.throughput.write.percent”: “1.0”})

Example script

The following code shows the complete script:

import sys
from awsglue.transforms import *
from awsglue.utils import getResolvedOptions
from pyspark.context import SparkContext
from awsglue.context import GlueContext
from awsglue.job import Job
from awsglue.dynamicframe import DynamicFrame
args = getResolvedOptions(sys.argv, [‘TempDir’, ‘JOB_NAME’])
sc = SparkContext()
glueContext = GlueContext(sc)
spark = glueContext.spark_session
job = Job(glueContext)
job.init(args[‘JOB_NAME’], args)

# Reading nested JSON data from Amazon S3 bucket
read_s3_orders_nested_json = glueContext.create_dynamic_frame.from_catalog(
database=”orders-nested”,
table_name=”s3_orders_nested_json”,
transformation_ctx=”read_s3_orders_nested_json”)

# Add new column
def add_sort_key_col(r):
r[“SK”] = “metadata”
return r

add_column_to_s3_orders_nested_json = Map.apply(
frame=read_s3_orders_nested_json, f=add_sort_key_col)

# Uses transform relationalize which flattens a nested schema in a DynamicFrame
relationalized_json = add_column_to_s3_orders_nested_json.relationalize(
root_table_name=”root”, staging_path=args[“TempDir”])

root_dyf = relationalized_json.select(‘root’)
root_itemlist_dyf = relationalized_json.select(‘root_itemlist’)

# Reformat the flattened delivery_address attribute to a string
def reformat_address(r):
r[“delivery_address”] = (r[“delivery_address.door”])+”, “+str(r[“delivery_address.street”])+”, “+(r[“delivery_address.city”])+”, “+(r[“delivery_address.state”])+”, “+(r[“delivery_address.pin”])
del r[“delivery_address.door”]
del r[“delivery_address.street”]
del r[“delivery_address.city”]
del r[“delivery_address.state”]
del r[“delivery_address.pin”]
return r

root_dyf = Map.apply(frame = root_dyf, f = reformat_address)

# Convert to Spark Dataframe
root_df_jf = root_dyf.toDF()
root_itemlist_df = root_itemlist_dyf.toDF()

# Apply inner join
joined_df = root_df_jf.join(
root_itemlist_df,
root_df_jf.itemlist == root_itemlist_df.id,
how=’inner’)

# Converting back to DynamicFrame
joined_dyf = DynamicFrame.fromDF(joined_df, glueContext, “nested”)

# Use transform applymapping – applies a mapping in a DynamicFrame. We use this to define relevant attributes for the individual products and order metadata.
root_dyf_applymapping = ApplyMapping.apply(
frame=root_dyf,
mappings=[
(“order_id”,”string”,”order_id”,”string”),
(“SK”,”string”,”SK”,”string”),
(“creation_timestamp”,”string”,”creation_timestamp”,”string”),
(“is_cod”,”boolean”,”is_cod”,”boolean”),
(“delivery_address”,”string”,”delivery_address”,”string”),
(“invoice_id”,”string”,”invoice_id”,”string”),
(“shipment_id”,”string”,”shipment_id”,”string”)],
transformation_ctx=”root_dyf_applymapping”)

joined_dyf_applymapping = ApplyMapping.apply(
frame=joined_dyf,
mappings=[
(“order_id”,”string”,”order_id”,”string”),
(“`itemlist.val.prod_code`”,”string”,”SK”,”string”),
(“`itemlist.val.date_added`”,”string”,”date_added”,”string”),
(“`itemlist.val.seller_id`”,”string”,”seller_id”,”string”),
(“`itemlist.val.prod_price`”,”int”,”price”,”int”),
(“`itemlist.val.prod_quant`”,”int”,”quantity”,”int”)],
transformation_ctx=”joined_dyf_applymapping”)

# Writing to DynamoDB
root_dyf_write_sink_dynamodb = glueContext.write_dynamic_frame.from_options(
frame=root_dyf_applymapping,
connection_type=”dynamodb”,
connection_options={
“dynamodb.output.tableName”: “orders_vertically_partitioned”,
“dynamodb.throughput.write.percent”: “1.0”})

joined_dyf_write_sink_dynamodb = glueContext.write_dynamic_frame.from_options(
frame=joined_dyf_applymapping,
connection_type=”dynamodb”,
connection_options={
“dynamodb.output.tableName”: “orders_vertically_partitioned”,
“dynamodb.throughput.write.percent”: “1.0”})

job.commit()

After the script runs successfully, you can verify that the data is vertically sharded in DynamoDB. The item collection for each order_id contains the order metadata and metadata of each product from the item list. The prod_code values can now be indexed by using the SK attribute.


Figure 6: Table showing data loaded and vertically partitioned

Performance considerations

The Glue ETL job, run time depends on the number and size of input documents and the number and type of job workers. For use cases where the input data volume changes significantly, it’s helpful to use AWS Glue Auto Scaling as it handles compute scaling depending on the parallelism at each stage in the job run. For workloads where Amazon S3 input data is received incrementally (for example, per day), consider using job bookmarks to process only the new, unprocessed data.

You can also configure the value of dynamodb.throughput.write.percent as per your requirements to control the amount of DynamoDB write capacity consumed by this ETL job. The default value for this property is 0.5. You can find more details about the DynamoDB parameters in the AWS Glue Developer Guide.

Clean up

If you don’t need the Amazon S3 data and DynamoDB table anymore, delete it after completing this exercise to avoid unnecessary costs. Also delete the Glue job and Crawler if not needed, although they don’t incur additional charges if not run.

Conclusion

In this post, you learned how to use AWS Glue to perform vertical partitioning of JSON document data to be stored in DynamoDB. You can use this technique to perform other transformations on data during migration before loading it into the target database, such as concatenating attributes or flattening nested attributes.

For additional resources, refer to the following:

How do I optimize my AWS Glue ETL workloads when reading from or writing to Amazon DynamoDB?
Using DynamoDB as a sink for Glue.
Simplify Querying Nested JSON with the AWS Glue Relationalize Transform
Monitoring AWS Glue jobs
Using auto scaling for AWS Glue
Introduction to AWS Glue Autoscaling

Leave a comment if you have questions or feedback.

About the authors

Juhi Patil is a London-based DynamoDB Specialist Solutions Architect with a background in big data technologies. In her current role, she helps customers design, evaluate, and optimize their DynamoDB-based solutions.

Mohammedfahim Pathan is a Bengaluru-based Senior Cloud Support Engineer. He has over 13 years of experience in analytics, data warehouse, and distributed systems. He is passionate to evaluate new technologies and help customers with innovative solutions.

Read MoreAWS Database Blog

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments