Amazon Supply Chain and Logistics

Accelerating the transformation of supply chain data from legacy systems into AWS Supply Chain

Customers across all industries continue to leverage autonomous and disparate systems such as enterprise resource planning (ERP), order management systems (OMS), and enterprise data warehouse (EDW) to store supply chain and operational data. While these systems perform their basic function well, supply chain data remains locked in these disparate data source systems.

The underlying data models and definitions for these systems can vary, making it difficult to standardize and transform data for consumption into business applications or reporting. The existence of non-standardized data in these systems increases the time spent by data administrators and business analysts in transforming or standardizing data for their business needs such as reporting or planning.

This situation also impedes organizations from taking advantage of machine learning (ML) powered functions and operations that are optimized with unified and standardized data. Our customers have shared how siloed data and manual integration disrupts operations because of complex and time-consuming extract, transform, and load (ETL) functions.

In this blog post, we show you a simple approach to using AWS services to transform non-standardized data and simplify ETL operations. This post also explains the process to set up automated pipelines that feed data into AWS Supply Chain.

AWS Supply Chain is a cloud-based supply chain management application that works with your existing ERP and supply chain management systems. AWS Supply Chain contextualizes your data in a real-time visual map using a set of interactive visual interfaces. It highlights current inventory selection and quantity, as well as the health of inventory at each location (for example, inventory that is at risk for stock out). AWS Supply Chain also enables ML-powered actionable insights to generate more accurate vendor lead times and to reduce risk.

Solution overview

The data transformation solution uses Amazon Simple Storage Service (Amazon S3), an AWS Glue crawler, AWS Glue DataBrew, and AWS Supply Chain. The following reference diagram depicts the integration of these services.

data mapping reference architecture

  1. On-premises data sources – This block captures any archaic data sources on the customer’s premises.
  2. Amazon S3 raw data sink – These Amazon S3 buckets are intended to receive raw (unaltered) data from the source systems. For this setup, you upload files of comma separated values (.csv) type.
  3. AWS Glue crawler – AWS Glue crawlers are designed to crawl files in Amazon S3 buckets and learn the underlying schema of the file that is present. This resource allows customers to cut down the time normally spent on manual schema mappings. Also, AWS Glue crawlers have built-in options to configure the frequency for running the crawl jobs. The output of this service is to create schema and table definitions for the data sources.
  4. AWS Glue DataBrew – This tool offers customers a visual ETL tool that provides:
    1. a view of the table schema,
    2. a view of data lineage to understand how changes are flowing through, and
    3. mapping and transformation features to manage how the source fields will be modified.
  5. Amazon S3 transformed data – Amazon S3 storage locations house modified and standardized data. This can connect directly to business applications or any reporting tool.
  6. AWS Supply Chain – This purpose-built end user business application takes advantage of ML algorithms for generating insights that assist in running resilient supply chains.

Prerequisites

For this blog post, it is assumed that you understand the use of the mentioned services and you have the following prerequisites:

  1. AWS account with the listed services enabled.
  2. The ability to create and modify AWS Identity and Access Management (IAM) roles. This is required to create policies and permissions (particularly services related to AWS Glue).
  3. Access to source systems and the ability to extract .csv files from these systems.

Solution scope

For the purposes of this blog post, we make a number of assumptions.

  1. We exclude the process of extracting .csv files from the source systems and uploading them into Amazon S3 buckets.
  2. Source files are manually uploaded to the Amazon S3 buckets. However, you can choose to use any process to load them into the Amazon S3 buckets.
  3. The formats of files received are assumed to have comma separated values. Source File Example
  4. The crawl workflow is set to run on-demand. However, this post will also explain how to configure the workflow for a different frequency.
  5. If there are changes to the schema, the current solution can be extended to notify users of schema changes and any associated impacts to the data flow. More information on this design extension is available at the AWS Big Data Blog post Identify source schema changes using AWS Glue.

Solution walk-through

Sign in to the AWS Management Console as an administrator. Use the Search box to search for Amazon S3.

Amazon S3 buckets

  1. To create Amazon S3 buckets, select Create Bucket and follow the on-screen procedures. For this setup, leave default options unaltered. This will ensure contents in the Amazon S3 buckets will be scanned for changes for every file that’s added.S3 bucket creation processS3 Bucket process continued
  2. To ingest data, you can upload the raw file extracted from your source system into the Amazon S3 bucket.S3 bucket data ingestion

