Laravel Horizon: queue monitoring + configuration

Sdílet
Vložit
  • čas přidán 2. 07. 2024
  • In this video I give you an overview of Laravel Horizon, a package that provides a beautiful dashboard and code-driven configuration for your Laravel powered Redis queues.
    Docs: laravel.com/docs/11.x/horizon
  • Krátké a kreslené filmy

Komentáře • 73

  • @simonswiss
    @simonswiss Před měsícem +30

    You are going to drive SO MANY new devs to Laravel with this content ✨

    • @aarondfrancis
      @aarondfrancis  Před měsícem +1

      Thanks, I hope so!

    • @s1ckret
      @s1ckret Před 27 dny

      True. I choose laravel for my startup half a year ago because Aaron briefly talked about it. Loving every second working with it!

  • @PureGlide
    @PureGlide Před měsícem +23

    I use Horizon, it's great! I process a lot of data with it, currently sitting at 1800 jobs/minute. I made a big NOOB error when I started by passing the data to be processed into the job itself, which was occasionally multi-megabytes. This worked fine most of the time but if anything went wrong, the multiple job attempts plus storage of errors meant it quickly filled up the memory and made the problem catastrophic! It also made the horizon dashboard sluggish and fail, as it tried to show me the multi-megabyte data in each job attempt. The solution: Store the data separately, either on disk, DB or in Redis, and pass only an ID or reference to the data into the job. Then Horizon will fly.

    • @rcnhsuailsnyfiue2
      @rcnhsuailsnyfiue2 Před měsícem

      Great comment, working at a similar scale and found this myself. In my case nested eager-loaded relationships were the usual explanation. Just pass a model ID to the job, then load the model from the DB in handle(). This also ensures you’re using the most up-to-date model instance at runtime too!

  • @brianmmdev
    @brianmmdev Před měsícem +2

    Not a Laravel dev, but still enjoy learning about the ecosystem from Aaron. Nice work!

  • @rodjenihm
    @rodjenihm Před měsícem +4

    Cool how Laravel has 1st class support for everything you need. Unlike some other popular frameworks where you need dozen 3rd party SaaS providers.

  • @maxcelosdev
    @maxcelosdev Před měsícem +3

    You should be doing the official Laravel channel videos

  • @SimoneFolador
    @SimoneFolador Před měsícem +1

    Thanks Aaron! Great video, i really like this format. Can't wait for the next one!

  • @justinclarketx
    @justinclarketx Před měsícem +1

    Sweet intro! Never checked out Horizon before, thanks for the overview.

  • @karansmittal
    @karansmittal Před měsícem

    You explanations make the topics more interesting.

  • @umairsaeed5925
    @umairsaeed5925 Před měsícem +1

    This series keep interesting more and more ❤

  • @griebel11
    @griebel11 Před měsícem +2

    These are awesome video's to help people get to see some of the cool sides of modern PHP development options. I have been using Laravel since version 3 and the whole ecosystem has come so far. Thank you for making this series.

  • @FarazSamapoor
    @FarazSamapoor Před měsícem +1

    Keep up the excellent work, Aaron! I don't care what topic it is, I just know that I need MORE!

  • @seniorbrusko
    @seniorbrusko Před měsícem

    I'm not sure if you covered this already but would love to have a short video of your streaming setup :)

  • @AbdullaMalik
    @AbdullaMalik Před měsícem

    Love every single one of your video ❤, please keep it up

  • @ahmad-murery
    @ahmad-murery Před měsícem +1

    Interesting!,
    Now we need a video explaining Laravel Jobs😁
    Thanks Aaron! C-Ya

  • @markup100
    @markup100 Před měsícem +13

    Why there is no comprehensive and up to date laravel course that shows how to build an API? We don't need intertia, fullstack, htmlx, blade, just API, like in 99% of companies.

    • @mysterio7385
      @mysterio7385 Před měsícem +10

      thats basically 1 page of the official documentation

    • @med.brunofreire
      @med.brunofreire Před měsícem +1

      I love Laravel, except the new trend of make it “Blade first”… We do not need a full stack PHP, we need a good API

    • @Redheadtama1
      @Redheadtama1 Před měsícem +6

      Laracasts have just done a Laravel API Masterclass

    • @aarondfrancis
      @aarondfrancis  Před měsícem +4

      Laracasts probably has that! Let me know what's missing and I might be able to fill it in

    • @tinusg
      @tinusg Před měsícem +18

      “We” do need fullstack Laravel. “You” may not.

  • @luismatabrito
    @luismatabrito Před 26 dny

    Thanks quite interesting

  • @kennedymwenda3357
    @kennedymwenda3357 Před 4 dny

    I think it is good to mention that Redis must be installed and running

  • @tmarsha4
    @tmarsha4 Před měsícem

    I was anxiously awaiting for you to click the Live update button in the top right hand corner :)

  • @nihirzala
    @nihirzala Před měsícem

    Awsome Intro

  • @sean_reyes
    @sean_reyes Před měsícem +2

    Pulse or Reverb next?

  • @Frank-ou2nr
    @Frank-ou2nr Před měsícem

    Amazing video as always! Great details and examples. By the way Aaron, which editor do you use? It looks nice and clean.

    • @aarondfrancis
      @aarondfrancis  Před měsícem

      A pretty customized PHPStorm!

    • @Frank-ou2nr
      @Frank-ou2nr Před měsícem

      @@aarondfrancis Awesome! I work with PHPStorm every day and did not recognize it at all.

  • @UltraDraft
    @UltraDraft Před měsícem

    Thank you Aaron! Great video.
    btw what font do you use for the terminal?

  • @ComfyCosi
    @ComfyCosi Před měsícem

    Real lenses in your glasses yayyyyyh

  • @SickBeard
    @SickBeard Před měsícem

    1:31 Both Sidekiq and Oban are free and open source. They do have paid addon features, but these are strictly addons to the core functionality.

    •  Před měsícem

      A better comparison for Horizon would be Sidekiq Pro IMO!

  • @Metruzanca
    @Metruzanca Před měsícem

    Gonna be honest, don't really care for Laravel. But anything that Aaron Francis makes deserve consideration. Probably one of the best "dev evangelist"-type channels.

  • @jonkf7548
    @jonkf7548 Před měsícem +1

    I have used Laravel Horizon for years and it's even been a deciding factor for bringing Laravel into a project. That said, I still don't get why the environment setup is so overy complicated and hard-coded into to config/horizon.php file. If I have 3 or 4 environments and need to scale up or down the worker limits on one of them then I would rather just update the .env file for that server than push a commit with per-server/environment logic...

    • @rcnhsuailsnyfiue2
      @rcnhsuailsnyfiue2 Před měsícem

      You can do this easily! Just call env() within your Horizon config file. Then you can vary your configuration per-instance in the way you’d expect.

    • @jonkf7548
      @jonkf7548 Před měsícem

      @@rcnhsuailsnyfiue2 yes that’s my preference but that’s not the documented /recommended way to do it. Docs show a big array of repeated hardcoded values per environment, rather than simply setting your own values per queue in the .env file which seems more logical to me

    • @nimmneun
      @nimmneun Před měsícem

      ​@@jonkf7548the hard coded configs are just fallbacks/defaults and an example of what can be configured. The env() calls should be telling enough to hint at the fact, that they are meant to be overridden by the actual environment variables in your systems.

  • @isaachatilima
    @isaachatilima Před měsícem

    Out of topic. Is there a plan to work with jwt tokens for authentication with api?

  • @gadgetboyplaysmc
    @gadgetboyplaysmc Před měsícem

    What terminal font do you use? It looks breathtaking.

  • @pepeka1772
    @pepeka1772 Před měsícem

    Hi! How's it going? Is it possible to allow special characters on Laravel ( password creation ).

  • @rhnkyr
    @rhnkyr Před 21 dnem

    How would you configure it for an app that behind load balancer (3 app servers. 1 DB, and 1 Redis server)?

  • @neeshsamsi
    @neeshsamsi Před měsícem

    How are you creating the horizon.test url? Silly take away out of this entire video but I am really curious

  • @Cool_Goose
    @Cool_Goose Před měsícem

    Did this broaden your horizon?

  • @bambamboole1
    @bambamboole1 Před měsícem

    Is there actually a proper concept for horizontally scaling?

    • @aarondfrancis
      @aarondfrancis  Před měsícem

      You can just add more machines working the queues

    • @rcnhsuailsnyfiue2
      @rcnhsuailsnyfiue2 Před měsícem

      Spin up a copy of your app on another machine in the same data center/hosting region. No need to handle frontend requests, this copy only needs access to your central Redis database, and therefore can process queued jobs like any other copy of your application. Horizon will automatically assign jobs to workers, both multiple workers on one machine, or across workers on multiple machines. Horizontal scaling is simply a case of spinning up more instances of your app.

    • @aarondfrancis
      @aarondfrancis  Před měsícem +1

      @@rcnhsuailsnyfiue2 exactly correct! Thanks for the better explanation!

  • @philipjamesajagabos2519
    @philipjamesajagabos2519 Před měsícem

    Laravel Horizon, Larave Telescope 😂, Laravel continues to keep me in it's ecosystem. Everything is just available for you.

  • @Kane0123
    @Kane0123 Před měsícem

    Laravel Horizon. The point at which you cross over to coding PHP with no hope of returning. You become increasingly redshifted until you simply vanish from sight.

  • @yezperdk
    @yezperdk Před měsícem

    I think there's a typo in the e-mail address you give in the video. Mails keep bouncing!

  • @ajzack983
    @ajzack983 Před měsícem

    Waiting for the what is the laravel php artisan optimize:clear command 😂

  • @michailgiannopoulos5274
    @michailgiannopoulos5274 Před měsícem

    Great video but Redis became source-available now, open-source no more :(

  • @gilneyn.mathias1134
    @gilneyn.mathias1134 Před měsícem

    if only it worked on windows...
    ¯\_(ツ)_/¯

    • @aarondfrancis
      @aarondfrancis  Před měsícem

      Bummer!

    • @IbrahimIsmail98
      @IbrahimIsmail98 Před měsícem

      we hope that PHP team add the pcntl extension to windows :D

    • @gilneyn.mathias1134
      @gilneyn.mathias1134 Před měsícem

      @@IbrahimIsmail98 yeah, yeah, i know... I use Horizon on my current job and i have not to really complain, this was just more of a wish... 🥲

    • @nimmneun
      @nimmneun Před měsícem

      WSL FTW 🎉