Skip to content

Commit

Permalink
fix(aws): ensure aws has matching packages
Browse files Browse the repository at this point in the history
  • Loading branch information
bassrock committed Jan 2, 2025
1 parent 0179ab7 commit 782dd6e
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 41 deletions.
2 changes: 1 addition & 1 deletion .syncpackrc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"@aws-sdk/client-s3",
"@aws-sdk/**"
],
"pinVersion": "3.717.0",
"pinVersion": "3.716.0",
"label": "AWS SDK Dependencies should all have the same version (uses a specifc package as the first one for Renovate to latch to)"
},
{
Expand Down
7 changes: 7 additions & 0 deletions lambdas/user-list-search-events/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# User List Search Events

For a given set of User List events, this service will push messages to SQS so that the User List Search Indexing Lambda will index the item in a Users List.

This replaces indexing a user's list from an outdated Kinesis Stream and replaces the UserListSearchKinesisToSQS lambdas.

NOTE: While we could remove sending this data to an SQS queue and do the indexing here, we do not because the SQS queues give us the ability to prioritize and parallelize indexing. For instance we have an SQS queue and lambda that only handles Premium Upgrade indexing so that real time user indexing is fast.
70 changes: 35 additions & 35 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions servers/account-data-deleter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
"watch": "tsc -w --preserveWatchOutput & nodemon --inspect --config ../../nodemon.json"
},
"dependencies": {
"@aws-sdk/client-s3": "3.717.0",
"@aws-sdk/client-s3": "3.716.0",
"@aws-sdk/client-sqs": "3.716.0",
"@aws-sdk/lib-storage": "3.717.0",
"@aws-sdk/s3-request-presigner": "3.717.0",
"@aws-sdk/lib-storage": "3.716.0",
"@aws-sdk/s3-request-presigner": "3.716.0",
"@opentelemetry/api": "1.9.0",
"@pocket-tools/apollo-utils": "workspace:*",
"@pocket-tools/event-bridge": "workspace:*",
Expand Down
4 changes: 2 additions & 2 deletions servers/list-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
"@apollo/server": "4.11.2",
"@apollo/subgraph": "2.9.3",
"@aws-sdk/client-kinesis": "3.716.0",
"@aws-sdk/client-s3": "3.717.0",
"@aws-sdk/client-s3": "3.716.0",
"@aws-sdk/client-sqs": "3.716.0",
"@aws-sdk/s3-request-presigner": "3.717.0",
"@aws-sdk/s3-request-presigner": "3.716.0",
"@opentelemetry/api": "1.9.0",
"@pocket-tools/apollo-cursor-pagination": "1.0.3",
"@pocket-tools/apollo-utils": "workspace:*",
Expand Down

0 comments on commit 782dd6e

Please sign in to comment.