Skip to content

Commit 8a568ce

Browse files
authored
Update README.md
1 parent acd2ed0 commit 8a568ce

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

examples/data-processor/README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Event Driven Architectures with Amazon EKS and AWS Controllers for Kubernetes
22

3-
This data processing example uses event-driven approach for data ingestion and process orchestration, along with Amazon EMR on EKS for data processing implementation.
3+
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).
44
## Architecture
55

66
Following diagram illustrates flow of the example and services used:
@@ -83,10 +83,9 @@ List all resources in the stack namespace (it will take some time to get all res
8383
```shell
8484
kubectl api-resources --verbs=list --namespaced -o name | xargs -n 1 kubectl get --show-kind --ignore-not-found -n $WORKLOAD_NAME
8585
```
86-
86+
Copy sample data for processing (for example `yellow_tripdata_2024-05.parquet`):
8787
```shell
88-
# Make sure to change your sample data bucket name
89-
aws s3 cp s3://eks-eda-sample-data/yellow_tripdata_2024-05.parquet s3://$BUCKET_NAME/input/yellow_tripdata_2024-05.parquet
88+
aws s3 cp <your-sample-data-file-folder>/yellow_tripdata_2024-05.parquet s3://$BUCKET_NAME/input/yellow_tripdata_2024-05.parquet
9089
```
9190

9291
## Clean up

0 commit comments

Comments
 (0)