Masthash

#Lambda

Teri Radichel
22 hours ago

Mirroring a #GitHub Repository to GitHub with AWS #Secrets Manager

ACM.324 Creating a common function to retrieve a secret value used by all #Lambda functions to retrieve their own secrets
~~
(i.e. write your Secrets Manager code once. 😎)

https://medium.com/cloud-security/mirroring-a-github-repository-to-github-with-aws-secrets-manager-463845e2574a

Hadn't thought of using EFS as a shared cache.. #lambda #awscomsum

#aws #awscommunity #manchester #uk

Brian LeRoux 💚
2 days ago

Bundling code running in AWS Lambda has really poor downsides.

First downside is a build step. Second debugging is harder.

Yes sometimes sourcemaps can work, with additional setup, but that's also obviously slower than not needing to. Aside the fact they do not always work.

Better: not needing to bundle. We've found we don't need to with http://arc.codes

1/2 #aws #lambda #serverless #esm

:rss: Qiita - 人気の記事
2 days ago
Andrew Feeney
4 days ago

Does anyone know how, and how often #Laravel #Vapor native runtimes are updated? Where do the builds come from? Is there a docker file repo somewhere?

#PHP #LaravelVapor #Lambda

Teri Radichel
4 days ago

Handling Credentials Generically in a Custom Lambda Runtime
~~
ACM.307 Also, threat modeling use of local credentials in relation to the LastPass breach
~~
#lambda #credentials #runtime #testing #attack #threatmodel #lastpass #breach

https://medium.com/cloud-security/handling-credentials-generically-in-a-custom-lambda-runtime-750b3580dba8

Todd A. Jacobs
5 days ago

@Ryanbigg What's the context? Arrays have indexes, not keys, but could contain hashes. Assuming all hashes:

```
[{a: 1}, {b: 2}, {c: 3}].
map &:keys
```

Maybe :index, :at, or :each_with_index depending on why you're calling :[] on Array elements. Otherwise:

```
key = :b
[{a: 1}, {b: 4}].filter { _1[key] }
# => [{:b=>4}]
```

My personal favorite, with #lambda helper:

```
k = "key"
try_key = ->(e) { e[k] rescue nil }

[0, {"lock"=>1}, {"key"=>2}].
map(&try_key)
# => [nil, nil, 2]
```

Teri Radichel
5 days ago

A Generic Bash Error Handler For a Bash Custom Lambda Runtime Interface
~~
ACM.319 Handling multiple errors and different types of errors
~~
#lambda #errorhandling #bash #AWS

https://medium.com/cloud-security/a-generic-bash-error-handler-for-a-bash-custom-lambda-runtime-interface-6e0c55f5252b

Teri Radichel
1 week ago

Using a Secrets Manager in an #AWS Lambda Function in a #Private #Network
~~
ACM.317 Lack of sufficient logging and generic error messages makes troubleshooting #Lambda #timeouts complicated
~~
Some troubleshooting here. More on depth in future posts.

https://medium.com/cloud-security/using-a-secrets-manager-in-an-aws-lambda-function-in-a-private-network-7e596014ad0d

Teri Radichel
1 week ago

Using a #Secrets #Manager in an #AWS #Lambda Function in a Private #Network
~~
ACM.317 Lack of sufficient logging and generic error messages makes troubleshooting #Lambda #timeouts complicated
~~
Have a related wish list item to fix this coming soon.

https://medium.com/cloud-security/using-a-secrets-manager-in-an-aws-lambda-function-in-a-private-network-7e596014ad0d

Noël Bernard-Talipo
1 week ago

Je crois que deux et deux sont quatre

Onc il eut, à son jeu libéral,
en art seul penchant
et aux dieux dédain.

Il eut ans,
et à ce regard,
temps
différant,
en arc se pencha.

En air
eau à crêts mêla
feu
et aux cieux versa
le
sang.

Ergs, aas
à mer cédaient.
Eaux à prés jetaient
plein
vrac.

Et as,
à mer entrant,
à ce néant
va.

Eut art.
A des géants
le trépas.

Et a
de
grès
le repas.

#lambda https://taliporefleuri.fr/2023/09/21/je-crois-que-deux-et-deux-sont-quatre/

