I have a requirement to run a chron job weekly on only a single instance of a java spring service running on multiple aws instances in a cluster. I have the freedom to spawn an instance of same service in a different cluster for handling the special load of the chron job. I am thinking of implementing a sqs listener module in the service which will get triggered once the specially configured lambda on new cluster publishes a sqs message. Since this lambda will only publish in the queue of new instance it should be possible to ensure that only one chron is working at most at a time (for processing data once) with dedicated cluster resources. If we want to keep app level code and config the same across all of the instances, is this approach good to achieve the chron job run schedule as specified ?
Running chron job on a single instance of spring service deployed on aws
149 Views Asked by Aditya Raman At
2
There are 2 best solutions below
0

It can also be achieved using Redis. Since, it works in single thread so even if multiple nodes request to read redis simultaneously only one thread will be able to do so and later can update so that other threads get ineligible to run cron logic. This can be achieved if we are using command like INCR to update and return value in one call. Eg. set :-(K, {0,timestamp}) (done by all nodes) incr K returned 1 to only 1 node rest will get 2,3...
Related Questions in SPRING
- How to assign dataset values in RDLC report header?
- VS 2005 to VS 2012: do I need a cast now?
- C# Application - Still looking for Oracle 12c DataAccess.dll even after complete uninstall
- ASP.NET Development Server Failed to start on port
- Visual C++ - the client of a library is unaware that the library has changed using pragma comment lib
- RDLC Report not showing Report name while export to any format in asp.net
- Digital signature tab not seen for executable developed in VC in VS2005 IDE using /keyfile and /LN as additional option in linker
- Django in VS2015
- SSIS Package failing because "script task is failing because the script is not precompiled"
- Visual C++ Static Multi-Threaded CF lacking in newer VS
Related Questions in AWS-LAMBDA
- How to assign dataset values in RDLC report header?
- VS 2005 to VS 2012: do I need a cast now?
- C# Application - Still looking for Oracle 12c DataAccess.dll even after complete uninstall
- ASP.NET Development Server Failed to start on port
- Visual C++ - the client of a library is unaware that the library has changed using pragma comment lib
- RDLC Report not showing Report name while export to any format in asp.net
- Digital signature tab not seen for executable developed in VC in VS2005 IDE using /keyfile and /LN as additional option in linker
- Django in VS2015
- SSIS Package failing because "script task is failing because the script is not precompiled"
- Visual C++ Static Multi-Threaded CF lacking in newer VS
Related Questions in DISTRIBUTED-SYSTEM
- How to assign dataset values in RDLC report header?
- VS 2005 to VS 2012: do I need a cast now?
- C# Application - Still looking for Oracle 12c DataAccess.dll even after complete uninstall
- ASP.NET Development Server Failed to start on port
- Visual C++ - the client of a library is unaware that the library has changed using pragma comment lib
- RDLC Report not showing Report name while export to any format in asp.net
- Digital signature tab not seen for executable developed in VC in VS2005 IDE using /keyfile and /LN as additional option in linker
- Django in VS2015
- SSIS Package failing because "script task is failing because the script is not precompiled"
- Visual C++ Static Multi-Threaded CF lacking in newer VS
Related Questions in CHRON
- How to assign dataset values in RDLC report header?
- VS 2005 to VS 2012: do I need a cast now?
- C# Application - Still looking for Oracle 12c DataAccess.dll even after complete uninstall
- ASP.NET Development Server Failed to start on port
- Visual C++ - the client of a library is unaware that the library has changed using pragma comment lib
- RDLC Report not showing Report name while export to any format in asp.net
- Digital signature tab not seen for executable developed in VC in VS2005 IDE using /keyfile and /LN as additional option in linker
- Django in VS2015
- SSIS Package failing because "script task is failing because the script is not precompiled"
- Visual C++ Static Multi-Threaded CF lacking in newer VS
Related Questions in SQSLISTENER
- How to assign dataset values in RDLC report header?
- VS 2005 to VS 2012: do I need a cast now?
- C# Application - Still looking for Oracle 12c DataAccess.dll even after complete uninstall
- ASP.NET Development Server Failed to start on port
- Visual C++ - the client of a library is unaware that the library has changed using pragma comment lib
- RDLC Report not showing Report name while export to any format in asp.net
- Digital signature tab not seen for executable developed in VC in VS2005 IDE using /keyfile and /LN as additional option in linker
- Django in VS2015
- SSIS Package failing because "script task is failing because the script is not precompiled"
- Visual C++ Static Multi-Threaded CF lacking in newer VS
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I’m a little bit “rusty” with was (used to work with a couple of years ago last time) but in general what you describe seems to be a good solution with the following caveats:
You should make sure that amazon SQS provides “exactly once” semantics because otherwise you might end up triggering the message twice in some cases. I know that do, but probably you should turn it on somehow and the price will slightly change, you should check
Make sure you handle the exceptions that might arise during the job execution in a proper manner, so that the job won’t be re-executed on another instance if the exception cause the sqs driver to interact with sqs server in a way that the message will get back to the sqs queue
What happens if the instance stops during the job execution - that might happen of course, what is the desired behavior? Rerun the job on another instance? Or maybe let it go and rely on the fact that the next time the job will run it will “cover up” for the previous period as well, this depends on the actual application logic
Your application will depend on “external scheduler” (implemented via lambda of course) so that you won’t have any cron triggering logic in the application itself. This is something just to be aware of, not something you can do with. This might be a good thing or not, depending on your environment. For example, if you want to test the job scheduling in CI or something you should have Lambda Deployed and being able to actually send the message to trigger the job execution. Also you should have an SQS available.
So again, I see that you can make it work in general, of course depending on your application architecture other solutions might also apply, as you may use Kubernetes Jobs, Redis, any form of distributed cache to co-ordinate on which node the job actually runs, many things.