Customizing, building, and installing AWS SDK for pandas for different use cases
AWS SDK for pandas can be installed in different programming environments to perform data-wrangling activities. Let us consider the following examples, which will help us understand the usage of awswrangler
across different environments:
- A business user from Project A wants to install AWS SDK for pandas on a local machine and perform a proof of concept for a new project. The user also wants to do the same in an Amazon EC2 instance to test the solution with data from an AWS environment.
- An IT person from Project A wants to use AWS SDK for pandas on a Lambda function to perform data-wrangling activities on low-volume data.
- An IT person from Project B wants to use AWS SDK for pandas on a Glue Python shell to perform data-wrangling activities on data extracted from a source database. The team expects the transformations will take more than 15 minutes (the Lambda execution time limit). The team...