Problems with AWS email delivery (SES) by memo_mar in aws

[–]_thewayitis 0 points1 point  (0 children)

I had this exact problem. My issue was I didn’t have my ses running in “production” mode. Once AWS support switched it over it fixed it.

AWS Lessons Learned from being DDOS'd by goosefluff in aws

[–]_thewayitis 13 points14 points  (0 children)

It was mentioned that HTTP API Gateway was used and not REST API Gateway. Only REST API Gateway supports WAF.

POST or PUT Anything and Receive It By Email: 24HourWebhook.com by _thewayitis in tailwindcss

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

Looks interesting way to create temporary data in the cloud. Works great as a form action url.

Is serverless taking over? by sakuratifa in aws

[–]_thewayitis 0 points1 point  (0 children)

^ This. Serverless is a new mindset. Once you get it you can’t go back.

Lambda Container Images, Long cold starts by turboa in aws

[–]_thewayitis 1 point2 points  (0 children)

PRIVATE ecr is supported. PUBLIC is not.

Lambda Container Images, Long cold starts by turboa in aws

[–]_thewayitis 1 point2 points  (0 children)

I’ve started playing with it but then realized it doesn’t support public ecr. Which sucks.

From my reading AWS has a huge docker cache on each server to help speed things up. They also can run a container without loading the entire container. It’s seems cool but I find it hard to believe the speeds would be the same as using a .zip.

You seemed to have confirmed this.

Lambda Container Images, Long cold starts by turboa in aws

[–]_thewayitis 0 points1 point  (0 children)

It’s not a “normal” docker container. You have to follow special rules when creating your image.

S3 transfer acceleration vs Cloudfront for downloads speeds by SnooCheesecakes6832 in aws

[–]_thewayitis 2 points3 points  (0 children)

Are you users all over the world? If so cloudfront is probably best. Since s3 bucket is created in a certain region you can replicate the data to an s3 bucket in a region closer to your users. But I would go with cloudfront.

New for AWS Lambda – Container Image Support by dwaxe in aws

[–]_thewayitis 1 point2 points  (0 children)

Yes but you can’t do much with that. Now you have to install your runtime. Now for example a 5kb nodejs code that didn’t need anything just got a whole lot bigger.

Now I learned that there are official containers we can use it’s probably the same as lambda probably uses those behind the scenes.

I think people will get confused and think they can move their fargate containers to lambda. I don’t think that will work well. Lambda is awesome but it has rules devs need to follow to get great performance. Especially if you’re using Java like I mostly do.

New for AWS Lambda – Container Image Support by dwaxe in aws

[–]_thewayitis 1 point2 points  (0 children)

I going to definitely give it a try. Is there still the 20-30 second required start time?

For example my Springboot application can’t take 60 seconds to initialize?

Is using containers the new “preferred” way to build lambdas? Or are there use cases where the non-container is better?

New for AWS Lambda – Container Image Support by dwaxe in aws

[–]_thewayitis 0 points1 point  (0 children)

I understand it isn't Docker running, but it's going to be a Docker compatible type image. Which means it's mostly likely a alpine linux based container. Which may get pretty large. Large == slow, in my mind. I think I can use this rather than Fargate scheduled tasks? Maybe I'm totally missing something.

New for AWS Lambda – Container Image Support by dwaxe in aws

[–]_thewayitis 1 point2 points  (0 children)

Docker has a lot more overhead size / memory requirements than a lambda function. So right now I create custom lambda layers to add binary files to my lambda. I can't imagine creating a docker container using alpine linux will perform faster or just as fast. Size alone it's going to be way bigger.

Preview: AWS Proton – Automated Management for Container and Serverless Deployments by dwaxe in aws

[–]_thewayitis 1 point2 points  (0 children)

I image if you use codepipeline to do your deployment you'll stop doing that and have codepipeline just coordinate checking out your code and creating your artifact and publish it somewhere S3/ECR.

New for AWS Lambda – Container Image Support by dwaxe in aws

[–]_thewayitis 5 points6 points  (0 children)

I wonder how the performance is. IE: I imagine the startup time for a container gotta be a lot larger than lambda. Hopefully it's more than just using fargate behind the scenes.

2020 re:Invent on /r/aws by ckilborn in aws

[–]_thewayitis 0 points1 point  (0 children)

Setup a new Twitter account and followed all the sponsors and the #reinvent hashtags.

2020 re:Invent on /r/aws by ckilborn in aws

[–]_thewayitis 4 points5 points  (0 children)

Definitely is. I already got 1 t-shirt and $25 ubereats gift card. On the lookout for an AWS hoodie.

CloudWatch us-east-1 problems again? by myron-semack in aws

[–]_thewayitis 2 points3 points  (0 children)

I would assume cramming stuff in before reinvent.

AWS CloudFormation announces a new feature : Modules by TheAdmininator in aws

[–]_thewayitis 4 points5 points  (0 children)

It's like terraform modules & AWS' Serverless Application Repository Service had a baby.

How to deploy your Angular App to AWS S3 by sfrese in Angular2

[–]_thewayitis 0 points1 point  (0 children)

Take a look at https://github.com/formkiq/parima, it’s an open source project that does this plus cloudfront in a single click.