Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
giedri authored Nov 22, 2024
1 parent acd2ed0 commit 8a568ce
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions examples/data-processor/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Event Driven Architectures with Amazon EKS and AWS Controllers for Kubernetes

This data processing example uses event-driven approach for data ingestion and process orchestration, along with Amazon EMR on EKS for data processing implementation.
This data processing example uses event-driven approach for data ingestion and process orchestration, along with Amazon EMR on EKS for data processing implementation. This example uses [New York City taxi data](https://www.nyc.gov/site/tlc/about/tlc-trip-record-data.page).
## Architecture

Following diagram illustrates flow of the example and services used:
Expand Down Expand Up @@ -83,10 +83,9 @@ List all resources in the stack namespace (it will take some time to get all res
```shell
kubectl api-resources --verbs=list --namespaced -o name | xargs -n 1 kubectl get --show-kind --ignore-not-found -n $WORKLOAD_NAME
```

Copy sample data for processing (for example `yellow_tripdata_2024-05.parquet`):
```shell
# Make sure to change your sample data bucket name
aws s3 cp s3://eks-eda-sample-data/yellow_tripdata_2024-05.parquet s3://$BUCKET_NAME/input/yellow_tripdata_2024-05.parquet
aws s3 cp <your-sample-data-file-folder>/yellow_tripdata_2024-05.parquet s3://$BUCKET_NAME/input/yellow_tripdata_2024-05.parquet
```

## Clean up
Expand Down

0 comments on commit 8a568ce

Please sign in to comment.