I have a Google Attendance form which triggers an apps script through spreadsheet connected to the form. My issue is that when around 1200 student will fill the form most probably at the same time, will the script overlap the data?? I saw google developer post where they have mentioned to lock the script for 30 seconds (lock.waitLock(30000); lock.releaseLock();)
will it be enough to use the suggested method to prevent script from overlapping data of around 1200 students?
I cant test the script in live environment that is why I have to ask the question.