Questions tagged as 'scheduler'

1
answer

Dynamic task scheduling with spring batch + quartz

I have a project in Spring Batch + quartz, which loads a file and then processes the file data. Only I wanted to implement a view with a form where I had the option to choose the start time and end time and the days where I could run. Can I do t...
asked by 11.02.2016 / 00:13
2
answers

What is the maximum number of threads supported by Java EE?

I am analyzing how to rewrite the architecture of a Java program would like to know how many threads the scheduler supports? or how can I infer this amount based on the processing power of my PC / Server / Cluster?     
asked by 08.09.2015 / 03:02
1
answer

Automate tasks with Laravel 5

Good morning, people. I need to create some tasks on my system that run automatically (such as a Cron Job). Example: Every day the system sends an email to the customers of the system with the amount of their charges, and the ones that are cl...
asked by 09.03.2015 / 14:49
1
answer

MySQL Backup with Event Scheduler

I would like some tips on how to back up a mysql database with Event Scheduler. I just got in my searches, find event to back individual tables. I would like to be able to backup the whole database, can anyone help me? (this code is just...
asked by 05.01.2015 / 14:07
1
answer

Difference between scheduleAtFixedRate and schedule in the ScheduledExecutorService class

What is the difference between scheduleAtFixedRate and schedule ? I'm developing an app on Android that I want to have a delay of 50 minutes before starting an action and repeat that same action in the next 50 minutes, but I'd li...
asked by 12.02.2015 / 16:32
1
answer

Automatic reading routine between 2 databases in C #

I need to create a C # routine that reads 2 databases and feeds the read data to another database. The development part of the system itself I can do without problems, but I do not know what kind of project to develop. This routine will run week...
asked by 19.02.2014 / 14:03
1
answer

Run a Laravel Schedule every minute?

I'm using Laravel 5.3 and would like to run a task every minute, within the task I'll put some checks, the question is to make it run every minute. I did the following in App \ Kernel: protected function schedule(Schedule $schedule...
asked by 23.11.2016 / 18:07
2
answers

Java ScheduleExpression

I am developing a Nobreaks Monitoring Software, I am using ScheduleExpression that runs every 5 seconds, it follows code: @PostConstruct public void agendarMonitoramento(){ System.out.println("=====================================...
asked by 17.11.2014 / 13:24
2
answers

Java Spring Extender @Scheduled to read a file

I have tasks to do as soon as I upload my application, they are executed repeatedly like this: @Scheduled(fixedRate = 10000) public void scheduleFixedRateTask() { System.out.println("Fixed rate task - " + System.currentTimeMillis...
asked by 02.07.2016 / 14:35
1
answer

How to run schedule: cron cron in Windows

I created a cron that should check every minute if the value of the end date is smaller than the current one ... if yes it should update the status field of this table. class SetStatus extends Command { protected $signature = 'SetStatus:cron'...
asked by 28.12.2017 / 02:26