Questions tagged [horizon]

Horizon is a realtime, open-source backend for JavaScript apps.

126 questions
8
votes
5 answers

running laravel horizon in production throw a 403 error when requesting domain/horizon

I have testet laravel Horizon on my local environment and everything is working as expected. When I am switching to production domain/horizon throws a 403 error. I have set the gate in HorizonServiceProvider as stated in the documentation - First…
Der Heidi
  • 81
  • 1
  • 1
  • 3
6
votes
1 answer

Find record through HorizonIO in RethinkDB not returning result

I've got a MeetingService that fetches data from my RethinkDB through HorizonIO. When trying to fetch a meeting through its ID, I'll always get a null value as response. Other methods in this service work without…
DGK
  • 2,947
  • 5
  • 32
  • 47
4
votes
2 answers

RethinkDB / Horizon: Integration with Express: Access Horizon data server-side?

There is an example of express integration on the Horizon.io Github as shown here: Horizon express server example I understand what this example is showing: if you have an existing Express server you can add a horizon server, which exposes a route…
JEDev
  • 43
  • 4
3
votes
2 answers

i want to install laravel/horizon but it give error laravel v9

i write composer require laravel/horizon to composer but it give this error : Your requirements could not be resolved to an installable set of packages. Problem 1 - Root composer.json requires laravel/horizon ^0.1.0 -> satisfiable by…
Mehti Sadixov
  • 71
  • 1
  • 6
3
votes
0 answers

Using Laravel Horizon to orchestrate queue in multiple servers

I have a Laravel app that does video processing. I am currently doing the encoding in the same server. Now, I want to create 3 more servers to do the "encoding" in parallel in multiple servers. Is this possible multiple servers doing the same…
senty
  • 12,385
  • 28
  • 130
  • 260
3
votes
2 answers

Job stay in pending list after processed

I am running Laravel 8, horizon 5.4 After I initiate the job, it processes successfully as it should, but in the Horizon dashboard it stays pending list, it does not move to the completed or failed list, after timeout(60 minutes) it disappears from…
mizan3008
  • 369
  • 3
  • 17
3
votes
0 answers

Reset OpenStack admin password

I have installed openstack on my VM. I changed my admin password but I do not know it(I have generated via keepass, but forget to save it :( ) Now I want to change it. stack@smaug:~/devstack$ openstack user password set --password somepassword…
Daniel Hornik
  • 1,957
  • 1
  • 14
  • 33
3
votes
1 answer

composer install horizon error don't install illuminate/queue

I want to install horizon in my laravel. When I run composer require laravel/horizon But errors happen. Problem 1 - Installation request for laravel/horizon 3.2 -> satisfiable by laravel/horizon[v3.2.0]. - Conclusion: remove…
zhuangbbq
  • 45
  • 1
  • 6
3
votes
0 answers

How to kill job by tag Or whatever in laravel horizon?

when i dispatch a job for any reason i want to kill that, how can i do that? when i restart the supervisor job goes to reserved status, my question is? When will the tasks in the reserved status be executed by the Worker?
3
votes
0 answers

Laravel 5.7 Task Queue (Horizon) doesn't pick up, try to run or fail tasks

We have multiple tasks to run on the same api, since the api is rate limited we need to throttle how many calls are made (100 by 120 seconds) so we don't get locked out. Each lock lasts 30 minutes, would freeze the whole team and might create…
3
votes
1 answer

Angular2: removeAll() in RethinkDB with Horizon API

I'm pretty new with Angular2, RethinkDB and Horizon API and I'm building a small webapp. In this app I'm trying to delete all objects in a specific table, and therefore I use the fetch() and removeAll() functions from Horizon API. The problem is the…
Wouter Vanherck
  • 2,070
  • 3
  • 27
  • 41
3
votes
2 answers

is rethinkdb horizon well suited for a rest api web service?

I see that rethinkdb now has an app server called horizon and it's examples include a lot of client apps without any backend server code. If I wanted to create a REST api service with rethinkdb - does horizon still add value or should I just create…
MonkeyBonkey
  • 46,433
  • 78
  • 254
  • 460
2
votes
0 answers

Elastic Beanstalk - Supervisor - Laravel Horizon - Not starting automatically

I am using Elastic Beanstalk to configure my web app. I've used this configuration (.ebextensions/00_supervisor.config): files: /etc/supervisord.conf: mode: "000755" owner: root group: root content: | …
pdolinaj
  • 1,087
  • 13
  • 21
2
votes
1 answer

Laravel Horizon -- 1 Worker processes more than 1 job at a time

I have a Laravel Horizon supervisor config that maintains a single process. However, I can't get this process to run only one job at a time. The config for this 'long-running-supervisor' => [ 'connection' => 'redis-long-running', …
user2800382
  • 239
  • 1
  • 3
  • 14
2
votes
0 answers

How to update horizon.php in Laravel and how to count proccesses in a queue?

I wrote new schedule and pulled it to test server and it works perfectly, BUT when I pulled it to production it does not work. I watched metrics in laravel-horizon and there was not new Job. So I decided that I had a bit processes therefor I changed…
1
2 3
8 9