I'm trying to run a script on a Google Sheet that updates the sheets after pulling data from a MySQL DB. It runs a trigger at the end, but I think it's re-starting the trigger every time it runs, resulting in multiple timeBased triggers running concurrently. I don't know Java, but is there a way to check if the trigger is already running and bypass if it is?
Like:
if (trigger_running) {continue} else {runTrigger}?
Here's the basics of the function & trigger:
function readData() {
//open connection
//fetch data
//update sheet(s)
//close connection
}
/* Schedule run/update */
ScriptApp.newTrigger('readData')
.timeBased()
.everyMinutes(5)
.create();