:rss: Qiita - 人気の記事
1 week ago
Teri Radichel
1 week ago

Adding a #Secret to A Lambda Deployment
~~
ACM.315 Creating a Lambda-Specific Secret #Resource #Policy
~~
I’m in the process of creating a single set of templates for common #Lambda deployments. Much more in the works. Check it out.

https://medium.com/cloud-security/adding-a-secret-to-a-lambda-deployment-bb55f76558b3

Clayton Errington 🖥️
1 week ago

This was a fun #python script I had to work on this week. How to chunk up a Python list to process smaller chunks of the data at a time.

I was running a #lambda function in #AWS to remove users from the suppression list and hitting a rate limit.

https://claytonerrington.com/blog/list-throttling-with-python

#100DaysToOffload number 45!

Teri Radichel
1 week ago

If you’ve been following along, this SCP keeps #AWS #Lambda invocations on a private #network
~~
Restricting Access to Call Lambda Functions to a VPC Endpoint in a Service Control Policy
~~
ACM.314 An SCP policy with multiple conditions

https://medium.com/cloud-security/restricting-access-to-call-lambda-functions-to-a-vpc-endpoint-in-a-service-control-policy-8c7ae0c58be9

Daniel Marbach
1 week ago

Aaaand it's done! Yesterday I had the great opportunity to talk about some of my passions in the AWS on .NET Show, hosted by @thecodetraveler and @fbouteruche

https://twitch.tv/videos/1928935

The stream is a mix of my #opensource work, some pointers about my recent talks and a showcase of the #NServiceBus #Lambda and #DynamoDB integration using #SQS as a transport.

Teri Radichel
2 weeks ago

Restricting Access to Invoke Lambda Functions to an IP Range in a Service Control Policy
~~
ACM.312 Applying a policy to an OU to restrict Lambda actions to a specific Public IP address
~~
#Lambda #AWS #Cloud #Network #Security #SCP #Policy

https://medium.com/cloud-security/restricting-access-to-invoke-lambda-functions-to-an-ip-range-in-a-service-control-policy-487aad479b06

Teri Radichel
2 weeks ago

Restricting the Ability to Invoke a Lambda Function to a Private Network
~~
ACM.311 When configuring a VPC is not enough
~~
#Lambda #Private #Network #VPC #AWS #Cloud #Security

https://medium.com/cloud-security/restricting-the-ability-to-invoke-a-lambda-function-to-a-private-network-775461f53fa8

Teri Radichel
2 weeks ago

Why You Need CloudTrail Data Events for AWS Lambda Functions
~~
ACM.310 How can you see which IP addresses invoked your Lambda function?
~~
#aws #lambda #network #logs #security #data #events

https://medium.com/cloud-security/why-you-need-cloudtrail-data-events-for-aws-lambda-functions-fd47911d4fa6

Teri Radichel
2 weeks ago

Troubleshooting Lambda Networking
~~
ACM.308 Validating private network access and troubleshooting issues access from a private VPC through a NAT
~~
#lambda #networking #vpc #troubleshooting #aws #cloud #security

https://medium.com/cloud-security/troubleshooting-lambda-networking-c6a957746407

Networking is amazing. Charlie Ede from the LEGO Group pointed out something that I did not notice.

The cold start of #Rust doubled the time recently.

I think it is related to the last version of aws-config from the SDK.
Who can tell?

#aws #serverless #AWSCommunity #lambda

Teri Radichel
2 weeks ago

More blogs on the ins and outs of Lambda networking and resource policies

#aws #cloud #lambda #network #iam #security #serverless

https://medium.com/cloud-security

Teri Radichel
2 weeks ago

Using the Lambda Runtime Interface Emulator With a Custom Bash Runtime
~~
ACM.307 Revisiting the RIE with a revamped Arm container for Lambda
~~
Run #bash in a #container in an #AWS #Lambda function and test it on your #localhost

https://medium.com/cloud-security/using-the-lambda-runtime-interface-emulator-with-a-custom-bash-runtime-f3bd77d61a8c

Teri Radichel
2 weeks ago

Adding Error Handling to Bash Custom Lambda Runtime
~~
ACM.306 Using Bash trap to capture and handle errors in bash scripts
~~
#lambda #bash #runtime #trap

