Hello, I’d like to ask, what is the best approach to patching camunda. During performance tests we found some hot db queries which can be optimized with quite good effect. We have found also some issues.
Now, let’s say, we want to patch camunda’s Authorization.xml mybatis mapping. How should we proceed to do the customization ourselves, as we don’t want/can’t wait till our pull request would be released in some official version.
We could of course take the file, alter it and put higher on the classpath, but that is a little bit cumbersome with multiple camunda applications which need the same patch together with spring boot, where is very limited possibility to influence classloaders order of loaded jars.
Then there is the other approach, to fork the camunda source codes, store it somewhere, I am not sure if we should branch in official github repository or clone the repository, push it to our VCS and branch it there.
Are there any other possibilites?