Hi. Starting to get dirty hands on code to impleme...
# general
f
Hi. Starting to get dirty hands on code to implement my GDPR purge process. I’m a bit struggling with the build time and the no way to test. Is there any way to get a faster build to test it ? I’ve used the folowing maven command
mvn install package -DskipTests -Pbin-dist
and it take more than 20 minutes to build 😕 Anyway to get faster ?
k
we should have a profile to skip building all the plugins
f
I’ve first been just building pinot-minion (helps a bit 🙂 ) but then It’s not included in the jar with dependency 😕
n
you could try adding
-T 4
. Are you incrementally testing with the build everytime? there are integration tests and quickstarts that can help you test in your IDE quickly without doing the mvn build
f
Yes incrementally testing :/ I will try with the ide quickstart.