https://medium.com/cloud-security/adding-error-handling-to-bash-custom-lambda-runtime-29d3f1c94441

Teri Radichel
2 weeks ago

Custom Bash Runtime for Lambda Container
~~
ACM.305 Using AWS base images for a container that runs a custom Lambda runtime
~~
#bash #container #lambda #runtime

https://medium.com/cloud-security/custom-bash-runtime-for-lambda-container-bec64ab33582

Teri Radichel
2 weeks ago

Custom Lambda Runtimes
~~
ACM.304 Overview of a custom Lambda runtime to execute bash scripts deployed in a container in Lambda
~~
#Lambda #custom #runtime #bash #shell #script #container

https://medium.com/cloud-security/custom-lambda-runtimes-6da9977eabfe

Teri Radichel
2 weeks ago

Why Do I Need a Language Specific Runtime in a Lambda Container?
~~
ACM.303 Why doesn’t Lambda just run any OCI Compliant container?
~~
#Lambda #Function #Code #Container #Runtime

https://medium.com/cloud-security/why-do-i-need-a-language-specific-runtime-in-a-lambda-container-103dcfb5cb5c

Teri Radichel
2 weeks ago

Testing Lambda Functions Locally Outside of Lambda
~~
ACM.302 Using the AWS Lambda Runtime Interface Emulator (RIE) and how system architectures affect it
~~
#Lambda #AWS #Runtime #Emulator

https://medium.com/cloud-security/testing-lambda-functions-locally-outside-of-lambda-f7126d20421a

I think the biggest thing I'm looking for in my next job is #AWSLambda

I'm getting so spoiled by #serverless and I am sick of docker containers.

I love the local dev experience of https://arc.codes it would be awesome to build something large scale with it!

#fedihire #webdev #aws #lambda #apigateway

Teri Radichel
2 weeks ago

Fixing Application Errors Inside a Container Used By a Lambda Function and Redeploying It
~~
ACM.301 The benefits and risks of redeploying a container used by a Lambda function
~~
#lambda #container #serverless #security #cloud #appsec

https://medium.com/cloud-security/fixing-application-errors-inside-a-container-used-by-a-lambda-function-and-redeploying-it-49a8c4804c07

Luciano Mammino
2 weeks ago

Great fun yesterday at the #AWS User Group #Dublin (which is now 10 y/o BTW 🤯).

I had the pleasure to present an updated version of my talk about writing #Lambda functions in #Rust.

Here are the slides: https://loige.link/lambda-rust

Teri Radichel
2 weeks ago

Lambda Architecture vs. Container Architecture
~~
ACM.300 Resolving errors caused by architecture mismatch
~~
#lambda #container #architecture #arm64 #x86

https://medium.com/cloud-security/lambda-architecture-vs-container-architecture-e3256879a6d6

Teri Radichel
2 weeks ago

Testing a Lambda function with the AWS Console and Enabling CloudWatch Logs and Metrics
~~
ACM.299 Restricting Lambda functions to write to their own CloudWatch logs groups
~~
#aws #lambda #serverless #logs #metrics #cloudwatch

https://medium.com/cloud-security/testing-a-lambda-function-with-the-aws-console-and-enabling-cloudwatch-logs-and-metrics-816528863863

Teri Radichel
2 weeks ago

Deploying a Lambda running a Container using CloudFormation
~~
ACM.298 Leveraging ECR and our prior VPC with NAT deployment
~~
#Lambda #container #cloudformation #absrraction #microtemplates

https://medium.com/cloud-security/deploying-a-lambda-running-a-container-using-cloudformation-387e6d511b91

beemdvp.xrd
2 weeks ago

Going to use #aws #rust #lambda for a project I'm part of. Cant wait to scale, save costs and all that jazz!

Tipa
3 weeks ago

#Othello front end served by #Apache, written in #JavaScript with #Phaser 3 game engine, back end served with #Flask (soon AWS #Lambda) and written in #Python. There's a lot going on but it sorta works. This proves my idea to offload the processing to a remote back end driving a thin client works.

It plays terribly at the moment, but it's good enough to work on the UX.

