I'm a newb to node red, but I'm an IT professional that has a background in LAMPP servers and a full stack PHP developer that has been developing things since 2004 in PHP, so I'm not sure I qualify as a newb in general.
Here's what I want to do with node-red, that I think should be possible but I just need a nudge in the right direction:
Say every 5 minutes, I want to query a Postgres database for new records in a specific table that meet specific criteria, and then manipulate and insert that data into a MariaDB (MySQL) database in a destination table.
I can handle the technical details of the above without any help. What I'm less certain about is how to call this flow once it has been built and deployed on my node-red dev server. Ideally I would think this would be a cron job like this:
Simpliest solution: you can set an inject node to start every 5 minutes.
If you are familiar with Linux and cron, the above cronplus node may be an alternative, though.
I use cron node to trigger things at intervals, for example every 1 minute or 5 minute. It hits the minute mark on the spot (at 0 seconds), unlike normal inject node. The only scheduling vanilla inject handles easier is actually to trigger at a specific time.