Django (Python) vs Go (Golang): Performance (Latency - Throughput - Saturation - Availability)

Поделиться
HTML-код
  • Опубликовано: 5 окт 2024

Комментарии • 384

  • @AntonPutra
    @AntonPutra  15 дней назад +11

    ► What should I test next?
    ► AWS is expensive - Infra Support Fund: buymeacoffee.com/antonputra
    ► Benchmarks: ruclips.net/p/PLiMWaCMwGJXmcDLvMQeORJ-j_jayKaLVn&si=p-UOaVM_6_SFx52H

    • @chetana9802
      @chetana9802 15 дней назад +3

      Hey
      django is old, try fastapi or sanic

    • @KozakZabava
      @KozakZabava 15 дней назад +1

      Nest.js vs Rocket(rust)??

    • @artemxyi
      @artemxyi 15 дней назад +1

      Please try Ntex(Rust) vs Axum vs Tokio vs Actix vs Drogon(c++)

    • @EduardoSantos-wg8or
      @EduardoSantos-wg8or 15 дней назад

      I'm curious about frameworks that I believe are a little less popular, e.g. phalcon (php) or drogon (c++)

    • @Mr.BinarySniper
      @Mr.BinarySniper 15 дней назад +3

      Bun vs Deno vs Nodejs please please please.

  • @speirnhujin8940
    @speirnhujin8940 15 дней назад +216

    Comparison between FastAPI and Go stdlib seems much more appropriate, FastAPI focuses on speed and has a lot less "bloat" than Django

    • @oktay9784
      @oktay9784 15 дней назад +33

      There is not much performance difference between Django and FastAPI. Because they are both Python frameworks. That's why they are both very slow.
      If you think FastAPI can compete with Go stdlib, you can take a look at TechEmpower benchmarks.

    • @GeoGuyz
      @GeoGuyz 15 дней назад

      @@oktay9784 even if it does go still has fiber

    • @sargentomili
      @sargentomili 15 дней назад +14

      @@oktay9784 Fasta Api relay on Pydantic (Rust) and many C librarys so i am not so sure.

    • @hermes6910
      @hermes6910 15 дней назад

      ​@@oktay9784 I'm not a pytonista but I have a lot of doubts about a full framework like Django being as lightweight as something like FastAPI.
      And from FastAPI themselves on their homepage says: ‘The main features are: Fast: Very high performance, on par with NodeJS and Go (thanks to Starlette and Pydantic).’
      This doesn't mean that FastAPI will achieve the same results as Go despite what it says.
      But since you're comparing a very fast language (Go), you have to choose the fatest library/framework for something as slow as Python.

    • @deez_dev
      @deez_dev 15 дней назад +11

      I was going to say that too :)
      FastAPI vs stdlib would be more interesting for sure

  • @silthstraider6542
    @silthstraider6542 15 дней назад +135

    I really want to see Django vs Flask vs FastAPI video

    • @dupdrop
      @dupdrop 15 дней назад +19

      Racing snails against each other is at least fair... ;)
      Also vs Litestar

    • @silthstraider6542
      @silthstraider6542 15 дней назад +1

      @@dupdrop 😁

    • @thelearningmachine_
      @thelearningmachine_ 15 дней назад

      Flask is synchronous, it can only process 1 request per turn, until accepts the next one. FastAPI humiliate Flask in a racing of snails :D

    • @AntonPutra
      @AntonPutra  15 дней назад +8

      noted! I'll do it in the near future

    • @MrVajcakaty
      @MrVajcakaty 14 дней назад +1

      @@thelearningmachine_ Not true, wrap/place gunicorn in front of Flask and it will dominate.

  • @likwidsage
    @likwidsage 15 дней назад +42

    Great test but nothing surprising. Go is known to walk that line between ease of use and performance. Python more towards ease of use, with less performance. and Rust more towards performance but is harder to use.

    • @AntowaKartowa
      @AntowaKartowa 15 дней назад

      On a course about algorithms lecturer was writing code mainly on Java, but also shows examples on Python and JavaScript. Java has showed much bigger performance than Python in every test, so I concluded that Python is relatively slow language.
      Recently I've read that Go is very lightweight and fast and that's why it is widely used in microservices.
      It made the wrong perception that Python should be slower than Go.

    • @AntonPutra
      @AntonPutra  15 дней назад +10

      the question wasn’t whether Python is slower, but by how much it is slower 😊

    • @everyhandletaken
      @everyhandletaken 14 дней назад +5

      For sure, but the best part about Go is that it is only marginally more complex than Python, yet much better performance

    • @haploid2k
      @haploid2k 14 дней назад +3

      There is nothing "easy" about Python. If you hate yourself that much, by all means, use a language where whitespace is syntax. But if you value your sanity, choose something less schizophrenic, with proper block definition syntax and a static type checker.

    • @SAsquirtle
      @SAsquirtle 14 дней назад

      @@haploid2k pathetic skill issue, use an IDE and type hints with mypy + ruff

  • @mfc1190
    @mfc1190 15 дней назад +14

    Awesome video - quick nit: in the CPU Throttling, you have zig instead of go. This was really insightful!

    • @AntonPutra
      @AntonPutra  15 дней назад +2

      thanks, it just a label from the previous benchmark it is actually golang

    • @mfc1190
      @mfc1190 15 дней назад

      @@AntonPutra yeah no worries, just figured I would give you a heads up if this is attached to a repo

  • @dragonvslvr
    @dragonvslvr 15 дней назад +15

    Very cool! I recently converted a python pipeline to rust and was shocked by the performance improvements 40s -> sub 1second. If you want I might be able to help convert this to something like fastapi since it’s very popular. Might be beneficial for everyone to see

    • @artemxyi
      @artemxyi 15 дней назад +1

      Create the fastest python framework?

    • @AntonPutra
      @AntonPutra  15 дней назад

      thanks!

  • @hdeolivera
    @hdeolivera 15 дней назад +48

    Great work! Bun vs Go, please 🙏

    • @PanicAtProduction
      @PanicAtProduction 15 дней назад +4

      Yes. This please

    • @Serizon_
      @Serizon_ 15 дней назад +1

      @@PanicAtProduction Bun will lose if I remember correctly , by watching a video of some guy who converted his code from bun next to golang for static pages I guess
      I am also interested in this though since bun actually has bs benchmarks on its website (its comparing 17x faster for react , for a simple hello world which is pretty stupid imo)
      I would like to see some practical examples like how Anton does
      Please anton , lets see bun vs golang.

    • @papa_ethan
      @papa_ethan 15 дней назад

      @@Serizon_ Nothing could match go other than C/C++/Rust/Zed/Object-C even C#.Net and Java will lose

    • @jlucaso
      @jlucaso 15 дней назад +6

      Up. bun (bun.serve) bun (elysia)

    • @AntonPutra
      @AntonPutra  15 дней назад +3

      ok!

  • @УважаемыйЧеловек-л4с
    @УважаемыйЧеловек-л4с 15 дней назад +11

    Every Django task is blocking, so there is big latency when working with multiple users. There is obvious optimizations for Django app - use async views, async calls to dbs, async middleware + some asgi server (like uvicorn). For further improvement you can use C-written "NGINX Unit" as WSGI/ASGI server instead of Python-written Gunicorn/Uvicorn.
    And looks like there is unnecessary middlewares, too.
    I hope someone else can make pull request because I used Django only a couple of times (not a big expert, esp. talking about performance)
    Would like to see FastAPI vs Django vs Go stdlib vs some js backend (maybe both Node and Bun) in the next video.

    • @AntonPutra
      @AntonPutra  15 дней назад +2

      thanks! i'll try async views in the future

    • @Vismund2
      @Vismund2 15 дней назад

      @@AntonPutra Configuring gunicorn to use gevent workers should be quicker to set up. But I'd still be very interested in comparing it with actual async python functions.

    • @AntonPutra
      @AntonPutra  15 дней назад +1

      @@Vismund2 no, i'll try async

    • @shulehr
      @shulehr 4 дня назад

      @@AntonPutra i cant wait to see that one :)

  • @CuteseGamer
    @CuteseGamer 10 дней назад +3

    You can write django app in days instead of months for the go version. Just start the MVP with django, it scales horizontally well and add some go stuffs if your app becomes really successful. Otherwise it will sit on your $5 vm processing 10 request per day which comes from yourelf. Good bye

  • @mr.nobody4494
    @mr.nobody4494 15 дней назад +12

    ☝ Please, C# with .NET 8 vs (Python with FastAPI and PHP with Laravel), all of these using PostgreSQL. Thanks in advance! 🙌

    • @AntonPutra
      @AntonPutra  15 дней назад +7

      ok, i'll come back to c# and .net soon

  • @Jonathanlouisa
    @Jonathanlouisa 15 дней назад +13

    php/Laravel vs Bun vs Python pls

    • @Dipj01
      @Dipj01 15 дней назад +1

      Yeah +1 for laravel

    • @ORiastanjung
      @ORiastanjung 15 дней назад +1

      yep im curious on these laravel/php also

    • @AntonPutra
      @AntonPutra  15 дней назад

      ok, soon!

  • @muharief3885
    @muharief3885 14 дней назад +6

    Django is a framework, and you've compared with stdlib non framework compiled go? what a on fair comparison. It was apple and orange.
    When go is async from the start, that huge django is threaded sync framework dude.
    Whats the point comparing compiled language to interpreted language when simple hello world is enough to justify compiled lang supremacy.
    The closest thing you can do is comparing go with python fastapi/falcon + pypy which is far superior to django in term of performance.
    Django is big because you have everything included to develop fast business application.

    • @AntonPutra
      @AntonPutra  13 дней назад +3

      I know, I have a lot of experience running Django in production at my company. I know it's slow, but I've received several requests to demonstrate just how slow it is.

    • @plathardstuck28
      @plathardstuck28 13 дней назад +1

      @@AntonPutra now you need to demostrate how slow you will write in Go all built-in systems, that django has out-of-box. Templating, translation, timezones, auth, sessions, ORM (with very complicated queries support), CORS middleware, clickjacking middleware, password hashing... list goes on. Plus there are TONS of working solutions, that you can use for your applications in notime (DRF, Djoser, Django-model-translation etc.). It is slow. But not "just slow for nothing" - that bunch of tools comes at price.

  • @abdussametkaci5795
    @abdussametkaci5795 15 дней назад +7

    Nice content, please Spring Boot (Native) vs Go 🙏

    • @AntonPutra
      @AntonPutra  15 дней назад +5

      thanks, will do soon!

  • @MD.NazrulIslamKhan-b8j
    @MD.NazrulIslamKhan-b8j 14 дней назад +2

    @AntonPutra Please add `blacksheep` python framework in your next test which is well known for it's performance

    • @AntonPutra
      @AntonPutra  14 дней назад +1

      sure, i'll take a look

  • @mallickpriyanshu
    @mallickpriyanshu 11 дней назад +3

    Would love to see a Nodejs (Express) vs Python (FastAPI)

  • @adrianbool4568
    @adrianbool4568 14 дней назад +4

    On your question about why is Python transmitting so much more data across the network. I suspect that is due to Gunicon not supporting HTTP KeepAlive on sync requests and therefore you're seeing the TCP setup & close traffic for each any every request to the Python server. Go's ServeMux does seem to support HTTP Keepalive; hence its comparitively lower traffic levels. I guess an async Django instance, supporting HTTP KeepAlive, would be interesting - if possible!

    • @AntonPutra
      @AntonPutra  14 дней назад

      Thanks! I'll look into HTTP KeepAlive and try async implementation as well

  • @viniciusmorgado9722
    @viniciusmorgado9722 15 дней назад +3

    Very good video as always.
    But I think that results are expected, will be interesting compare between Python frameworks popular for backend: Django Rest Framework, FastAPI and Flask.

    • @AntonPutra
      @AntonPutra  15 дней назад

      Thanks, yes, but I didn't think that it could only process 2.5k requests.

  • @brandonkauffman7256
    @brandonkauffman7256 15 дней назад +5

    Looks like Go's postgres connection limit is reached with 4 connections causing the timeouts.

    • @brandonkauffman7256
      @brandonkauffman7256 15 дней назад +4

      I made a PR to allow a higher max connection limit

    • @AntonPutra
      @AntonPutra  15 дней назад +1

      thank you! merged and i'll be using the same 20 for other languages as well

  • @christiangualteros36
    @christiangualteros36 15 дней назад +1

    Thank you. Great job. These benchmarks are so good and a great idea for the people who work in production.

  • @099watcher
    @099watcher 13 дней назад +2

    Thank you, I was really looking forward to this.

  • @Thassalocracy
    @Thassalocracy 14 дней назад +1

    I find yr videos really insightful. U are probably the only person and channel that really demonstrates that the choice of programming language is a very important factor in software/web development. Many people are guilty of burying this in the hopes that their favorite stack will not be exposed for the CPU vampires that they are.
    At this point it seems that Go is the fastest GCPL for pretty much anything memory safe while Rust is the fastest non-GCPL for the same. 😅

    • @AntonPutra
      @AntonPutra  13 дней назад +1

      Well, I'm a DevOps engineer, not a programmer, so I don't have any bias😊

  • @Mr.BinarySniper
    @Mr.BinarySniper 15 дней назад +10

    Please, we want a test between javascript runtimes. Bun vs Nodejs vs Deno. Please please.

    • @AntonPutra
      @AntonPutra  15 дней назад +4

      yes, next node vs go, right after i'll test these three i promise

    • @DavidSmith-ef4eh
      @DavidSmith-ef4eh 14 дней назад

      I assume bun has a small edge over node and node has a small edge over deno. deno being the slowest of them all, but not by mutch. maybe 5% slower than bun.

    • @Mr.BinarySniper
      @Mr.BinarySniper 14 дней назад

      @@DavidSmith-ef4eh yeah. thats all we wanted to see.

    • @ashwinsnmv
      @ashwinsnmv 14 дней назад +1

      ​@@DavidSmith-ef4ehactually node is slower than Deno in many benchmarks. Bun is fastest because it uses c based library with js bindings.

    • @musashigarami
      @musashigarami 13 дней назад

      @@AntonPutra This is awesome! Thanks

  • @DavidSmith-ef4eh
    @DavidSmith-ef4eh 15 дней назад +18

    doesn't sound like a fair benchmark. it's like a race between Hussain Bolt and Joe Biden.

    • @nanonkay5669
      @nanonkay5669 15 дней назад +1

      What's not fair about the comparison? How he conducted it or the languages used?

    • @DavidSmith-ef4eh
      @DavidSmith-ef4eh 15 дней назад

      @@nanonkay5669 python is know to be one of the slowest languages, while go is on top of all benchmarsk... it's too much of a gap to even compare them.

    • @nanonkay5669
      @nanonkay5669 15 дней назад +5

      @@DavidSmith-ef4eh people understand that and we all heard it, but some want to see it and also quantified. It doesn't make the benchmarking unfair

    • @statuschannel8572
      @statuschannel8572 15 дней назад +4

      @@DavidSmith-ef4eh you'd be suprised how many people believe Python is faster than others. A solution architect even told me python is faster than what he uses everyday( C# )

    • @roccociccone597
      @roccociccone597 15 дней назад

      @@DavidSmith-ef4eh lots of people use Django and Python for server side code.

  • @nightmarenova6748
    @nightmarenova6748 15 дней назад +1

    This is so interesting! As someone who likes to self-host stuff i have an instance of Authentik(an Auth provider for your self-hosted services made largely with Python and Typescript ) where for all its services like the agent and the service itself it consumes around 1 to 1.2gb of ram! Which is quite insane . As soon as i saw the graphs in this video it reminded me of Authentik!
    Thanks for yet another amazing video btw! Keep up the great work!

  • @antonmarini3662
    @antonmarini3662 15 дней назад +3

    A few questions which might help with Python performance that I didn't see addressed
    * what version of python are you using?
    * can you test with async views in Django?
    I'd never expect python to be nearly as performant but im curious if the latest GIL updates in 3.11, 3.12 and 3.13 along with Django's Async views help with the dismal performance?
    Thanks from a fellow Anton :)

    • @AntonPutra
      @AntonPutra  15 дней назад

      Thanks! :) I'm using 3.12.6 - github.com/antonputra/tutorials/blob/main/lessons/209/mydjango/Dockerfile#L12C13-L12C19
      I'll try async views next time

  • @mirkamolmirobidov1991
    @mirkamolmirobidov1991 14 дней назад +1

    Awesome test format. I want to see c++ userver vs rust benchmark it will be interesting to see cpu and ram usage also latency

    • @AntonPutra
      @AntonPutra  13 дней назад

      thank you! yes i'll do cpp soon

  • @MrQsam
    @MrQsam 15 дней назад +1

    Pretty useful stuff, as always. I would love to see a comparison between Python FastAPI and frameworks from other languages.

    • @AntonPutra
      @AntonPutra  15 дней назад +1

      thank you, will do fastapi soon

  • @FAELP22
    @FAELP22 14 дней назад +2

    Very good, thank you. Could you teach me how to configure Prometheus and Grana in the EKS cluster? And how to create this dashboard?

    • @AntonPutra
      @AntonPutra  13 дней назад +2

      sure i'll come up with some new tutorials how to

  • @chu121su12
    @chu121su12 15 дней назад +4

    👋 requesting similar benchmark for java (especially with v22 vs v23 which had new gc) vs go/rust. thanks in advance

    • @galiKZ0
      @galiKZ0 15 дней назад

      Yes! Should be interesting!

    • @AntonPutra
      @AntonPutra  15 дней назад +2

      noted! i'll come back to java and c# soon

  • @VinayGoudtallapalli
    @VinayGoudtallapalli 15 дней назад +10

    Whoa..Not even a competition from Go's side

    • @AntonPutra
      @AntonPutra  15 дней назад

      well, I need a rate-limiting library to avoid oomkills

    • @MMEEEish
      @MMEEEish 14 дней назад

      The problem is in Django, and not Python. fastapi or sanic will show way better results @AntonPutra

  • @mukundjajadiya
    @mukundjajadiya 15 дней назад +2

    In cpu throtling graph you forgot to rename as go it's show zig from previous test. Just try to grabe your attention 😊

  • @mukundjajadiya
    @mukundjajadiya 15 дней назад +2

    Hi,
    When you will bring bun vs nodejs in typescript. Excited to watch it

    • @AntonPutra
      @AntonPutra  15 дней назад +1

      node vs go next, then all bun

  • @Fenospro
    @Fenospro 15 дней назад +2

    I would like to see one with NodeJs fastify vs Golang

  • @dmitrydudalov8886
    @dmitrydudalov8886 14 дней назад +2

    try pypy interprieter. i had dramatical improve performance just change and have JIT

  • @musashigarami
    @musashigarami 13 дней назад +1

    I'm scared to see node js next XD, node js vs Go would be a good one.

  • @RobertoMaurizzi
    @RobertoMaurizzi 11 дней назад

    If I understand correctly, Go does automatic parallel scheduling of the code that manages the requests.
    In Django you should use async view functions and run using the asgi interface provided by Channels.
    It'll still be way slower, but better than what you got. Also, you should run it using an application server like uwsgi (I can't see how you ran it, I'm on a phone and it's too small/fast 😅)

    • @RobertoMaurizzi
      @RobertoMaurizzi 10 дней назад

      ... and youtube won't allow me to comment about how to use uvicorn to run the project using async... It's in the official docs 🙂
      I'm curios to see how much things change with async views.

  • @thisistotest
    @thisistotest 15 дней назад +6

    Sir, C++ vs RUST please.

  • @aaliboyev
    @aaliboyev 14 дней назад +1

    You made me think on switching to go api backend

    • @AntonPutra
      @AntonPutra  13 дней назад

      no so fast, i want to try async views as well, they say it's much faster

  • @toragodzen
    @toragodzen 9 часов назад

    Django is for the quickest path from the idea to something actually working ... And this is why I will keep using even watching how it dramatically fails in benchmark tests 😂

  • @alexreustle
    @alexreustle 15 дней назад +1

    I’d like to see a benchmark test of c++ Drogon framework vs similar competitors, like actix in rust

    • @AntonPutra
      @AntonPutra  15 дней назад +1

      will do!

    • @alexreustle
      @alexreustle 15 дней назад

      @@AntonPutra you’re very kind. Thank you

  • @ooguro8513
    @ooguro8513 14 дней назад +1

    The comparison is not valid. Django has a significant number of default middleware, which means that the request must go through several processes before reaching the view function.

    • @ooguro8513
      @ooguro8513 14 дней назад

      One thing to keep in mind is that it is not appropriate to compare programming languages or frameworks directly, as each has its own advantages and disadvantages.

    • @ooguro8513
      @ooguro8513 14 дней назад

      The success of a project does not solely depend on the tools used, but rather on the intellectual capabilities and expertise of the individuals involved.

    • @ooguro8513
      @ooguro8513 14 дней назад

      For instance, Instagram was developed using Python Django.
      Do you believe it is slow?
      Of course not, correct?

    • @AntonPutra
      @AntonPutra  13 дней назад +1

      At my company, we've been running Django in production for at least 4 years. Yes, it's a totally production-ready framework, but it's just slow. I have a lot of experience running Django in production under heavy load :)

  • @friedrichdergroe9664
    @friedrichdergroe9664 14 дней назад

    I would love to see this benchmark between Go and Elixir. They are more similar as both are designed to handle high concurrency.

  • @jimzordstam6338
    @jimzordstam6338 14 дней назад

    Amazing and professional video as always, I actually requested this one in the previous (Rust vs Zig) so a million thanks!
    Personally, I used Bun.js + Elysia a week ago and had a great DX. So having a Benchmark that answers which JS web framework is the fastest would be awesome. For Node.js I would choose the Hyper express or Hono, Elysia for Bun and I have no clue about deno.

    • @AntonPutra
      @AntonPutra  13 дней назад

      Thank you! I’m actually planning to do Node next

  • @HarshRanjan-z4b
    @HarshRanjan-z4b 14 дней назад

    Could you do some kind of benchmark on number of active connections and how well actix-web handles it as compared to something in erlang? I would love to see why WhatsApp decided to go with erlang (even though Rust probably wasn't too mature/did not exist?) over the more mainstream tools, maybe even C++. C++ also has a relatively less known web framework in the form of drogon.

    • @AntonPutra
      @AntonPutra  13 дней назад

      Yes, I keep optimizing the DB setup. I’ve now set the pool to 20 connections and some timeouts, but scaling the connection pool is usually handled by the library itself. I have metrics from the database to visualize them in Grafana.

  • @billn98
    @billn98 13 дней назад +1

    Nice video 👍. Can you do Dart vs Go next (Serverpod vs Gin, or both stdlib)?

  • @f4z0
    @f4z0 13 дней назад

    I'd really like to see how FastAPI behaves

    • @AntonPutra
      @AntonPutra  12 дней назад

      ok i'll do FastAPI soon

  • @andresaguilar3055
    @andresaguilar3055 14 дней назад

    Hey, I’ve been watching your videos for a while now. I really appreciate this kind of content. Especially for a person obsessed with perfomance like me.
    I would really like to see a comparison between databases perfomance. Especially postgresql vs mysql. Thank you btw.

    • @AntonPutra
      @AntonPutra  13 дней назад +1

      Thank you! I’ve been thinking about those two for a while. I'll get to them soon.

  • @LiveType
    @LiveType 15 дней назад

    "Simple" improvement for the django app I saw is to switch to async everything. This does increase the complexity of the project (and debugging) but should increase throughput a meaningful amount.
    For the go db connection, I did see that the maxConnections was increased to 20 so I suppose that's a fair place to start. I would say increase both the python and go to the max allowed of 100 connections for a saturation test.

    • @AntonPutra
      @AntonPutra  15 дней назад +1

      thanks, i'll try async views next time and set poll connections to 20 for both

  • @pkucmus
    @pkucmus 13 дней назад

    Hi, first time here, I would love to learn how to make such benchmarks. Would also like to see something more modern for Python like FastAPI or Starlette (ASGI) VS Fastify TypeScript

    • @AntonPutra
      @AntonPutra  12 дней назад +1

      Ok, noted! I'll make some tutorials on monitoring in the near future as well

  • @ORiastanjung
    @ORiastanjung 15 дней назад +1

    Love the way you explain it dude, it really tell us many information from it.
    I really curious on Laravel PHP vs NodeJS
    Would you mind try it also? since those three were very popular in my city currently

    • @AntonPutra
      @AntonPutra  15 дней назад +1

      thank you! yes node is the next

  • @vlatterran
    @vlatterran 7 дней назад +1

    Need some go vs nim benchmarks

  • @fojico1234
    @fojico1234 14 дней назад +1

    Django Vs stdlib!!!!. Pick a lightweight library Vs another lightweight please

    • @AntonPutra
      @AntonPutra  13 дней назад +1

      sure, someone just asked me to compare django so i did

  • @reiuji_utsuho
    @reiuji_utsuho 14 дней назад +1

    Python has always been great for prototyping and scripting. But as always, once you get to the point where you need serious performance it's best to rewrite in some other language.

    • @AntonPutra
      @AntonPutra  14 дней назад

      Some large companies are still using Django in production because it's very hard for them to migrate, lots of features

  • @s1v7
    @s1v7 12 дней назад +1

    It’s such ironic that Python is used in some of the most computationally demanding areas.

    • @AntonPutra
      @AntonPutra  12 дней назад

      thinking about comparing big data apis for spark/flink: python vs java/scala

  • @tacorevenge87
    @tacorevenge87 14 дней назад +1

    Wow man love your videos

  • @LinuxGamerYT
    @LinuxGamerYT 12 дней назад +1

    Could you test the Emmette framework in Python? It is written in Rust and uses asynchronous Python.

    • @AntonPutra
      @AntonPutra  12 дней назад

      ok, just added to my list

  • @iulikdev
    @iulikdev 15 дней назад +3

    Please test elixir/phoenix to debunk the greatest elixir! 🤣

    • @infantfrontender6131
      @infantfrontender6131 15 дней назад +1

      Debunk? Elixir is not faster than Go. It may be quicker than Python, but it depends
      The question is how to compare Elixir with their own fault-tolerance system. Do we need to use Docker with Elixir or not? Elixir has self-healing at the code level, and Docker can add it at the cluster

    • @AntonPutra
      @AntonPutra  15 дней назад

      sure, will do it soon

  • @sanchitwadehra
    @sanchitwadehra 11 дней назад +1

    Dhanyavad

  • @zakimimit
    @zakimimit 10 дней назад

    Can we see:
    -Django DRF vs Django ninja
    -Django with celery Vs nodjs or Go
    This will be fair comparison
    Thank you for the content

    • @johnmcway6120
      @johnmcway6120 15 часов назад

      what do you mean django with celery?

  • @soubinan
    @soubinan 14 дней назад

    Thanks for this benchmark
    Would be good to have go vs python but with fastapi and robyn (python flask like but based on rust)

    • @AntonPutra
      @AntonPutra  13 дней назад +1

      ok, next time i'll use async functions in python, should be faster

  • @ashish99311
    @ashish99311 14 дней назад +1

    Please make video on NEST JS and RUST Vs RUST

  • @thewalkthroughmaking
    @thewalkthroughmaking 14 дней назад

    Hey! Love your videos! Can you do an updated comparission between Istio and Linkerd2? But now using Istio's ambient mode (as oposed to their traditional sidecar mode) They claim that is much less resourse intensive, easier to manage and production ready

    • @AntonPutra
      @AntonPutra  13 дней назад

      Yes, but probably Istio (sidecarless) with Cilium.

  • @farhanaliqureshi3908
    @farhanaliqureshi3908 14 дней назад

    There is no comparison. It looks like Python tanked both tests. In Test-1, Go was handling ~60k req/s while Python was handling ~2k req/s. For a fair comparison, both should be serving similar number of requests per second. In Test-2, Python app just crashed under load.

    • @AntonPutra
      @AntonPutra  13 дней назад

      yes, i'll try async views next time

  • @yungouda
    @yungouda 12 дней назад +1

    P99 is a bad metric here since it will lead you to strange conclusions due to GC
    Use p90

    • @AntonPutra
      @AntonPutra  12 дней назад

      agreed, i'm already switching to p90 in the new benchmarks

  • @martinhotmann7868
    @martinhotmann7868 15 дней назад +1

    At "CPU Throtteling" you mislabled the blue line as "Zig" instead of "Go" ;)

    • @AntonPutra
      @AntonPutra  15 дней назад

      yes, it is from the previous benchmark a ran, it just copy paste :)

  • @AGAU1022
    @AGAU1022 14 дней назад

    Thanks for these. I would love to see Elysia vs Fresh (Deno)

    • @AntonPutra
      @AntonPutra  13 дней назад +1

      no problem, will test Elysia soon

  • @ac130kz
    @ac130kz 15 дней назад +2

    even proper json serialization with orjson won't help django, it's just too slow

    • @AntonPutra
      @AntonPutra  15 дней назад

      what about async views? have you tried it?

    • @ac130kz
      @ac130kz 14 дней назад

      @@AntonPutra it's sill not a big improvement, and Django is still deeply synchronous. Some folks rewrote ORM's object property resolution in Rust, which made a ton of improvement for big objects

    • @AntonPutra
      @AntonPutra  13 дней назад

      @@ac130kz ok

  • @rankala
    @rankala 14 дней назад

    NestJS and some other Node.js based frameworks would be interesting

    • @AntonPutra
      @AntonPutra  13 дней назад +1

      ok, i'll do node/express next then other js frameworks

    • @rankala
      @rankala 13 дней назад

      @@AntonPutra nice, just keep in mind, nestjs sits ontop of express.

    • @AntonPutra
      @AntonPutra  13 дней назад

      @@rankala Yes, I saw that it has a couple more thousand stars on GitHub.

  • @gibzrival1565
    @gibzrival1565 15 дней назад +2

    This was a loosing battle, -I bet rust vs python would be a bloodbath😅

    • @AntonPutra
      @AntonPutra  15 дней назад

      maybe fastapi, will see :)

  • @hectors.1644
    @hectors.1644 15 дней назад +1

    great content, Nice thumb by the way!

  • @j-p-d-e-v
    @j-p-d-e-v 15 дней назад

    Great content!
    This is one of the reason Im refactoring from python(django) to rust(actix) in one of my apps at work. And uwsgi is a nightmare to configure. Though Django is still my goto web framework for doing MVP apps.

    • @antonmarini3662
      @antonmarini3662 15 дней назад

      I'd be curious how much of the Django ecosystem has equivalent plugins on other platforms. Part of the draw of Django is how full featured the ecosystem is.

    • @j-p-d-e-v
      @j-p-d-e-v 15 дней назад

      ​@@antonmarini3662 Agree with this, actually in my case I build it from scratch or use a similar library then just add those missing features.

    • @AntonPutra
      @AntonPutra  15 дней назад

      It's easy to develop with, but hard to migrate from. We've been running Django for multiple years already, and they just keep adding more features.

  • @SAsquirtle
    @SAsquirtle 14 дней назад

    please do one with FastAPI with purely async routes (async route function + async function calls inside or run_in_threadpool for sync functions)

  • @AlexanderBorshak
    @AlexanderBorshak 15 дней назад +1

    Like for the video; but what do these huge logos of Python and Go mean? It would be better to have a legend, that shows which color belongs to which language.

    • @AntonPutra
      @AntonPutra  15 дней назад

      I have it in the actual test, you can skip it and have a timestamp in the description.

    • @AlexanderBorshak
      @AlexanderBorshak 15 дней назад

      ​@@AntonPutra I saw that later in the video, thank you. But still wanders - what do the huge logos of Python on the left side and Go on the right side on the charts mean?..

    • @AntonPutra
      @AntonPutra  15 дней назад +1

      @@AlexanderBorshak nothing really, i don't have a good explanation :)

  • @erlanggafauzanrezaganie9595
    @erlanggafauzanrezaganie9595 10 дней назад

    i really like your content, but can you try modify the django to use uvicorn instead ? i'd like to see how much the different

  • @lastink444
    @lastink444 15 дней назад +1

    such a nice series

  • @HaydonRyan
    @HaydonRyan 14 дней назад +1

    And there we go kids, don’t write web or system apps in python. Go isn’t that much harder, and a 10x better language.

    • @AntonPutra
      @AntonPutra  13 дней назад +1

      in terms of performance 100%

    • @HaydonRyan
      @HaydonRyan 13 дней назад

      ​@@AntonPutra In terms of performance, environment (managing python dependencies really sucks without containerization), weekly typed vs strongly typed ( python doesn't' have strongly typed variables).
      You can probably sense I'm very anti python is the answer to everything... It has it's place, scripting and AI experimentation.

  • @elalemanpaisa
    @elalemanpaisa 14 дней назад

    Next Go vs JS Express (or whatever would be the smallest usable JS framework) please

    • @AntonPutra
      @AntonPutra  13 дней назад +1

      yes, express is next

    • @elalemanpaisa
      @elalemanpaisa 13 дней назад

      @@AntonPutra thanks man! You really do the work for my project haha

  • @ArturDani
    @ArturDani 15 дней назад

    Nice work as always.
    Could you please do Laravel vs Express vs Django?

    • @AntonPutra
      @AntonPutra  15 дней назад

      thanks! i'll do express next

  • @ionutale1950
    @ionutale1950 15 дней назад +1

    That Python memory usage, may not be correct.
    Garbage collected memory, should have spikes

    • @AntonPutra
      @AntonPutra  15 дней назад

      I have a few metrics for memory, but this metric in the graph is actually used to OOM kill the pod by k8s.

    • @broccoli-dev
      @broccoli-dev 15 дней назад +1

      Python uses reference counting primarily. So memory is freed as soon as it's no longer used versus at some later time, excepting cyclic references.

    • @ionutale1950
      @ionutale1950 15 дней назад

      It makes sense

  • @miguelalzate4850
    @miguelalzate4850 15 дней назад +1

    I would like to see go vs node.js😁

  • @ThePandaGuitar
    @ThePandaGuitar 14 дней назад +1

    Laravel and Go please 🙏

    • @AntonPutra
      @AntonPutra  13 дней назад

      ok noted! will do soon!

  • @SaifurRahmanAkash
    @SaifurRahmanAkash 13 дней назад +1

    want Node vs Bun vs Deno

  • @CuteseGamer
    @CuteseGamer 10 дней назад

    Database will always be the slowest part in your stack!

  • @abdulawal604
    @abdulawal604 14 дней назад +1

    Why not MySQL vs PgSql vs Sqlite(WAL mode)

    • @AntonPutra
      @AntonPutra  13 дней назад +1

      yes i was thinking about db comparisons, i may do them in near future as well kafka vs rabbit etc

  • @ZodakZach
    @ZodakZach 14 дней назад +1

    so now that u can make websites with just go stdlib i wonder if there are any differences in performance when using something like echo

    • @AntonPutra
      @AntonPutra  14 дней назад +1

      I haven't tested Echo yet, but those web frameworks have useful middleware, logging, rate limiting, etc.

  • @wadyn95
    @wadyn95 14 дней назад

    The Robyn framework for Python could be really good (under the hood, it uses Rust 😁) compared to Golang.

    • @AntonPutra
      @AntonPutra  13 дней назад +1

      interesting, will take a look!

  • @slavapol-v1553
    @slavapol-v1553 15 дней назад +1

    Go vs Elixir, please

  • @ryn__bsd
    @ryn__bsd 14 дней назад +1

    Next flask vs expressjs

    • @AntonPutra
      @AntonPutra  13 дней назад +1

      thanks, almost! :)
      express vs go, then other js frameworks but I'll flask soon as well

  • @YabseraPython
    @YabseraPython 13 дней назад +1

    Next elixir vs golang ?

  • @Flipidiflop
    @Flipidiflop 14 дней назад +1

    I don't understand the caching that happens for go
    How it is setup? Is it a default behavior? Like why is it doing it just when cpu is a 100%?

    • @AntonPutra
      @AntonPutra  13 дней назад

      Yes, since I use the standard library, it doesn't have any rate-limiting capabilities, so it accepts each request. Eventually, all those requests fill up the memory, and it crashes. That's why you might choose a framework or at least implement it yourself.

  • @i3looi2
    @i3looi2 День назад

    DAMN son. sub 1ms execution time. What the hell. Too bad usually the connection to that api bumps it up to ~100ms+ xD

    • @AntonPutra
      @AntonPutra  День назад

      well, it's in the same VPC, so there's low latency

  • @earnstein7607
    @earnstein7607 14 дней назад +1

    There's no python framework that would beat go

    • @AntonPutra
      @AntonPutra  14 дней назад +1

      well, if python gets closer to what Go can do, that would be good enough

  • @BarakaAndrew
    @BarakaAndrew 15 дней назад +1

    its not even close, people shouldn't be using python for API stuff, just do ur own data science or call C APIs for AI.

    • @AntonPutra
      @AntonPutra  15 дней назад

      i want to test spark python vs java api now :)

  • @dominikgasparic2930
    @dominikgasparic2930 12 дней назад

    Cool video, but I noticed that Debug mode is turned on for django in repo

    • @dominikgasparic2930
      @dominikgasparic2930 12 дней назад +1

      I would also get rid of security and auth middlewares since you are not using auth and sec in go. Another thing is i18n. Django dev here 😂. Do you accept PRs?

    • @AntonPutra
      @AntonPutra  12 дней назад

      thanks, no, it's turned on for local development only. for deploying to prod, it is turned off - github.com/antonputra/tutorials/blob/main/lessons/209/deploy/django-app/configmap.yaml#L23

    • @AntonPutra
      @AntonPutra  12 дней назад

      sure, i would love to accept any PRs to improve both applications, just keep that in mind
      local dev settings - github.com/antonputra/tutorials/blob/main/lessons/209/mydjango/mydjango/settings.py
      prod settings - github.com/antonputra/tutorials/blob/main/lessons/209/deploy/django-app/configmap.yaml

  • @salim444
    @salim444 15 дней назад

    this is a great series. Can you try go gnat and zig zzz libraries?

  • @R_Y_Z_E_N
    @R_Y_Z_E_N 15 дней назад

    The rust war - Actix vs Rocket vs Axum

  • @weiSane
    @weiSane 15 дней назад +2

    Why is the CPU throttling graph showing python zig yet the test is for python and Go. I think you forgot to change that before deploying.

    • @exapsy
      @exapsy 15 дней назад

      He noticed, he even put a small text at one timestamp. He likely just forgot to change the label.

    • @AntonPutra
      @AntonPutra  15 дней назад

      thanks, it just copy paste mistake from the previous benchmark

  • @kinggrey2511
    @kinggrey2511 14 дней назад

    Edit: i saw your channel
    Why python try java , now that you mention it I really wanna know iam curious

  • @johnballesteros8956
    @johnballesteros8956 14 дней назад

    Go vs Django vs NextJS please!

    • @AntonPutra
      @AntonPutra  13 дней назад +1

      ok, noted! express next, then other js frameworks :)

  • @muray82
    @muray82 11 дней назад

    You should compare python to C# If I'm not mistaken the results are almost same?