Laravel Horizon: queue monitoring + configuration

Поділитися
Вставка
  • Опубліковано 9 чер 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
  • Фільми й анімація

КОМЕНТАРІ • 71

  • @simonswiss
    @simonswiss Місяць тому +30

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

    • @aarondfrancis
      @aarondfrancis  Місяць тому +1

      Thanks, I hope so!

    • @s1ckret
      @s1ckret 4 дні тому

      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 Місяць тому +22

    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 29 днів тому

      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 Місяць тому +2

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

  • @griebel11
    @griebel11 Місяць тому +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.

  • @rodjenihm
    @rodjenihm Місяць тому +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.

  • @FarazSamapoor
    @FarazSamapoor Місяць тому +1

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

  • @karansmittal
    @karansmittal Місяць тому

    You explanations make the topics more interesting.

  • @SimoneFolador
    @SimoneFolador Місяць тому +1

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

  • @justinclarketx
    @justinclarketx Місяць тому +1

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

  • @umairsaeed5925
    @umairsaeed5925 Місяць тому +1

    This series keep interesting more and more ❤

  • @maxcelosdev
    @maxcelosdev Місяць тому +3

    You should be doing the official Laravel channel videos

  • @seniorbrusko
    @seniorbrusko 17 днів тому

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

  • @AbdullaMalik
    @AbdullaMalik Місяць тому

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

  • @ahmad-murery
    @ahmad-murery Місяць тому +1

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

  • @markup100
    @markup100 Місяць тому +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 Місяць тому +10

      thats basically 1 page of the official documentation

    • @med.brunofreire
      @med.brunofreire Місяць тому +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 Місяць тому +6

      Laracasts have just done a Laravel API Masterclass

    • @aarondfrancis
      @aarondfrancis  Місяць тому +4

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

    • @tinusg
      @tinusg Місяць тому +16

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

  • @Frank-ou2nr
    @Frank-ou2nr Місяць тому

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

    • @aarondfrancis
      @aarondfrancis  Місяць тому

      A pretty customized PHPStorm!

    • @Frank-ou2nr
      @Frank-ou2nr Місяць тому

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

  • @luismatabrito
    @luismatabrito 3 дні тому

    Thanks quite interesting

  • @tmarsha4
    @tmarsha4 Місяць тому

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

  • @sean_reyes
    @sean_reyes Місяць тому +2

    Pulse or Reverb next?

  • @UltraDraft
    @UltraDraft Місяць тому

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

  • @nihirzala
    @nihirzala Місяць тому

    Awsome Intro

  • @ComfyCosi
    @ComfyCosi 27 днів тому

    Real lenses in your glasses yayyyyyh

  • @SickBeard
    @SickBeard Місяць тому

    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.

    •  Місяць тому

      A better comparison for Horizon would be Sidekiq Pro IMO!

  • @gadgetboyplaysmc
    @gadgetboyplaysmc Місяць тому

    What terminal font do you use? It looks breathtaking.

  • @isaachatilima
    @isaachatilima Місяць тому

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

  • @pepeka1772
    @pepeka1772 27 днів тому

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

  • @neeshsamsi
    @neeshsamsi 8 днів тому

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

  • @jonkf7548
    @jonkf7548 Місяць тому +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 29 днів тому

      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 29 днів тому

      @@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 12 днів тому

      ​@@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.

  • @Metruzanca
    @Metruzanca Місяць тому

    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.

    • @aarondfrancis
      @aarondfrancis  Місяць тому +1

      Gah that rules. Thanks for telling me

  • @bambamboole1
    @bambamboole1 Місяць тому

    Is there actually a proper concept for horizontally scaling?

    • @aarondfrancis
      @aarondfrancis  29 днів тому

      You can just add more machines working the queues

    • @rcnhsuailsnyfiue2
      @rcnhsuailsnyfiue2 29 днів тому

      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  29 днів тому +1

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

  • @Cool_Goose
    @Cool_Goose Місяць тому

    Did this broaden your horizon?

  • @philipjamesajagabos2519
    @philipjamesajagabos2519 Місяць тому

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

  • @yezperdk
    @yezperdk Місяць тому

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

  • @Kane0123
    @Kane0123 Місяць тому

    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.

  • @ajzack983
    @ajzack983 Місяць тому

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

  • @michailgiannopoulos5274
    @michailgiannopoulos5274 Місяць тому

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

    • @aarondfrancis
      @aarondfrancis  Місяць тому +3

      That doesn't affect us though right? Just companies trying to resell Redis?

    • @michailgiannopoulos5274
      @michailgiannopoulos5274 Місяць тому

      @@aarondfrancis Exactly that Aaron.

  • @gilneyn.mathias1134
    @gilneyn.mathias1134 Місяць тому

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

    • @aarondfrancis
      @aarondfrancis  Місяць тому

      Bummer!

    • @IbrahimIsmail98
      @IbrahimIsmail98 Місяць тому

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

    • @gilneyn.mathias1134
      @gilneyn.mathias1134 Місяць тому

      @@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 14 днів тому

      WSL FTW 🎉