That's It, I'm Done With Serverless*

Поділитися
Вставка
  • Опубліковано 3 лют 2025

КОМЕНТАРІ • 468

  • @t3dotgg
    @t3dotgg  Рік тому +140

    Oh no this is going viral which means the comments are going to utter shit. FAQ HERE - IF YOU ASK SOMETHING I ANSWER HERE YOU'RE PERMABANNED
    "What is the edge runtime" - it's an ALTERNATIVE TO NODE that is VERY MINIMAL and VERY FAST. That is why it has no cold starts. That's also why it has no native ability. (mentioned at 8:54)
    "Regional edge is contradictory; You made that up!" - As I said AT THE START. Edge references TWO THINGS. Runtime and location. If you limit your edge functions to run in a specific region, they're called "regional edge functions". Learn more here: vercel.com/blog/regional-execution-for-ultra-low-latency-rendering-at-the-edge
    Seriously if y'all don't cut the shit I"m turning off comments.

    • @xN811x
      @xN811x Рік тому +22

      lol

    • @xN811x
      @xN811x Рік тому +8

      Something to add to the FAQ maybe, as I can't seem to find the original comment questioning it:
      - Why does the cold start take several seconds?
      - Why would we care about it? The number of needed cold starts approaches zero in the long run

    • @NotesNNotes
      @NotesNNotes Рік тому +78

      I just got here stop yelling at me

    • @ruyvieira104
      @ruyvieira104 Рік тому

      @@xN811x typescript compiling all the node_modules

    • @BusinessWolf1
      @BusinessWolf1 Рік тому

      The internet is full of idiots. You should know this by now.

  • @purelianii
    @purelianii Рік тому +783

    First serverless, then edge, next thing you know theo's in your kitchen installing a server for less latency.

    • @ea_naseer
      @ea_naseer Рік тому +22

      they might as well start torrenting databases and some parts of the backend to reduce latency

    • @sohn7767
      @sohn7767 Рік тому +28

      Eventually we are back in the Stone Age of locally running services

    • @vivarantx
      @vivarantx Рік тому +2

      ​@First Last is the AGI gay by any chance?

    • @RawBert
      @RawBert Рік тому +1

      @@ea_naseer at this point blockchain makes more sense

    • @Fernando-ry5qt
      @Fernando-ry5qt Рік тому +1

      @@ea_naseer Might not be that crazy, running microservers on edge and using a token algorithm to handle the data persistance.

  • @heidji
    @heidji Рік тому +140

    I feel that web developers went from optimizing LAMP stacks and dove directly into serverless, to quickly realize that it's expensive if you're not going to optimize, and then went back to optimizing. Next video will be about "how I ditched serverless to configure my own Varnish/Redis cache"

    • @o_glethorpe
      @o_glethorpe Рік тому +37

      So true. You need to ask yourself how this man make money and you will see that this is a propaganda campaign disguised as tech content, and dont you dare debunk or you will get ban.

    • @heidji
      @heidji Рік тому +34

      @@o_glethorpe I don't necessarily think that he's doing propaganda, but rather milking content for views. No one on earth changes their mind on tech stacks like this guy

    • @Firestar-rm8df
      @Firestar-rm8df Рік тому

      I've heard memcached has better performance than redis as it it written in a lower level language and supports multithreading, but admittedly haven't tested it yet.

    • @System0Error0Message
      @System0Error0Message Рік тому

      well you cant optimise your php if aws is the one running it on serverless.

    • @Firestar-rm8df
      @Firestar-rm8df Рік тому +1

      @@System0Error0Message I hate php. I hope it dies and is replaced with c++ backends and wasm clients.

  • @plopplippityplopyo
    @plopplippityplopyo Рік тому +248

    It's funny watching devs reinvent everything they shunned 😂

    • @Winnetou17
      @Winnetou17 Рік тому +7

      This needs more upvotes

    • @muskrat7312
      @muskrat7312 Рік тому +13

      YES! So spot on. It's even better when you listen to a dev that has "discovered" security principles and having them walk the team through all the things they should have been doing from the beginning.

    • @meorung05
      @meorung05 Рік тому +16

      Just wait until they fully move client side rendering back to the server

    • @BKearal
      @BKearal Рік тому +6

      @@meorung05 You mean server prerendered HTML. The heresy! :D

    • @philipgumm9243
      @philipgumm9243 Рік тому

      Was thinking the exact same thing.

  • @wiztek1197
    @wiztek1197 Рік тому +61

    "Put everything on a VPS" and stop thinking
    Best decision i ever made

    • @t3dotgg
      @t3dotgg  Рік тому +11

      see: my video on getting DDOS'd last week lol

    • @timschupp2080
      @timschupp2080 10 місяців тому

      @@t3dotggno one said you cant put it behind cloud-flare anyways

    • @Kimitri
      @Kimitri 10 місяців тому +20

      @@t3dotgg so put everything on a vps with cloudflare protection

    • @sphinxwar8529
      @sphinxwar8529 9 місяців тому

      ​@@Kimitri I agree, the level of fucking idiocy devs go to while there are simple point-and-click solutions is astounding. I feel like there are two different worlds - the actual dev world and YT tech space where everything is THE NEW THING. Like SHUT THE FUCK UP oh my god. Yes, it's fun to learn the new things, but wait for them to mature before switching. Fucking tech youtube is a bunch of hipsters ordering essential oils for a flu.

  • @mattiarasulo9934
    @mattiarasulo9934 Рік тому +112

    idk guys I feel at this point when I was building with Express and EJS and deploying on a VPS with a simple NGINX reverse proxy we reached the peak and then we started over-engineer..

    • @SimonCoulton
      @SimonCoulton Рік тому +25

      @@vinos1629 of course there is a reason, adding to your resume…

    • @svenhofstede
      @svenhofstede Рік тому +11

      Agree 100%. Maybe this is useful for use cases that I’m not aware of but to me this seems like major extra complexity. Connecting to your database using REST?! Your existing code won’t always work because the runtime doesn’t support certain functions? And if they do it’s because the vendor is maintaining some custom converter? What problem are we solving here? Is it purely for cost reduction while achieving low global latency?

    • @ethannr1
      @ethannr1 Рік тому +5

      Build for now and not the future, the majority of projects will never need to use edge

    • @t3dotgg
      @t3dotgg  Рік тому +9

      I don't think you guys understand just how hard it is to do VPS management correctly at scale.

    • @t3dotgg
      @t3dotgg  Рік тому +17

      @@vinos1629 and I don’t have to hire engineers like y’all to manage it full time while maintaining cheaper, faster, more scalable solutions 🤷‍♂️

  • @_2_100
    @_2_100 Рік тому +14

    this is a marketing video

  • @LawJolla
    @LawJolla Рік тому +29

    Soon we will rediscover servers where cold starts, hand shakes, and ORM spin ups aren’t a thing.

    • @captaindrake8040
      @captaindrake8040 Рік тому +4

      don't tell Theo he will rewrite everything again

  • @AmithKini
    @AmithKini Рік тому +116

    It's surprising to see how "Frontend development" went from "Develop HTML, JS, CSS" --> "Develop SPA but backend handles database and hosting" --> "Decide if a feature/page is served on serverless or edge and take care of it". Does this mean small app developers no longer need a dedicated backend engineers?

    • @Uk1fbcka
      @Uk1fbcka Рік тому +15

      yeah backend devs are often useless lol
      (for small apps)

    • @gamemoves2415
      @gamemoves2415 Рік тому +92

      @@Uk1fbcka terrible opinion. Who do you think wrote the code for edge to work? Frontend Devs? Lmoa

    • @daleryanaldover6545
      @daleryanaldover6545 Рік тому +12

      It's fullstack all along. I've been fullstack since I entered the industry for all I know.

    • @daleryanaldover6545
      @daleryanaldover6545 Рік тому +13

      @@Uk1fbcka words of a front end dev who can't center a div and happen to be stuck in vim.

    • @Uk1fbcka
      @Uk1fbcka Рік тому +6

      Hey guys, chill, I was talking about smaller apps, ofc backend devs are important, nobody is debating that. Maybe I used not enough words to say what was on my mind

  • @jacobwwarner
    @jacobwwarner Рік тому +2

    I really like how you give an explanation with a visual diagram to support it. It's really helping me understand some of the more infrastructure-side tech.

  • @allNicksAlreadyTaken
    @allNicksAlreadyTaken Рік тому +556

    You are the meme JavaScript developer that has a different stack every week, but pretends they don't.

    • @DannyMcPfister
      @DannyMcPfister Рік тому +8

      😂😂😂

    • @33ethan33lol1
      @33ethan33lol1 Рік тому +6

      Are you a Developer who doesn't like to improve your stack ? I mean updates the stack and change are two very separate things buddy. 🎉🎉❤ Theo

    • @curiouslycory
      @curiouslycory Рік тому +29

      Theo does the experimentation and research and as a result I get to spend a lot less time doing it to find really great tools.
      I hope he keeps changing his stack every week!

    • @damionmurray8244
      @damionmurray8244 Рік тому +8

      @@curiouslycory I concur. Your comment epitomizes the phrase *_"'Tis wise to learn from one's mistakes, but wiser still to learn from the mistakes of others"_*

    • @Davidlavieri
      @Davidlavieri Рік тому +23

      Chasing the framework of the week, the tech of the month whatever it is, never satisfied. This is not targeting real developers with real companies, just the usual twitter's "TODO app devolver" thats basically just clickbaity sponsored content "omg it only takes .00023seconds to create this full fledge app with this tech" the full fledge app being a todo app auth 😂

  • @TomasJansson
    @TomasJansson Рік тому +6

    I like your visualization around 5:00 on the impact of moving the service further away from the db.

  • @Joao-te9sl
    @Joao-te9sl Рік тому +36

    What you are referring to as Edge Runtime is in fact specifically the Cloudflare Workers runtime (Vercel is powered by Cloudflare Workers), that runs on V8 Isolates. There is nothing that prevents you from having another edge runtime with an approach that does not use Isolates. AWS Lambda@Edge is also on an "edge runtime", but they use their own solution to achieve this (on which you can only use Node and Python as far as i know), it's just much inferior to Cloudflare's.

    • @NotOats_
      @NotOats_ Рік тому +1

      When I was watching this I kept thinking "this sounds exactly like CF workers", good to know it basically is

    • @DisFunctor
      @DisFunctor Рік тому +1

      that's good to know! Sorry if this is a stupid question, but doesn't that mean it's possible to achieve the same without going through Vercel at all?
      I've never used either, but it looks like if one were to use CloudFlare workers directly, you'd have more flexibility (don't need to be constrained to using node, for instance), which I'm sure has its trade-offs since I'm guessing Vercel provides some conveniences in case you do want to use their service instead.

    • @NotOats_
      @NotOats_ Рік тому +1

      @@DisFunctor I've never used Vercel but yeah you can achieve the same result using CF Workers directly. I am sure there's some sort of service/features that Vercel adds to the equation though

  • @MarthinusBosman
    @MarthinusBosman Рік тому +25

    I want the "Edge" to just become everyone's PCs/phones and everything just running like torrents and not off any owned server whatsoever.

    • @Uk1fbcka
      @Uk1fbcka Рік тому

      sounds similar to a blockchain distribution

    • @pursuitofknowledge5566
      @pursuitofknowledge5566 Рік тому +10

      @@Uk1fbcka lol no it doesnt

    • @Uk1fbcka
      @Uk1fbcka Рік тому

      @PursuitofKnowledge how come? Blockchain is a similar concept, isn't it? Everybody in the network has the ownership of something, and at the same time, everybody has the ability to share it with multiple users at the time. It's like a giant system built on top of some sort of community

    • @pursuitofknowledge5566
      @pursuitofknowledge5566 Рік тому +9

      @@Uk1fbcka I would suggest looking up what torrents are.

    • @Uk1fbcka
      @Uk1fbcka Рік тому

      @@pursuitofknowledge5566 yeah sounds like a good idea after all lol

  • @matthew_whitfield
    @matthew_whitfield Рік тому +18

    I use lambda running node/express for SSR and find that less than 1% of user requests end up being cold starts now that the site has a decent level of traffic. With a cold start, the TTFB on a good connection rises from around 200ms to around 400-450ms, which isn't bad enough to make me want to switch. Plus the JS code is 20mb+ uncompressed on the server side so I would have to do something with that.

    • @nsuid7499
      @nsuid7499 Рік тому +1

      curious what your setup looks like? would you mind sharing a little more detail? I'm assuming you're using some template engine to serve HTML from lambdas and routing reqs through AWS APIGateway.

    • @matthew_whitfield
      @matthew_whitfield Рік тому +6

      @@nsuid7499 Yeah, a page request first goes to CloudFront (CDN), if it hasn’t been cached it goes to API Gateway (HTTP API) which then calls the Lambda function to generate the HTML for the page.
      The site uses the Angular framework ("boo!"), so it’s their rendering engine, but I imagine it would work just as well with any other template engine.
      The lambda functions need to get an item from DynamoDB to produce the page (house price information site).
      The average execution time for a warm Lambda function is 50-75s of which I think the database query is 10-15ms. For users 200ms seems to be the time it takes to get anything back, so I guess the rest is all network stuff like directs, DNS, connection etc.
      Cold start on average seems to add around 200-250ms, and they are a very small percentage of total requests.

    • @wissens4644
      @wissens4644 Рік тому

      Dev Test

  • @keyone415
    @keyone415 Рік тому +24

    Seems like the Vercel Edge Runtime is only for JS app, so not for me :) An inter-continental round trip takes 150ms, so in most situations, we don't even need multi regional deployments. I'm fine with doing a little bit of server management and never have a "cold start" and having super fast DB queries... On AWS if we pick things like Spot instances we can save a lot on ECS costs, when done right you can save like 90% on the on demand price. Serverless is fine for doing Async use cases, but I don't think it's a good choice for Web Servers where latency is critical.

    • @paologaleotti8478
      @paologaleotti8478 Рік тому +1

      i agree but sometimes It can be a really good choice if you dont mind cold starts. very low prices and you get auto scaling out of the box

    • @t3dotgg
      @t3dotgg  Рік тому +8

      Edge runtimes can only run JS or WASM generally, and you'll only see response times this good in JS. Crazy enough, having a fully virtualized engine for your language has benefits sometimes

    • @SkywalkerWroc
      @SkywalkerWroc Рік тому +2

      Yep. That fear of cold starts is grossly overblown.

  • @jricardoprog
    @jricardoprog Рік тому +4

    And my shared server that responds in less than 50ms with PHP!

  • @brainsniffer
    @brainsniffer Рік тому +43

    The funny thing is, I thought when serverless was released it had the same sort of pricing, and people where massively touting it because you could get millions of runs for pennies - am I misremembering that? I’d imagine, once there was uptake and people began using serverless that it became worth it for providers to begin charging for potential availability, tracking the minutes and charging that way. I would expect a similar shift for edge.

    • @rzr1191
      @rzr1191 Рік тому +11

      Don't let the terminology mislead you. It's really just "Web standard APIs inside v8 isolates"
      It's on the "edge" because providers like cloudflare can achieve incredibly high multi-tenancy on far fewer servers compared to VMs
      A 1-5MB bundle is much more reasonable to replicate to 100+ regions compared to 300MB to 1GB+ docker images
      It's objectively cheaper than "serverless" VMs. And much better suited to applications like frontend servers which don't really need much more than a subset of Web APIs

  • @oscarhagman8247
    @oscarhagman8247 Рік тому +23

    it's only been a month since your T3 tutorial and i feel like it's already getting outdated. Will you make an update video where you build it with all the new things you have been talking about since then?

    • @t3dotgg
      @t3dotgg  Рік тому +23

      Of course. Unlike my tutorial, none of this tech is ready for general use and recommendation. Hopefully soon…ish…

    • @oscarhagman8247
      @oscarhagman8247 Рік тому

      ​@@t3dotggthanks! and yeh, whenever it's ready ofc

  • @OldKing11100
    @OldKing11100 Рік тому +2

    My brain fried when trying to figure out the subtle differences between edge/regional I'm just happy to be able to throw my SvelteKit frontend up to Cloudflare pages with specifying which routes can be prerendered. Then for anything more complicated I connect Cloudflare Pages to my Go Fiber API and DB backend through Cloudflare Tunnel. Edge functions are still spooky to me, even though I do use fetch().

  • @francescociulla
    @francescociulla Рік тому +4

    I like the strong opinions. Watching it now

  • @pappdomi5
    @pappdomi5 Рік тому +7

    Wouldn't read-only DB regions be a solution for the global edge problem? (Planetscale can manage that) Or I can't guarantee my global edge function calls my closest read-only database?

    • @invinciblemode
      @invinciblemode Рік тому +1

      You can guarantee that your edge fn calls the closest db.

    • @t3dotgg
      @t3dotgg  Рік тому +4

      You’re thinking too far ahead I wasn’t gonna talk about this for at least a month or two…

  • @MattThomson
    @MattThomson Рік тому +10

    I don't know what makes everything change so much. You learn one thing and next month it's not the right way.

    • @o_glethorpe
      @o_glethorpe Рік тому +3

      Everyone is pushing some kind of agenda, you should learn as much as possible and create your own opinions, dont just go with the flow and never assume to yourself any opinion just because some dude with fancy hair said so.

    • @vivarantx
      @vivarantx Рік тому +2

      he's just selling his service...serverless is fine for 99% of the apps

  • @JB-fh1bb
    @JB-fh1bb Рік тому +5

    Edge location is basically only useful for static content. Making a brochure website for a big client? Edge location is a solid choice. Want anything with live data? Rethink it.

  • @tcurdt
    @tcurdt Рік тому +13

    I hear operations people quietly sigh on this video. Leaving some things aside: The main problem is distribution of data services - and also the privacy aspects of that.

  • @ccccjjjjeeee
    @ccccjjjjeeee Рік тому +5

    World confirmed to be a flat circle 💯

  • @zeon137
    @zeon137 Рік тому +6

    I hope we can keep edging together for a long while

  • @jannisbaalmann6870
    @jannisbaalmann6870 Рік тому +20

    Theo the type of guy who is so convincing in every single video that he makes me doubt my stack forever 😂

  • @aprilmintacpineda2713
    @aprilmintacpineda2713 Рік тому +26

    Sometimes Theo isn't a reliable source.

    • @lex-fridman
      @lex-fridman Рік тому +9

      hmm.. like a lot of times in fact. I suspect most people watching Theo are not real senior engineers and those who are senior just use Theo's content as one uses newspapers, just to hear about topics in the market and selectively do their own deep research on technologies.

    • @manai2683
      @manai2683 Рік тому +3

      @@lex-fridman To be honest that's what anyone should be doing with any info on the internet in general. Sure there are more or less reliable sources, but in the end, you make the call.

    • @xenonchikmaxxx
      @xenonchikmaxxx Рік тому

      ​​​​@@lex-fridmansystem architect here. Some time ago I've consulted my friends about tech stack for their startup idea. The issue is that in my country salaries of developers are pretty high, so I've decided to put in serverless everything that was possible. My main job is in big corpo so I'm not familiar with such stuff and Teo's videos helped me a lot.
      For my standards the result app was sht af, performance sucked, but its more pragmatic than hire expensive team of java+js devs for startup with unknown future. If everything will go right and guys get some investment we ofc hire a normal team but for now it's not an option.
      So, all this stuff is not suitable for big corpos where "Serious Enginners" work but useful for testing business ideas.

    • @alokpuri9953
      @alokpuri9953 Рік тому +3

      I would like to correct you. It's not "sometime" , you can never trust Theo, this is just an vercel sponsored channel

    • @Ziko2687s8
      @Ziko2687s8 5 місяців тому

      ​@@lex-fridman and you're assuming juniors are not capable of doing that?

  • @matthew1106
    @matthew1106 Рік тому

    This is a fantastic video. Really wonderful job explaining the trade offs.

  • @rickdg
    @rickdg Рік тому +3

    Respect to the editor going back to screenshot that yes from Jacob 😂

  • @michidk
    @michidk Рік тому +2

    When talking about edge locations, you assumed that there always has to be a cold time or some slow database connection build-up, there are solutions where this is not the case (warm standbys). Additionally you can also send HTTP requests to database API from edge locations, this is not only limited to edge runtimes.

  • @almeidaofthejoel
    @almeidaofthejoel Рік тому

    Thank you for showing that you could opt into edge on pages as well as API routes, I was trying to find out if you could for like an hour yesterday and couldn't find that anywhere. Everything I see on Vercel is just showing API routes

  • @Shogoeu
    @Shogoeu Рік тому

    Edge - the browser

  • @brefaccion
    @brefaccion Рік тому +5

    Edge runtime feels like an oportunity for CQRS revival to me. Serverless was already a good fit for it but with those limitations specifically, it almost reads like the intent of `exec` in pure FP variations of CQRS.
    Meaning, you aren't meant to do IO in it, you just take a command and a state (usually local to the system), and emit events out of it instead of running long-living requests (which can be triggered elsewhere reacting to events similar to redux-sagas), and you just need to keep a minimal internal state, only what is necessary for your `exec` to make decisions on what events to emit. Plus events are meant to be JSON.stringify-able

  • @chair547
    @chair547 11 місяців тому

    Thanks for this great edging tutorial theo

  • @jajwjwiwo
    @jajwjwiwo Рік тому +1

    Under the hood Vercel deploys to AWS Lambda. To deliver world class dynamic sites in production, Vercel has turned AWS Lambda into an edge-first compute layer

  • @carlosbueno6252
    @carlosbueno6252 Рік тому +1

    You shoul'd take a look at Fermyon.
    It's basically everything you want when you talk about edge runtime.
    It's basically webassembly on the server, it allows you to have no cold start and spin up and down you infra as needed.

  • @_____case
    @_____case Рік тому

    "I want my ideal stack to be serverless." - Ryan Dahl

  • @lennart5738
    @lennart5738 Рік тому +17

    Hey Theo. I don't know if you actually measured the difference in request time to the DB but from what I know there is signifcant overhead to an HTTP request unless you are using Connection: keep-alive.
    Does the edge runtime support keep-alive connections?
    (P.S. I checked the FAQ first)

  • @user-xl5kd6il6c
    @user-xl5kd6il6c Рік тому +7

    >You will own no servers, and you will be happy
    Yeah, no thanks

  • @Saurabhkumar-bn3dl
    @Saurabhkumar-bn3dl Рік тому +10

    But what about ridiculous bandwidth cost of vercel? Is that manageable?

    • @t3dotgg
      @t3dotgg  Рік тому +3

      Most of the "bandwidth" will be cached after the first requests. Don't serve massive assets off an expensive CDN and you'll be fine.

    • @JoRyGu
      @JoRyGu Рік тому +14

      This is the elephant in the room for all of these services he's using. They all have pretty generous free tiers but balloon in cost for any serious applications. Vercel's pricing is rough enough for my company to be exploring building out infrastructure on AWS just to get Next with all the features it offers without Vercel.

    • @Saurabhkumar-bn3dl
      @Saurabhkumar-bn3dl Рік тому +1

      @@JoRyGu Tbh vercel does makes it easier to use cutting edge things like he is talking about a lot. But this is something which is holding me back too. The balloon in the cost is why I opted for self hosted supabase instead of Planetscale. I haven't used amplify yet, but do you know how much worse it is than vercel? Or does it support all the latest features of next 13?

    • @t3dotgg
      @t3dotgg  Рік тому +7

      @@JoRyGu you should watch my video about AWS cost if you sincerely believe this.
      The bandwidth costs are in line with any other CDN of similar quality. Be smart about where you put your big assets and you’ll be fine. Your Vercel services should return HTML and JSON, if you’re moving terabytes of either you’re probably making a mistake

    • @mmzzzmeemee
      @mmzzzmeemee Рік тому +7

      Tbh, my biggest gripe with vercel rn is that their free tier does not allow commercial usage.
      Almost any other provider does (e.g. netlify, heroku formerly, cloudflare pages, etc.).
      It's such a shame cause vercel is still probably the most convenient but their free tier is just a deal breaker. Idk why they did that but to me it's simply a bad business decision.

  • @BosonCollider
    @BosonCollider Рік тому +3

    Stupid question: WHY are edge functions free of cold start delays? I though edge functions were just serverless functions running on the edge? I feel like a bunch of people came up with a new set of buzzwords without rigorously defining them.

    • @Evan-dh5oq
      @Evan-dh5oq Рік тому +1

      The edge runtime is not the same as edge computing.

  • @VarunVasudeva
    @VarunVasudeva Рік тому

    2:53 “Hard to make a workload that is more expensive on Lambda than it is on Edge” - backwards?

  • @supa1009
    @supa1009 Рік тому

    awesome video, grateful to have this knowledge for free!

  • @JacobKrajewski
    @JacobKrajewski Рік тому

    Edge is also used to talk about edge devices. For instance, whether or not a computer vision model is handled online somewhere, or on the physical device, or the "edge device" or "edge processing"

  • @L33tRose
    @L33tRose Рік тому +3

    Damn the edge looks really impressive. I might take a deep dive into v8 isolates to see how they work and what other tech is using them.
    Would be really cool to see a follow up video on moving ping to the edge and seeing a before and after in performance.

  • @derschutz4737
    @derschutz4737 Рік тому +7

    U can use wasm as ur compile target to run rust/c++ on edge

    • @rzr1191
      @rzr1191 Рік тому +1

      Yes, but you lose our on the hyper fast cold starts promised by edge runtime
      using web APIs you use the included runtime whereas using another language could mean you're shipping libs that end up resulting in larger payload with slower start time
      The tradeoff does make sense for heavier use cases like image processing

    • @derschutz4737
      @derschutz4737 Рік тому +1

      @@rzr1191 Do you have data to back that up? rust WASM has incredibly low cold start times/binary sizes, on lambda rust can be almost an order of magnitude faster to start and 3x less size than an equivalent node function. Why would edge suddenly mean that WASM has worse performance? Also, my main benefit is the fact that I don't have to use typescript (absolute garbage language)

  • @NateLevin
    @NateLevin Рік тому +1

    16:30 This is my only issue with this video - if the user has slow internet, then global edge will be much, much faster, no? Assuming that the request times are equal assumes that the user has the same internet speed as the server.
    Anyways, you are absolutely right when you consider lots of serial requests.

    • @t3dotgg
      @t3dotgg  Рік тому +1

      Why would the speed of their internet affect the latency of a call? Bandwidth and latency are entirely different and unrelated lol

  • @pkoch
    @pkoch Рік тому

    Theo has an Arch Linux mustache in the thumbnail. Can't unsee.

  • @pedroalonsoms
    @pedroalonsoms Рік тому +19

    This is serverless stuff is getting way too overengineered.
    At this point just throw the whole app into a ec2 box with ubuntu and call it a day.
    If you ever reach page-load performance issues, start by trying to optimize in other places first (maybe start by removing huge JS frameworks).
    In the worst case, if you ever need to get a super-optimized backend, just hire prime to rewrite the entire thing in rust.
    I mean at this point we’re rearchitecting the way the entire internet works from scratch: building new db drivers, new cache systems, new ways to split up databases across many servers, new rate-limiters, etc.
    Just kidding Theo. Love your vids.

  • @jonnyso1
    @jonnyso1 Рік тому +9

    Doesn't like slow apps... writes everything with typescript.

  • @k-c
    @k-c Рік тому +10

    I still like good old PostgreSQL

  • @JohnVandivier
    @JohnVandivier Рік тому

    Excellent watch. Tysm

  • @DontEatFibre
    @DontEatFibre Рік тому

    What is that drafting/presentation software on 3:39?
    My projects are usually quite simple so I have been using Cloudflare workers and KV Storage to host static website exports and to build basic APIs.
    Now they have made their D1 SQL databases for workers open for testing.

  • @GregMulert
    @GregMulert Рік тому

    I love when you called out Jacob!!!

  • @spotgaming4668
    @spotgaming4668 Рік тому +2

    Yeah but pal heres the thing, everytime we ain't gonna use planetscale or database which provides apis to interact with their db , so that's a big issue. In that cases, we have to do everytime connecting to db, fire request and close the connection, for every request.

    • @t3dotgg
      @t3dotgg  Рік тому +1

      Sounds like lots of room to innovate in the industry 🥲

    • @leos5246
      @leos5246 Рік тому +1

      Postgres with PGBouncer and you have direct connection, pooling manager, don't need to think about open/closing sessions (since it's claims to be milliseconds but Im too often face with the situation when it adds up 100ms on top of the request).
      Keep any RDBMS on single server until it's possible to handle all your requests, divide you relational and non-relational data between nosql databases and rdbms, move out analytical requests out of your RDBMS to the warehouse
      It's all about architecture and your needs, there are no single solution for all

    • @gdsftvdr
      @gdsftvdr Рік тому

      ​@Leo S yep, I agree. ECS/Fargate feels like a winner for scaling with RDS databases. DX feels a bit better too. Long running tasks etc.

  • @ReedoTV
    @ReedoTV Рік тому

    One day apps will become so close to us they run locally

  • @hebestreitfan6973
    @hebestreitfan6973 Рік тому +4

    At this point it feels like Theo keeps over-optimizing his app for content

    • @hebestreitfan6973
      @hebestreitfan6973 Рік тому +5

      He will eventually discover the benefit of just running a few containers on a VPS

    • @SkywalkerWroc
      @SkywalkerWroc Рік тому

      Simplicity and maintainability is far more important than shaving off 100ms from the page load time.

  • @ArnaldurBjarnason
    @ArnaldurBjarnason Рік тому

    Thank you for saying "I couldn't care less" 🙇‍♂

  • @mountainash
    @mountainash Рік тому

    Edge as a location IS IMPORTANT! Just like a CDN; the location edge out-does Regional edge when the data is cacheable (eg 10 latest blog posts; or newest rentals in your city). Edge locations is also important when you can use a distributed DB like the SQLite offering many edge providers now offer.
    This video seems already outdated. (Old school thinking)

  • @Ratstail91
    @Ratstail91 Рік тому +2

    I have one server, in Sydney, Australia. It's good enough for now, and I've built my whole site's system to use it. Who knows what will happen when I officially release it.
    That price though...
    Edit: What the hell is vercel? am I so much of a dinosaur I can't understand it?

    • @zuma206
      @zuma206 Рік тому

      i believe it started out mostly as a frontend hosting solution, then slowly started to support more backend solutions. now they offer simple ways to host fullstack jamstack apps like next, remix, sveltekit etc.

    • @abdirahmann
      @abdirahmann Рік тому +5

      am dead at your edit 🤣🤣🤣🤣, a dinosour!!, bruh!!💀

  • @kemoboy
    @kemoboy Рік тому +3

    And when I think that for more than half of my and my clients web apps/sites I just use a VPS and it just works fine, with loading times that are good. :( When did deploying stuff become so overcomplicated?

  • @JJSmalls
    @JJSmalls Рік тому +3

    "I hate serverless" - yes, someone I can agree with
    "I'm just going to move everything to the edge" - Oh great, a new tech stack with a gimmick marketing name.

  • @SeanCassiere
    @SeanCassiere Рік тому +2

    Does anyone know of an edge compatible cuid generator?
    The paralleldrive one seems to use node:crypto which doesn't work in edge, and I don't believe Drizzle has a helper for it.

    • @t3dotgg
      @t3dotgg  Рік тому +3

      The paralleldrive one _should_ work but doesn't due to a weird bug in bundling for app router. Works in /pages for some reason 😅
      I've raised it with vercel and hope they have it handled soon. Suffering with uuid v4 for now 😅

  • @PixelPioneer176
    @PixelPioneer176 Рік тому

    Thoroughly absorbing, isn't it? For a continued absorption, consider a book I highly esteem. "AWS Unleashed: Mastering Amazon Web Services for Software Engineers" by Harrison Quill

  • @nikolozichikhladze8638
    @nikolozichikhladze8638 Рік тому +1

    Can somebody link me a video where Theo is talking about Firebase or why he would never consider it If such exists? Just curious of Firebase functions vs vercel edge comparison

  • @virtual5754
    @virtual5754 Рік тому +1

    With all troubles of "serverless", isnt it better to just use "servered"? Keep process running on server to avoid cold start, have infinitely faster connection to database on same server/cluster. And request time from user to server is same as regional edge

    • @Vim_Tim
      @Vim_Tim Рік тому

      "Keep process running" tends to be expensive at any notable scale, especially in the cloud and especially if the app needs to be globally-distributed.

    • @istipb
      @istipb Рік тому

      ​@@Vim_Timserverless becomes more and more expensive as ut scales

  • @benkogan1579
    @benkogan1579 Рік тому +7

    This concept of regional vs. global edge runtimes is interesting. It makes sense that you want your code running close to the database if you are making many requests. I feel like the major difference between regional and serverless is the cold starts. If serverless somehow solves this issue, that would seem like the best of all worlds, right? No cold start, close to DB, everything is compatible. I guess we gotta wait and see.

    • @t3dotgg
      @t3dotgg  Рік тому +7

      If cold starts are solved, I'll probably delete this video

  • @gleicon
    @gleicon Рік тому

    I'm kind of lost of the difference about lambda slow start and how edge functions get rid of it...

  • @WhhhhhhjuuuuuH
    @WhhhhhhjuuuuuH Рік тому +5

    Great video. I would if you included a bit on how this helps your customers.

    • @rewrose2838
      @rewrose2838 Рік тому

      Around 21:30

    • @pokefreak2112
      @pokefreak2112 Рік тому +10

      @@rewrose2838 That it? If cold starts and prisma are the bottlenecks it sounds to me like optimizing prisma and hosting on a regular server are the most obvious solutions. People really just jumped on the serverless bandwagon for the *hypothetical* benefit of scalability only to suffer the very real downside of cold starts because they don't actually have users

  • @Khari99
    @Khari99 Рік тому +5

    Wow this was crazy informative. I didn’t think edge was much of a big deal and I didn’t understand how much it differed from serverless so I never bothered with it. But now that you broke it down, I’m definitely going to try it out! The amount of value I get out of your channel sometimes is absurd. Thanks Theo. Keep up the good work

  • @sir.richardpound
    @sir.richardpound Рік тому

    I used to use Google Cloud Functions (Firebase) a few years ago and the cold starts where just down right unacceptable. I built an entire infrastructure on Cloudflare Workers and have never been more happier serving code and sharing libraries

  • @chiefmiester3801
    @chiefmiester3801 11 місяців тому

    say it with me, vercel sponsored channel

  • @studiowebselect
    @studiowebselect Рік тому +1

    Vercel is using aws or i am wrong?
    Also for the cold start time, its because your code is to big. Sound crazy, but we are in an time where you need to optimize the weight of the backend as we do with the front-end.
    For the DB connection, use DynamoDb as mush as possible and dont use external db of aws. Serverless DB from aws is bad also.
    So lightweight code, DynamoDb with a aws non-serverless db and it will be fast without cold start lag

  • @robsonjunior8224
    @robsonjunior8224 Рік тому

    I had observed a very interesting company, it called Azion Technologies! They are building a lot of thing with Edge Computing, I have used a lot the Azion Edge Runtime to accelerate our apps

  • @DiegoBM
    @DiegoBM Рік тому +1

    This was incredibly informative! Where can we read more about practical coding for the edge runtime (including handling non-edge-ready dependencies and dealing with data)?

  • @dovh49
    @dovh49 Рік тому

    I use the "far edge" the person's own device with service workers!

  • @sudoalex
    @sudoalex 4 місяці тому +1

    What about Microsoft Edge the browser?

  • @badazzmorris
    @badazzmorris Рік тому +2

    Poor, sad Tux Penguin 😢🐧

  • @js_madness
    @js_madness Рік тому +3

    Whats the tool Theo is using for drawing all the stuff ?

  • @Sam-wl4vo
    @Sam-wl4vo Рік тому

    you always hit the nerve of time, very useful information

  • @hackmedia7755
    @hackmedia7755 5 місяців тому

    your server could have caches to speed up retrieval, especially if a lot of users are requesting the same thing.

  • @jaroslavhuss7813
    @jaroslavhuss7813 Рік тому

    Guys eat me, but I am running my projects on Raspberry PI Cluster -> 4x Rasbperry PI 4B 8GB ram hidden behind the firewall, 1GB ethernet connection, all of them on SSD (not SD card) and... this is the 1,5 year and they do just fine :D

  • @jozsab1
    @jozsab1 Рік тому

    got to love how a bad implementation(lambda) gets renamed as a new technology(edge)

  • @thisbridgehascables
    @thisbridgehascables Рік тому

    The hilarious part to ‘serverless’ is that there still is a server or servers behind it.
    ‘Serverless’ doesn’t mean no server.. a computer can be a server. So going serverless literally would be like writing code on paper and never having it get complied or presented to you in physical form..

  • @theshy6717
    @theshy6717 Рік тому +1

    Do you have a video of you building an app on the edge with planetscale? I find it hard to use planetscale without prisma and would love to see how you do it

  • @RemotHuman
    @RemotHuman Рік тому +1

    What about the traditional way of having a regional server always running (so no cold starts or prisma spinning up for first time right?)

    • @knm080xg12r6j991jhgt
      @knm080xg12r6j991jhgt Рік тому +1

      I think his point is: then you have to maintain that infrastructure and hire people to do it. Developer/devops time is expensive.

    • @RemotHuman
      @RemotHuman Рік тому

      @@knm080xg12r6j991jhgt you could still deploy to a managed platform, but I guess you are right since it wouldn't scale horizontally automatically like spinning up more serverless functions or serverless edge runtime functions would. (Is that the right reason? Its the only one I can see right now.)
      I wonder if you could do a hybrid though that still doesn't require devops like maybe instead of lambdas you make a server with no state and duplicate instances can be spun up and down automatically like lambdas, but less often and multiple functions could share a database connection. And you could use existing tooling for languages other than js. I don't have much experience with back end so maybe I'm missing something about how servers work.

  • @snk-js
    @snk-js Рік тому

    I liked that video very instructive

  • @mochalatte3547
    @mochalatte3547 Рік тому +2

    What presentation tool do you use to explain all about serverless? quick drawing is what kept my attention when you were pointing out the subtle differences between serverless vs edge. Kudos.

  • @supercompooper
    @supercompooper Рік тому

    Bono is the Edge

  • @Leofmoura87
    @Leofmoura87 Рік тому

    Can anyone help me to understand why we don't have cold start on the EDGE? I missed that.
    thanks!

  • @GeekOverdose
    @GeekOverdose Рік тому +4

    I'd like to emphasize, this is probably only a solution for small complexity apps. If you have a massive system with multiple user types, serving multiple different UIs, might not be the best approach

    • @leos5246
      @leos5246 Рік тому +2

      I think it depends what do you understand under complex apps, 90% of the apps in the internet and corps can be handled by 1 server with database on it

  • @AlvarLagerlof
    @AlvarLagerlof Рік тому +2

    Edge is serverless

  • @ymi_yugy3133
    @ymi_yugy3133 Рік тому +2

    I feel like one area that has quite some room for improvement is moving all data related things inside the database. Being in the same data center is great but nothing beats being on the same chip.
    For requests that don’t do rendering you can avoid spinning up any runtime altogether.

    • @leos5246
      @leos5246 Рік тому

      in memory databases reduce your latency from ms to micro seconds :). You basically buy a server with 1TB DDR4 and you good to go xD

  • @GccYak-eg3wk
    @GccYak-eg3wk Рік тому

    Vercel edge functions charge for execution units of 50ms. Isn't that the same as lambda charging for CPU time?

  • @colton..
    @colton.. Рік тому

    Prisma has an edge runtime now. Even at the time that this video was posted prisma had it - yet you claim that prisma can't run in edge.

  • @domw2391
    @domw2391 Рік тому +6

    prisma just release a blog that how they speed up the init on lambda function

    • @t3dotgg
      @t3dotgg  Рік тому +7

      You should check out my last video lol

    • @domw2391
      @domw2391 Рік тому

      @@t3dotgg will do!

  • @John83118
    @John83118 11 місяців тому

    I'm enchanted by this content. I recently read a similar book, and I was truly enchanted. "Mastering AWS: A Software Engineers Guide" by Nathan Vale

  • @sbmb9613
    @sbmb9613 Рік тому

    So no ffmpeg @ edge ... shouldn't v8 isolates support wasm? Technically able to execute rust binaries?