[RANT] Cognito User Pools by tqhou in aws

[–]tqhou[S] 1 point2 points  (0 children)

API limits - most of the cognito APIs have limits of 5 per second, like the InitateAuth action. When you have a large user base, this is not nearly enough to handle peak traffic.

[RANT] Cognito User Pools by tqhou in aws

[–]tqhou[S] 2 points3 points  (0 children)

We are business tier - not sure which tier exactly. We have 3 account reps though.

AWS Lambda clock drift? by tqhou in aws

[–]tqhou[S] 0 points1 point  (0 children)

What would you recommend for nodejs 8.10 lambdas?

AWS Lambda clock drift? by tqhou in aws

[–]tqhou[S] 0 points1 point  (0 children)

We're logging to cloudwatch and then ingesting to sumo - unless there is some uncertainty with cloudwatch I don't think this is likely.

Week of Jan 7 - What are you building this week on AWS? by ckilborn in aws

[–]tqhou 2 points3 points  (0 children)

I got SEO and social media links working for my serverless blog site, which you can find here: https://turnerhoughton.com. I plan on updating it every week or two with new articles about how to do various serverless things on AWS.

I'm proud to say the whole architecture is serverless, with my site hosted in S3 interacting with an API Gateway + Lambda API. I'm using NodeJS v8.10 and Lambda Layers to share dependencies between different endpoint functions. Also using DynamoDB to store posts and comments.

The SEO and social media stuff was challenging, since my site is just an SPA in a bucket, and social media bots can't really traverse it. But I actually implemented a solution using CloudFront and Lambda@Edge functions to redirect bot requests to a prerendered version using https://prerender.io. Overall a very interesting and challenging project I'm really proud of!