An Othello board with a mixture of black and white pieces. One white piece has a red dot on it, signifying white's most recent move. Black is winning.
industrial curiosity
3 weeks ago

Deploying Python Lambda Functions With Layers Using TypeScript CDK https://link.medium.com/2SVy1JubXCb

#aws #cdk #typescript #python #lambda

ДевоПес
3 weeks ago

Нарешті закінчив з автоматичними повідомленнями про старт деплою в #AWS #ElasticBeanstalk. Клієнт постійно питає: чому щось не працює, а виявляється, що кожен раз іде деплой від розробників, про який ніхто не знає. Звʼязка получилась така:
#EventBridge -> #SNS Topic -> #Lambda, а далі через визов на #Slack вебхук, щоб сповістити канал про старт деплоя.
К досвіду додався ще один сервіс, з яким раніше не працював (EventBridge)

Bisafans
3 weeks ago

Zahlreiche neue Einheiten und ein Spezialevent ab heute in Pokémon Masters EX

Mit Teamwork kann ab heute eine kostenlose neue Einheit erhalten werden.

Zur News: https://news.bisafans.de/9963

#Smartphone #Event #Übersicht #App #Giovanni #Tickets #Missionen #Einheiten #PokémonMastersEX #GSuche #Gefährtenpaare #Atlas #Athena #Lance #Lambda

Teri Radichel
3 weeks ago

Allow Lambda to Pull Containers From Elastic Container Registry
~~
ACM.295 Add a policy to ECR to allow lambda to access images with a few caveats
~~
Hit unexpected issues due to renaming issues in CF.
~~
#lambda #container #ecr #policy #cloudformation

https://medium.com/cloud-security/allow-lambda-to-pull-containers-from-elastic-container-registry-123d05325bb7

Johannes Konings
1 month ago

AWS Lambda Error Handling: Everything You Need to Know by @theburningmonk

https://youtu.be/GK-z1n2E3BQ?si=AEeMQlMZlOQNe8Yh

#AWS #lambda

Full Bucket
1 month ago

#Ny released, a simulation of the classic #Korg #Lambda Polyphonic Ensemble

I've got a #serverless function in #lambda happily ticking over. The idea that it lets you focus on business functionality and let the cloud do the rest... it depends. Sometimes it is #YakShaving all the way down. I got an e-mail that some lambda is using an old version of node. It appears it is not one that I wrote, but something that is used to rotate logs. Then I find that https://docs.aws.amazon.com/cdk/api/v1/docs/aws-apigateway-readme.html CDK v2 is now the new normal. Was looking forward to that when developing. But not now :-).

🕹️ jbz
1 month ago

🔮 From $erverless to Elixir
➥ Cory O'Daniel

「 This post is not a critique of NodeJS, Lambda, or the Serverless movement, but a word of caution about how pricey it can become if your service ends up going webscale™ 」

https://medium.com/coryodaniel/from-erverless-to-elixir-48752db4d7bc

#Elixir #Serverless #Lambda #MyElixirStatus

Stuart Marks
1 month ago

RT @TheDonRaab@Twitter.com
Did you know that I became dependent on lambdas in Java in 2004? Unfortunately, Java didn't get concise lambda expressions until 2014.

In the blog linked below, I share a bit of history you might not have heard before. Enjoy! 🙏
👇👇👇
https://donraab.medium.com/my-ten-year-quest-for-concise-lambda-expressions-in-java-39fde576b950

#java #lambda #streams #collections #EclipseCollections #hofor

Clayton Errington 🖥️
1 month ago

It’s been a pretty successful week so far. Got a #lambda function to update our #S3 bucket policies and #sql backups direct to an S3 bucket accomplished too. Off to a good start!

#AWS and the #cloud is a fun place to be right now.

Luciano Mammino
1 month ago

We are ready to go live with the Dublin Rust meetup! 🦀

The event will be live-streamed, so grab a beer and join us at https://www.youtube.com/watch?v=eaJmActWqYo for some #Serverless, #Lambda and, of course, lots of #Rust!

🍻

Astra Kernel :verified:
1 month ago

✨ Writing and deploying Rust Lambda function to AWS: Image glitch as a service (author : @virtualkirill )

https://www.kirillvasiltsov.com/writing/write-deploy-lambda-image-glitch/

