You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@camel.apache.org by GitBox <gi...@apache.org> on 2019/08/20 17:01:26 UTC

[GitHub] [camel-quarkus] ppalaga commented on issue #149: Salesforce integration test takes 30+ mins

ppalaga commented on issue #149: Salesforce integration test takes 30+ mins
URL: https://github.com/apache/camel-quarkus/issues/149#issuecomment-523104850
 
 
   My build was slowed down because I was limiting the memory via `-Dnative-image.xmx` (thanks @lburgazzoli for the hint). Removing the param made the runtimes comparable with Jenkins and other colleagues' machines.
   
   Further, switching from powersave to performance cpufreq governor made my salesforce build faster by another minute. This is what I did on Fedora:
   
   ```
   cat /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor
   # returns powersave multiple times
   
   sudo dnf install kernel-tools
   sudo systemctl enable cpupower.service
   sudo systemctl start cpupower.service
   
   cat /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor
   # now returns performance
   
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services