Jobs Questions
Ad
DBMS Scheduler error: ORA-27367: program "Schema.PROG_programname" associated with this job is disabled
I have created an oracle job using dbms scheduler.but the status gets failed in the execution. it gives the following error. 'ora-27367:
Laravel 7 set log path dynamically in Job class
Im building project on laravel 7.3 with multiple jobs that run at the same time. i need to make each job write logs to different daily rotated
create generic function which can accept any function with its related args for later execution
Is it possible to create a generic function which can accept any other function with its related arguments which can be used later to execute the
How I can test that one Laravel job dispatches an another one on testing?
I have the following laravel worker: namespace app\jobs; use illuminate\bus\queueable; use
Laravel 5.8 Too few arguments error for jobs
I'm getting error below in the failed jobs table. too few arguments to function app\jobs\updateteamtodoprogress::handle(), 0 passed
How I can check whether my job calls the handle method once being dispatched?
I have the following controller: namespace app\controllers; use app\jobs\myjob; class mycontroller { public function
Is there any ways to detect the exact time that user turns off WIFI or Data?
i searched and it turns out that broadcast receiver is not recommended for the target over n. i found out
how to put schedule task jobs in chain in laravel?
I am using laravel task scheduling inside it queue jobs or working i want to put these jobs in chain kernel.php
Scheduled JobService runs only when I open my app
With jobscheduler i create a job that has to run periodically every 15 min. but it only works if my app is opened. i when i run app all
JobIntentService not working on API below Oreo (API <= 26)
I'm setting up a new service for android and i'm using jobintentservice for the first time. the service includes also a notification which is not
Ad
How to sync firebase with android room local db?
I have an application that has a remote database(firebase) and local database(room). i get my data from firebase and save it in android room.
Laravel queue not honouring job specific timeout
According to the laravel docs i should be able to specify a job specific timeout: if the timeout is specified on the job,
Broadcast receiver doesn't work after registering in onStartJob
I use firebasejobdispatcher and jobservice to do some work on the background. mainly i want to register to a screen
Supervisord configuration for Laravel
I am using supervisord to help keep my laravel-based app queue running. and i am wondering if the below configuration is correct. in
Laravel Schedule 5.4 names like `everyMinute()` not working
I am using laravel 5.4 when i use everyminute() it always return an error in fieldfactory.php line 46: 5
Web scraping periodically job performance
I have made a script in node for web scraping a page periodically as a job and save the data as a object in mongodb. i need to execute the
Firebase job service started with big delay
I am testing an application that receives firebase cloud data messages and processes them in the firebase job service. receiving messages in the
Changing Locale In Queue Job
I have a mutator that converts the model's body in desired translated format. public function gettextattribute() { return
Permission Issue for laravel APP QUEUE in windows server 2012
We have a laravel app (version 5.5*) deployed in windows server 2012 r2. but our development stack is lemp. same
JobScheduler is executed three times when the application is force closed
I observed one problem regarding periodic jobscheduler. it works as expected as long as the application is not force closed. in this case, the
What are typical use cases for multithreading vs services?
Since threads persist past the lifetime of the activity that spawn them, i can just put whatever background work i need to do on handlerthreads
Ad
Scheduling a daily job at a particular time
I want to give an alert at 9 pm daily and i am planning to use periodic job scheduler instead of alarm manager as to overcome
How can i keep the job service running when the app is closed from recent task list by user
I am using job scheduler api in my app to schedule a job for me after specific time interval. it runs fine when the app is running. but whenever
Make scheduled call on Azure with webjobs
I have a nodejs application deployed on azure and i want to make a call to it let's say every friday. can i upload a .bat file to the
Binary tree in Java implementation
My task is to implement a binary tree in java and do some operations on the tree e.g adding elements or showing the
Can JobScheduler in Doze mode can connect network?
As google document mentioned, jobscheduler can not work in doze mode, unless it is in temporal windowed periodic wake-up time. reference
Node.js project zip failed to upload as Azure WebJob
Please don't close this question without reading. i have got a regular node.js project with an index.js and a bunch of node_modules, one
RoomDB in JobSchedulerService
I recently added jobscheduler to my app via a jobservice. i use the jobservice to sync with my database periodically in the background and update
Running a Service indefinitely
I am migrating my android app to target android oreo. i am running a service which should run indefinitely to perform a particular task.
Laravel Not able to dispatch job from crontab
If i use this code in a controller queuing works well $job=(new reprocessshipment($single_data->request_data))->delay(2);
State-of-the-art method for ongoing, frequently updating notifications ("notification widget")
I am struggling to find a current state-of-the-art method for notifications that are frequently updated (e.g. every 3 minutes). there seem to have
Schedule auto wallpaper changing in background
How can we set a background task to android so that at given time an image is loaded from url and set as wallpaper
Ad
Passing Auth User data To Queue Job Class
I've created a job that processes pdfs in the background. i would like to fire off an email to the auth user once the job is complete with a link
Laravel - Setting up right Jobs per function
I've a question about setting up some jobs for my functions. the case 1. a customer uploads images to an ftp
How to convert xls to xlsx with Python Azure Webjob
I need to be able to convert xls into xlsx files with python and run the script as an azure webjob. i'm able to do the job on my local machine
How to manually run items from the Jobs table in Laravel (for testing)
I am trying to test that some data gets populated on a page that is done by a job. in my testing environment, the queue isn't running. is
How to register a periodic work request with WorkManger system-wide once (i.e. after boot or installation)
I need a component in my android app that is best being described as a watchdog, i.e. a function that is executed every 30min +/- 5min and asserts
Laravel Job fail issue
I need queue job to re-run if it failed. i set $tries = 3 but i need to know if in job i catch exception is this will be considered
java.lang.NoClassDefFoundError: Failed resolution of: Landroid/app/job/JobInfo$TriggerContentUri;
I am using jobscheduler with addtriggercontenturi observing for any changes in the specific content uri. when i run the app i get the above
JobScheduler is not working in Xiaomi when app is not in background and auto-start option is disabled
I want to run a task in my app everyday, i am using jobscheduler for it and works fine in stock os, but when i try to run it in phones which has
How send pending notifications that are newer than 24 hours not old on restart?
Need to modify notifications so that if the notification job does not run for some reason, then when we start it up again later it only sends
Laravel: Can I fail 'well' in an handle() of a Job?
I know that, if a job throw an exception, the job fails, and will be retried automatically from queue worker in a few seconds. my question
Laravel: Check if new items added to db table and schedule a job to email user
I want to trigger an email when new rows are added to a table in my laravel application. however i want to add a buffer of sorts, so if 5 rows are
Ad
Laravel Job executed immediately in browser instead of running in a background queue
I'm new to laravel, and tried to create my first background task. used docs:
How to force laravel to wait until the end job?
My function in controller calling parallel and i create a job for use queue in laravel because parallel call causing the problem i create
Laravel delete job once it fails
I have a job that times out and once it fails it dispatches another one just like itself so that it can run infinitely and without overlapping.
*Job Class* and Illuminate\Bus\Queueable define the same property ($connection) in the composition of *Job Class*
Despite the documentation declaring
Daily job using Evernote's job library
I just wanna to fire local push notification at the specific time every day! i found in the documentation i can achieve this. below code:
How to pass the model to the Job/Queue for manipulating image
I have a photocontroller that scan a directory and foreach images create a new record in a database and dispatch a job to manipulate the image,
Android Job Scheduler only running jobs when app is open on Android M (6)
I am trying to add an android job scheduler to run jobs in the background on my xamarin forms app but it only seems to run when i have the app
how to make geofence work when app is not in foreground or it is killed?
I am working on an app where i have to implement a feature that when user enters a particular range or location with particular radius like in
ADB shell command to cancel and remove all jobs in my app
With improper enquing jobs, there can be easily mess, is there any adb command to remove all pending and active jobs (showed by adb shell
Oreo JobScheduler not working when new picture is taken by the camera
In android oreo broadcast receiver is not working for "android.hardware.action.new_picture" so i have to replace it with jobscheduler. now the
Android migrate background service to jobscheduler
We have a project which uses background service to retrieve real-time events from server. we use s websocket connection to retrieve data. but now
Ad
Location service not getting called from Oreo
I was starting locationservice with startservice() command, but since i learnt that oreo will not entertain this service
What performance gains Job Scheduler gives over startService()
From oreo, a service will not work if the app is not in foreground, but we can use jobschedular to perform background
Laravel 5.7 jobs queue not running async
I'm trying to use laravel 5.7 jobs queue to make some insertions/updates in my database and i problably made something wrong
How to start a scheduler every 5 minute, without any fail in Android 8(Oreo) - (tried Jobscheduler minimum limit is 15minutes and is not reliable)
How to run a service(to perform some task) exactly every 5 minute without any fail. i had a working code for the above requirement using
Using a listener after an android application is closed
I've just been reading about adding a service to my application, and since 7/8 there are now service restrictions to improve phone
Null object reference of jobFinisced
I'm building an app with a jobservice. this jobservice should to start a service every 1 minutes. this is my jobservice class:
Which is better way to re-schedule a job on boot completed?
Job can be rescheduled in 2 ways in android job scheduler. using .setpersisted(true) by scheduling again in boot_completed
Start service with JobScheduler on Android O
I'm trying to start a intentservice to register to a firebase cloud messaging on android o. on android o it's not allowed to start a
Firebase Job Dispatcher is not calling from Thread.setDefaultUncaughtExceptionHandler
I am creating a firebase job dispatcher for sending error crash report to the server. my service is not starting with dispatcher's mustschedule
Laravel Jobs are not asynchronous
I need a way to run some tasks asynchronously as the execution time varies between each task and i want to run the in an asynchronous way using
Laravel jobs (database) do not execute handle
I have a problem with laravel jobs. i configured laravel jobs to work with the database and it is working. when i execute a job, the entry
Ad
Unresolvable dependency when handling image uploads with laravel jobs
Each uploaded image creates four more images for different screens and then are transferred to a space on digital ocean. so it's very time
How do I run a limited number of background processes from laravel jobs?
I want to run ffmpeg processes from laravel jobs, but not too many all at once. i just can't seem to get it right. no matter what i set for
Laravel Jobs (Queue) do not worked
I have a problem with one of my jobs laravel. (this is the first time that i exepect this problem, i have anothers jobs who is working without
Laravel jobs being processed but not doing anything
I have checked multiple answers regarding this issue but didn't seem to have a proper solution. i'm firing a job, and it's working well in
Laravel jobs delay at exact time
I tried to specify the exact time to process the job task in laravel: $date = "2021-11-09 12:34:00"; $date =
How to update column in table if api results have been modified
My application: my application allows users to predict the scores of all upcoming soccer games for the next matchday. i get this
Laravel - Dispatching a job not working from a repository
When i try to dispatch a job from a controller it works. however when i do the same from a repository it gives me an
How to catch failed Laravel 5.7 Mail "later" queue job exception
I'm using: mail::later($when, $mailable);
Laravel chunk and delete
I have a large number of items (1m+) that i want to delete from a database, i fork a background job to take care of that, so that the user won't
Laravel create job on queue
I am facing an issue on laravel 5.7 with jobs and queue, the job is processing but is not entered in queue, i can't see also anything on
Laravel check if job extends a certain class
I know you can listen to job events using before, after and failing hooks:
Ad
Laravel - Execute queued job automatically
I have jobs to send several emails. in my controller i call the job: dispatch(new sendstartpatemail($data));
Laravel - Email queued doesn't work
I have an application that send several email, sometimes it returns me a timeout error. so i think the solution for that is sending the emails in
Laravel. Job Class not found on server (linux)
There is some problem with laravel and server: i created a job and tested it in localhost and it worked fine. then, i transfer it
How Test laravel successive jobs?
I'm using laravel 5.6 and should create feature test for some functionality. how i can test dispatching of 2 jobs, in case of the
Laravel Jobs Serialization of 'Closure' is not allowed
I would like to send data to a newsletterstore job. but it's failing with the following error. any suggestions? i also tried to remove the
Can I handle jobs timeout in Laravel?
I'm using laravel 5.5 and i have some jobs that are checking emails with imap. sometimes that can take too long, or lets say that user mistakes
How to push notification to android app, when new data is available at server?
What i did is : i have used jobscheduler. in every two hours, it checks weather there is a new data available or not in
Confusions about Laravel Queues
I am using laravel queues and i am using
Laravel 5.2 Job with delay fires instantly instead of waiting
I'm creating an application with the laravel 5.2 framework. in my application there is a job that i want to fire 2 days after the event.
how to broadcast event called by job class
In a laravel project i am trying to broadcast a event named "closed" via pusher. in my controller i am calling:
JobScheduler not repeating job
I'm using a jobscheduler.setperiodic() to repeat my jobintentservice. it works the first time but never repeats. running on android 7.0
Ad
How to specify a initial delay to an Android periodic job using JobScheduler?
I want to create a running job with a specific time and a given periodicity. for example, i want to schedule a job the second day of each month
Change value of parameters inside Laravel Job Class
I'm trying to send an email with a job class in laravel, the point is i need to keep track of the notificactions sent by mail. i have a table
job class is not accepting the argument send from controller in laravel
Error: missing argument 1 for appjobs
eorderdatabase::handle() is showing, i need to pass the variable from controller and i need not to use the model, so how i should
Checking passed object existence in Laravel delayed queue job
I believe if i pass an eloquent object to a delayed laravel job a "findorfail" method is called to "restore" the object and pass it to the controller of my job class.
Ad
Blog Categories
Ad