#rustlang #rust #aws #programming #developers #lambda

Example image result
Rodolfo
1 month ago

@GayOldTime

I still see the odd #Lambda around, here and there, from time to time.

The longest-running #LGBT radio show in #Dallas (the US?) is #LambdaWeekly. #LambdaLegal was important to the #US Marriage Equality fight. The #LambdaLiteraryReview is still out there reviewing #Queer books. Etc…

But yeah, for the most part, at least in my little corner of the universe, it’s been eclipsed by other symbols, such as rainbows and pink triangles.

Gay Old Time
1 month ago

In the 1970s, there was an effort to make the Greek letter lambda the symbol of gay liberation. “Universally recognized" is overselling it quite a bit – it was known in some circles, mostly in the USA.
#vintageAd #gay #lambda

Vintage ad for jewelry in the shape of the lambda: a necklace, a pin and an earring. Copy reads: “Be proud! The Greek lambda – Universally recognized symbol of Gay Life”
Luciano Mammino
1 month ago

Have you ever considered using #Rust for your #AWS #Lambda functions?

Here's why you should: https://loige.co/why-you-should-consider-rust-for-your-lambdas (new blog post)

Mark Wolfe
2 months ago

Put together an annotated more complete multi binary AWS sam example which is closer to my standard Go project structure. This deploys to provided.al2 runtime using arm64, and custom compile flags to trim down the binary. #aws #lambda #golang https://github.com/wolfeidau/sam-golang-multi-lambda

Luciano Mammino
2 months ago

I made a GIF for all these people who want to use #AWS #Lambda for everything! 😩

PS: I am one of these people! 😇

a guy hammering everything with a Lambda function, literally!

🖥️
How do you deploy AWS Lambda apps:

#poll
#polls
#serverless
#aws
#lambda

Luciano Mammino
2 months ago

Lately I have been porting a monolith #lambda (yes you can go overboard with them too!) into a more modular step function.

Why and how?

We discuss all the details in the latest episode of #AWS Bites podcast.

Check it out 👇

https://awsbites.com/92-decomposing-the-monolith-lambda/

Astra Kernel :verified:
2 months ago

✨ Have you heard of Denial of Wallet Attacks !

👉 (D) DoS in a Serverless world

👉 Inflict maximum financial damages

https://kerkour.com/denial-of-wallet-attacks-the-new-ddos

#infosec #serverless #lambda #aws #ddos

Picture of joker burning the money
Andrew Tropin
2 months ago

A quick dive into Y combinators and how to make a recursion without referencing a function by its name.

https://youtu.be/kIppahbBkns

#scheme #lisp #ycombinator #lambda

Giovanni Crisalfi
2 months ago

I am excited to have found this book. It is called 'Let Over Lambda' and it's all about macros.
I already discovered a lot of interesting stuff in the first chapters. For example, TIL how to use 'labels' to define local scoped recursive functions: I'm in awe. Now I am trying to understand the implications of it.

https://letoverlambda.com/index.cl

#lisp #commonlisp #lambda #macro #programming

I've already hit #AWS #Lambda's default 5s timeout fetching just two #mastodon timelines with https://schizo.social. I'm going to need a more clever solution for making multiple API requests to build a single page. Maybe prefetching, maybe spawning a background process and updating the UI via a #webSocket when they complete? I'm trying to keep it as client-side #javaScript free as I can, but waiting on multiple masto servers just isn't going to work...

Mark Wolfe
2 months ago

This is pretty rough, deprecating go1.x and forcing customers over to provided.al2 which is pretty annoying with its constraint on handler being `bootstrap`. For those using a zip file with more than one command in it this is a pain.. 👎😞 #lambda #AWS https://aws.amazon.com/blogs/compute/migrating-aws-lambda-functions-from-the-go1-x-runtime-to-the-custom-runtime-on-amazon-linux-2/

Rob
2 months ago

I hope I won't become the next Blake Lemoine. (that Google engineer evaluating models for bias who ends up defending the rights of AI models)

https://www.youtube.com/watch?v=kgCUn4fQTsc

#lambda #LLaMa #GPT #llm #ai

Brian LeRoux 💚
2 months ago

