I have the following scenario:
Front-end -> Cloud Run Service on serverless mode.
Based on the user action, it will call a long running and parameterized process, which can take more than one hour to complete.
Important: I CAN’T have two of this process running at same time, for data conflict reasons. I have to enqueue these processes.
What is the best approach to do that on GCP?