MeteoBridge has different schedules for every hours (Every Hour or Every full hour)
MeteoHub has one type defined for the hours, How I configure a upload task that runs every full hour (10:00, 11:00 12:00 hours) instead of every hour based on the time of configuration.
Schedule
Moderator: Mattk
Re: Schedule
As you are using the Leuven-Template, you are already uploading a file every day at 23:58 using the cron/ schedule setting 58 23 * * *
If you want to upload a file every hour at 00 minutes you should use 00 * * * * which is in Unix terms every day every hour at 00 minutes.
If possible i should use 01 minutes to give your Meteohub some time to do its other hourly work also.
Wim
If you want to upload a file every hour at 00 minutes you should use 00 * * * * which is in Unix terms every day every hour at 00 minutes.
If possible i should use 01 minutes to give your Meteohub some time to do its other hourly work also.
Wim
- assenzuid
- Expert Boarder
- Posts: 94
- Joined: Sat May 03, 2014 10:15 pm
- Location: The Netherlands
- Contact:
Re: Schedule
Thanks,
I tried allready 0 */1 * * * (which is used in crontab).
I will try 00 * * * * and see if it's has some in effect on my MeteoHub performances.
Thanks
I tried allready 0 */1 * * * (which is used in crontab).
I will try 00 * * * * and see if it's has some in effect on my MeteoHub performances.
Thanks
Re: Schedule
It should be 00 with four times a space and a star.assenzuid wrote:Thanks,
I tried allready 0 */1 * * * (which is used in crontab).
I will try 00 * * * * and see if it's has some in effect on my MeteoHub performances.
Thanks
Not three as there are always 5 entries needed.
Wim