To answer your other questions I missed earlier. Digging a bit deeper into this.
mip-service-container contains a db-schema artifact. db-schema essentially inspects the DB schema and autogenerates the java classes and packages everything up. That project seems to work just fine. Then when I try to build mip-service container (both of projects are naturally on the same version of jooq) it gives me the excessively long compilation times. The mip-service container essentially defines the core of our services, brings in some spring magic, jersey server and such. guava, apache commons, and a bunch of open source libraries that are fairly typical. as far as where it freezes, it's a the compilation step as seen below. That's the last line I see 'till it catches up again. [INFO] --- maven-compiler-plugin:2.5.1:compile (default-compile) @ mip-service-container --- [INFO] Compiling 44 source files to /home/user/projects/work/neuak/mip-service-container/target/classes On Sun, Dec 6, 2015 at 11:42 PM, Lukas Eder <[email protected]> wrote: > Hi Samir, > > That is indeed very weird, and the first time I hear this kind of issue. > 1:30 minutes is certainly far from an acceptable compilation time, even for > larger projects. How do you build your project (Maven version, IDE version, > Java version, pom.xml config)? And what part of building takes so long > (e.g. is code generation involved)? Does this happen both when building on > the command line (mvn clean install) *and* in your IDE? > > Best, > Lukas > > 2015-12-06 20:59 GMT+01:00 Samir Faci <[email protected]>: > >> I'm experiencing a very odd behavior when trying to upgrade the jooq >> version in a small project, and I was wondering if anyone could provide any >> insight. >> >> I am currently using Jooq verion 3.5.1 without any problems and I tried >> to update to the latest 3.7.1 (seemed worthwhile lots of great features >> listed). >> >> When I bump up the version maven fails to return on the compilation >> step. It takes an abnormally long time to complete. >> >> >> For example: >> My project has 66 java files, there aren't really any class files that >> are 10K lines of code or anything out there. >> >> - with 3.7.1, Total time: 01:31 min >> - with 3.5.1 Total time: 2.144 s >> >> This behavior has started with Jooq 3.6.0, I can bump up the version all >> the way up to 3.5.4 and the project is still responsive, but when I go to >> 3.6 it completely unreasonable. >> >> I'm trying to pull jooq into a 'core' component that will be consumed by >> a larger project. So if the core just went from 3 seconds to 1.5 minutes I >> can't imagine being able to make this upgrade as it stands. >> >> Does anyone have any insights on what could be causing this, or any >> assistance in helping me debug this. As I said the only change I'm making >> is the version number on jooq, so I have a feeling something >> between what my project is using (lib wise), JVM version and Jooq itself >> is causing this, but I'd love some ideas on how to resolve this. >> >> >> >> -- >> Thank you >> Samir Faci >> >> -- >> You received this message because you are subscribed to the Google Groups >> "jOOQ User Group" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected]. >> For more options, visit https://groups.google.com/d/optout. >> > > -- > You received this message because you are subscribed to the Google Groups > "jOOQ User Group" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- Thank you Samir Faci -- You received this message because you are subscribed to the Google Groups "jOOQ User Group" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
