The $1,000 AWS mistake
A cautionary tale about AWS VPC networking, NAT Gateways, and how a missing VPC Endpoint turned S3 data transfers into an expensive lesson.
Read more [www.geocod.io]
Posts tagged with aws
A cautionary tale about AWS VPC networking, NAT Gateways, and how a missing VPC Endpoint turned S3 data transfers into an expensive lesson.
Read more [www.geocod.io]
– ashallendesign.co.uk - submitted by Ash Allen
Learn about how to use DynamoDB in Laravel for caching and storing Laravel models.
Read more [ashallendesign.co.uk]
Join 9,500+ smart developers
Every month I share what I learn from running Spatie, building Oh Dear, and maintaining 300+ open source packages. Practical takes on Laravel, PHP, and AI that you can actually use.
No spam. Unsubscribe anytime. You can also follow me on X.
– chriswhite.is - submitted by Chris White
I'll show you how to generate a ZIP export of an arbitrary numbers of files in an S3 bucket in a fast and memory efficient way, so you don't go OOM.
Read more [chriswhite.is]
With Workerless you can configure the maximum concurrency across multiple queues and control the queue prioritization on AWS. This tool and beautiful website was created by Mohamed Said.
Read more [workerless.run]
Creating social images for your website is super simple using Browsershot and AWS Lambda.
Read more [yoeri.me]
– rias.be
Shiki is a beautiful syntax highlighter powered by the same language engine that many code editors use. We've just released a package that allows you to run Shiki on AWS Lambda through Sidecar.
Read more [rias.be]
While Amazon S3 is awesome for storage, It also has a feature called S3 Select. With S3 Select, You can use a simple SQL query to filter the content of the stored objects. and retrieve only a subset of data that you need.
Read more [sanjit.me]
Here's how Treblle, a large Laravel app, manages to keep their AWS costs low.
Read more [treblle.com]
Troy Hunt recently got a very high bill for his severless hosting. In this post, he share why the bill was so high, and how he's avoiding this for future bills.
Read more [www.troyhunt.com]
Chris Fidao wrote another excellent post on AWS.
Read more [laravel-news.com]
Here's a collection of the most commonly missed things when using AWS with Laravel Forge!
Read more [laravel-news.com]
– github.com - submitted by Aaron Francis
Sidecar packages, creates, deploys, and executes Lambda functions from your Laravel application.
Read more [github.com]
Mikhail Shilkov explains what cold starts are and discusses some interesting benchmarks.
This article describes AWS Lambda—the dynamically scaled and billed-per-execution compute service. Instances of Lambdas are added and removed dynamically. When a new instance handles its first request, the response time increases, which is called a cold start.
Read more [mikhail.io]
– blog.deleu.dev - submitted by Marco Deleu
This post offers a good explanation of VPC and related terms.
Read more [blog.deleu.dev]
Yan Cui explains a feature called "Provisioned concurrency" that Amazon recently launched
Read more [lumigo.io]
At the Laracon US conference in New York, Taylor Otwell released Laravel Vapor, a new platform for serverless hosting backed by AWS services.
You can watch the presentation below.
PHP UK is one of my favourite conferences. Unfortunately I couldn't make it this year, but I'll be sure to watch the videos that have been published a little while ago.
Here's a cool session on running PHP on AWS Lamba by Neal Brooks
You can watch all other talks in this playlist on YouTube.
? Testing simple S3 uploads with randomized file names in Laravel? Use `Storage::fake` and real-time Facades. Handled. pic.twitter.com/LIBfHbLQxD
— HEMPHILL (@davidhemphill) March 12, 2019
Read more [twitter.com]
A few weeks ago Matthieu Napoli released Bref, a tool to get any PHP project up and running in a serverless environment. Matthieu has managed to get working serverless too.
Serverless basically means “Running apps without worrying about servers”. The main difference with a traditional hosting is that you do not maintain the servers and reserve their capacity. They are scaled up or down automatically and you pay only for what you use. ... Today let’s try to deploy a Laravel application on AWS lambda using Bref.
Read more [mnapoli.fr]
Elastic Beanstalk is a service by Amazon that can automatically scale an application. Gilbert Pellegrom published a second blogpost in his series on how to get Laravel up and running on the service.
In my last article we decoupled Laravel and got it ready for deployment to the Elastic Beanstalk architecture. However, before we race ahead to actually deploying our code to Elastic Beanstalk we need to do some preparation first. Specifically we need to set up some other AWS services that will be used by our Laravel app. These include:
- Virtual Private Cloud (VPC) to keep our infrastructure secure
- Relational Database Service (RDS) for our MySQL database
- ElastiCache for our Redis cache
With these “supporting” services up and running we can finally move on to deploying our Laravel app to Elastic Beanstalk.