S3 bucket data ingestion continuedAWS Glue crawler

  1. Use the search box at the top of the console to navigate to AWS Glue.AWS Glue Search
  2. In the left navigation bar, select Databases, then select Create database.Database creation
  3. Use the search box at the top of the screen and search for Crawler to navigate to the crawler feature.AWS Crawler Search Screen
  4. On the next screen, in the upper right corner, select Create crawler .
  5. In the Name and Description fields, enter the value based on the entity you want to add. In the following screenshot, the crawler is being created for product entity. Then select Next.Set Crawler Properties Screen
  6. On the next screen, you will be prompted to add a data source. This is where you reference the Amazon S3 location.adding a data source screen
  7. Add a data source continuedYou have the option of selecting a schedule for when to start this crawler job. On demand is selected for this walk-through. You can change the setting based on the requirement. Then select Next.set output and scheduling screen
  8. On the ensuing screen, you can review the completed selections and click on the Create crawler button.crawler creation screen
  9. You can click on Databases on the left navigation bar, and select Tables to see a list of the created tables.created tables list

AWS Glue Databrew

  1. Search for AWS Glue Databrew in the search box.AWS Glue Databrew Search
  2. In the left navigation pane, select Datasets . In this step you will create a new connection for the dataset that you created using AWS Glue Crawler. Repeat these steps for all the tables you previously defined.New connection for datasets
  3. New connection for datasets continuedNew connection for datasets continuedClick on Create project button on the AWS Glue DataBrew screen to start a new data project.AWS Glue DataBrew Porject Creation screen
  4. On the Create project screen, enter the Project name, and select datasets that were previously created to complete this step. As an example, Outbound OrderLine dataset is used for creating the project below.Project creation screen
  5. GitHub Repository: Any schema conversion steps, such as column name changes, can be done using recipe files. You can refer to the json-recipe file in this GitHub location. For example, the Outbound OrderLine table involves just column name changes. You can download these recipes to your local machine for reference or use.Github file download screen
  6. Navigate back to the Databrew window and select recipes. To upload the recipes (i.e. downloaded from GitHub step or your own version) to your Databrew window, in the right corner, select Upload recipe.Upload Recipe Screen

AWS Glue Databrew – Visual Transformation [OPTIONAL]

AWS Glue DataBrew allows you to visually change or make modifications to incoming data. This includes changing formats, column names, and column manipulations.

  1. To create a new project, navigate to Projects and select New project. In this example, we use InventoryPositions.New project creation screen
  2. The recipe options on the top right corner allows you to add the conversion steps. The following example shows column renames of existing data.column renames of existing data.
  3. One example of field conversion would be changing Standard date to UTC format. To make this change, select Add step.field conversion screen
  4. field conversion screen continuedOnce the recipes are uploaded, navigate to Jobs to create a job to automate the conversion. Select Create job.automate the conversion screen
  5. Under the Job details screen, you will select the recipe job. Next under dataset you will associate the dataset for which we want to define the new job. AWS Glue Databrew service offers flexibility in terms of the format we want to extract data (in our example we will go with comma separated values as our preferred format).data extraction format
  6. Associated schedules [OPTIONAL]: As an additional step, you can setup a scheduling cadence for the job.setup a scheduling cadence
  7. Once all the required fields including permissions are filled out, select Create job. Once the job is created, you can wait for the schedule to execute the job or do it manually.schedule execution screen
  8. Upon successful execution of the job, the transformed .csv should be available in the Amazon S3 location.successful execution of the job

Conclusion

The existence of non-standardized data in legacy and disjointed data systems like ERP and WMS increases the required time and effort to standardize data for business needs such as reporting or planning. Integration between supply chain management systems can be difficult, complex, and very time-consuming and can force organizations into using a single vendor or very expensive integration services. This walk-through covered a data transformation approach using AWS services to automate the normalized data load process.

This approach will help you unlock valuable supply chain data so you can make decisions faster and improve efficiency. This blog also briefly covered AWS Supply Chain, which increases supply chain visibility and enables improved supply chain resiliency. Visit AWS Supply Chain to learn more and get started. For a self-paced technical overview, visit AWS Workshops.

Vikram Balasubramanian

Vikram Balasubramanian

Vikram Balasubramanian is a Senior Solutions Architect for Supply Chain. In his role, Vikram works closely with supply chain executives to understand their goals and problem areas and align them with best practices in terms of solution. He has over 17 years of experience working with several Fortune 500 companies across different Industry verticals in the supply chain space. Vikram holds an MS in Industrial Engineering from Purdue University. Vikram is based out of North Dallas area.