I have one transition with 22 post functions:
- Copy values to ephemerals
- Parsing text
- Set values as a function of other fields
- Math calculations
It takes 20 seconds to go to the next status...
My App server is a Linux Red Hat with 4GB, 4 CPUs.
My DB is a SQLServer R2 2008, 16 GB and 4 CPUs
The other transitions takes like 4 seconds, which is a very good response time for us.
Yes. Post function slows down transition time. You can have the experiment - try to add something like Thread.sleep(10000) - and your transition will be delayed for 10 seconds.
I would recommend to you to recreate your business logic to run those routines in the separate thread. So transition will just start the method and it will continue instantly. Please note that the changes will be done only after the transition execution and you cannot control the exact time - so you should handle multithreading issues by yourself.
I have strong idea that only small set of your postfunctions take a lot of time. I would recommend to include into your plugin one additional postfunction that will just log the time and put it before and after each custom postfunction - so you will get complete information on the bottlenecks.
Please note that undepending on the amount of processor cores - your postfunctions will be executed subsequently one by one - so without moving the logic into separate thread you will not speed up the process itself
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.