when you're building a web app it is probable one would choose a long lived style workload (load balanced web servers).

but why? or rather: why not choose a stateless solution like #AWS #Lambda ?

#webdev #backend

tbeseda
2 months ago

A quick note about how I read a random skull doodle from a 76MB file in an #AWS #Lambda and return it in ~150ms
https://tbeseda.com/blog/get-a-random-record-from-json
Have you tried anything similar? What do you think of this approach?
Also, I inadvertently made a public JSON API for skull doodles https://tbeseda.com/api/skull

A screenshot of my random skull doodle web component.

I wrote a new AWS Lambda function to pull my TV and movie watch history and ratings from Trakt into my Now page. Still on the lookout for bugs, but it seems to be mostly working as expected. There’ll be some junk and duplicates on my Now page for a little while as I test and settle into a new routine.

https://blog.mihobu.lol/2023/07/automating-my-now-page-update-4

#AWS #Lambda #cloud #omglol #now

@xavier @nomeata #AWS #Lambda are based on a lightweight #AmazonLinux image and then #Layers added on top of that. Maybe those are just #Amazon terms for what is essentially the same as #Docker?

https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html

How does #OpenFaas do it?

Luciano Mammino
3 months ago

Looking forward to talking about #Rust and #AWS #Lambda at the #Dublin Rust #meetup next month!

This event will be in person and also streamed remotely, so you are very welcome to attend even if not in Dublin:

https://www.meetup.com/rust-dublin/events/294587280/

This week (Wed @ 8:30PM ET) on @vBrownBag:

We're starting our new IaC series with Sr. Cloud Engineer (& co-host of The Teaching Python podcast) Sean Tibor:

"How to Kick Ass with #Python, #Lambda, and #Terraform"!

So suit up, register here & join us live: https://bit.ly/3VMeCD3

postmodern
3 months ago

Is AWS Lambda for Ruby really worth it? Someone suggested it for outsourcing encoding/decoding of data that users would submit via forms/javascript. Although, I worry about the startup time, latency, or potential outages. Also there's the whole vendor lock-in thing.
#aws #lambda #ruby

Eric McCarthy
3 months ago

It took me nearly 5.56min of staring at this #AWS X-ray trace wondering why the PutItem wasn’t showing up to realize maybe if I run the #Lambda again it would flush things and show up. And yup, there it is!

gram
3 months ago

I just finished an overly-documented Rust-powered #lambda calculus interpreter:

https://github.com/orsinium-labs/rlci

4 years ago, I got into lambda calculus by watching [1] and implementing [2] on #python the Lambda Calculus workshop by @dabeaz, and I still think this is the most mind-blowing thing I know (on par with category theory). Learning #Rust was an excellent excuse to dive into it again.

[1]: https://www.youtube.com/watch?v=pkCLMl0e_0k

[2]: https://github.com/orsinium-labs/python-lambda-calculus

Boris Vulikh
3 months ago

"Then, things start coming at you one after the other, and before you know it, you are spending most of your time trying to figure out convoluted solutions to Lambda's numerous limitations."
#aws #lambda

Boris Vulikh
3 months ago

Daniel Vassallo, in his book ”AWS The Good Parts”:
"Treating Lambda as a general-purpose host for your applications is risky. It might look compelling at first -no servers to manage, no operating system to worry about, and no costs when unused-but Lambda's limitations are insidious hidden risks that typically reveal themselves once your application evolves into something bigger."
#aws #lambda

Brian LeRoux 💚
4 months ago

Managed #database vendor solutions #aws #lambda performance compared by @tbeseda (spoiler: #dynamodb is fast)

https://begin.com/blog/posts/2023-06-06-dbaas-in-lambda

Mark Wolfe
4 months ago

My new favorite AWS tool is the AWS lambda runtime interface emulator, in short it allows me to run and test lambdas locally using CURL commands! Showcases how handy it is to package lambdas as containers as well. 😎 🌤️ https://github.com/aws/aws-lambda-runtime-interface-emulator #AWS #lambda

tbeseda
4 months ago

