You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@metron.apache.org by GitBox <gi...@apache.org> on 2019/05/22 13:14:42 UTC

[GitHub] [metron] nickwallen commented on issue #1417: METRON-2127: Update Maven repositories to https

nickwallen commented on issue #1417: METRON-2127: Update Maven repositories to https
URL: https://github.com/apache/metron/pull/1417#issuecomment-494796760
 
 
   > Looking at our build times, I'm actually concerned that if we kill the caches our builds won't complete. The integration tests take >45 minutes and it's very possible redownloading everything goes over our remaining time.
   
   To recap, our current Travis CI build is composed of multiple jobs. [Travis' time limit of 50 minutes is per job, rather than the total build time](https://docs.travis-ci.com/user/customizing-the-build/#build-timeouts).  While our total build time is on the order of 2.5 hours, it is only our integration-test job which is coming close to that 50 minute limit.
   
   We could try splitting our integration tests into multiple jobs.  Each of these would have the opportunity to run in parallel (given whatever resources Travis can allocate to us), but more importantly each one has its own 50 minute limit. For example...
   * Parser Integration Tests: 
       * `time mvn surefire:test@integration-tests -pl "metron-platform/metron-parsing/metron-parsing-storm, metron-platform/metron-parsing/metron-parsers, metron-platform/metron-parsing/metron-parsers-common/"`
   * Enrichment Integration Tests
       * `time mvn surefire:test@integration-tests -pl "metron-platform/metron-enrichment/metron-enrichment-common/,metron-platform/metron-enrichment/metron-enrichment-storm"`
   * etc
   
   We would just need to determine how to logically split the tests up.  If this sounds reasonable, I've already got a start on a POC.  I can also take this as a separate discuss thread, if appropriate.

----------------------------------------------------------------
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