Alright I made a thing. Calling it “Obelisk” because it allows a single Lambda function to route complex request paths with `find-my-way` (Fastify’s router). Basically just an adapter so it’s super fast and small.
The demo site explains more: https://jxrrngx355.execute-api.us-west-2.amazonaws.com/
If nothing else, read my fevered disclaimers from earlier (still kicking COVID).
Source code is lacking because I need to clean it up a bit.
Also, I'm still questioning whether it's a good idea 🫠
#NodeJS #Lambda

alexboly
4 months ago

Anyone knows how to run a background service in an #AWS #Lambda deployed as a #Docker #container?

Francis
6 months ago

The #AWS #Lambda logo will never stop being the Half Life logo in my head, sorry Amazon #jsday2023

Markus Tacker
6 months ago

Response streaming for #AWS #Lambda is great, because it makes sending large responses to the client. This can remove the need to use S3 as the download location for dynamically generated payloads.
https://aws.amazon.com/blogs/compute/introducing-aws-lambda-response-streaming/

Brian LeRoux 💚
6 months ago

Congrats #AWS for shipping http response streaming for #lambda

A nice addition to the already existing streaming primitives: Web Sockets, Kinesis and DynamoDB.

tbeseda
6 months ago

I spent entirely too long benchmarking Neon #Postgres serverless driver in a #Lambda. Pretty compelling stuff!
Tested against #DynamoDB (with @arcserverless) and added my thoughts here: https://craft-86c.begin.app/
Refresh a couple times after seeing a really sleepy result. It's the Neon boot time.
Going to try PlanetScale on Friday.

Test app screenshot
gemma lynn
6 months ago

dear #aws #serverless folk:

all the "do a thing with #lambda" tutorials and docs i'm finding assume you're setting up an #apiGateway in front of your function. if i'm using lambda to push an external event into another external api (so aws doesn't own the authentication), is there a reason to not just use the raw function url and skip the gateway? it seems very faffy and i'm not sure i need what it buys me.

#devops

mikeputnam ❄️
7 months ago

Did AWS really think rolling out custom Lambda runtimes absolves them of the promise of managed functions-as-a-service?

Scary if true!

https://www.lastweekinaws.com/blog/AWS-is-Asleep-at-the-Lambda-Wheel/

#serverless #aws #lambda #computering #devops #javascript #python #go #ruby #lastweekinaws

@Quinnypig
@radio

Fabian Fett
7 months ago

It‘s extremely cool to see #Swift resultBuilders being used not only for SwiftUI and HTML output but also to describe #AWS #Lambda deployments. Amazing work by @sebsto

https://github.com/swift-server/swift-aws-lambda-runtime/pull/291

Martin Sutherland
7 months ago

I just had a flash of insight into container (and #AWS #lambda) "layers". If I think about them as image editing "layers" (and ever further back, as cel layers for hand-drawn animation https://conceptartempire.com/cel-animation/) it all makes sense to me in a way it hadn't before.

Photoshop layers, but for the file system.

#containers #docker #tech

Brian LeRoux 💚
8 months ago

One of the more obscure cloud #webdev terms is "utilization". The idea used to be that we needed more servers than generally necessary to accommodate spikey traffic.

This meant in traditional architectures the majority of your cloud bill was for idle under-utilized compute resources.

With #aws #lambda we pay for compute on demand by the millisecond. Which us #serverless folks call 💯% utilization.

Sindre Wimberger
8 months ago

Lernen Sie Googles Version von ChatGPT kennen ‼️🚨

LaMDA (Language Model for Dialog Applications) ist ein LLM, das sich über jedes Thema unterhalten und auf alle Ihre Fragen antworten kann.

Der Zugang erfolgt über die „AI Test Kitchen“. Jetzt in die Warteliste eintragen ⬇️
https://aitestkitchen.withgoogle.com/

#chatGPT #lambda #google #ai #aitestkitchen

Brian LeRoux 💚
8 months ago

this week during our wild DNS migration we had to run npm on 300+ #lambda functions from four years ago while upgrading from node10 to latest.

four. years. ago. …and everything worked like charm.

why? because we avoid transpiling dialects and stick to standard #js.

standards last. userland dialects…not so much.

Brian LeRoux 💚
8 months ago

🦕 #deno v1.30.0 released so I updated our #aws #lambda runtime

https://github.com/beginner-corp/begin-deno-runtime