skoppu22 commented on code in PR #183:
URL:
https://github.com/apache/cassandra-analytics/pull/183#discussion_r2959435718
##########
cassandra-analytics-core/build.gradle:
##########
@@ -217,8 +217,9 @@ tasks.register('testSequential', Test) {
test {
systemProperty "cassandra.analytics.bridges.sstable_format",
System.getProperty("cassandra.analytics.bridges.sstable_format", "big")
minHeapSize = '1024m'
- maxHeapSize = '3072m'
- maxParallelForks = Math.max(Runtime.runtime.availableProcessors() * 2, 8)
+ maxHeapSize = System.getenv('CORE_TEST_MAX_HEAP_SIZE') ?: '3072m'
+ maxParallelForks = System.getenv('CORE_MAX_PARALLEL_FORKS')?.toInteger()
+ ?: Math.max(Runtime.runtime.availableProcessors() * 2,
8)
Review Comment:
As I mentioned above, pipelines broken on trunk, we don't know which test is
caused that, gradlew check is getting killed on CI
##########
cassandra-analytics-core/build.gradle:
##########
@@ -217,8 +217,9 @@ tasks.register('testSequential', Test) {
test {
systemProperty "cassandra.analytics.bridges.sstable_format",
System.getProperty("cassandra.analytics.bridges.sstable_format", "big")
minHeapSize = '1024m'
- maxHeapSize = '3072m'
- maxParallelForks = Math.max(Runtime.runtime.availableProcessors() * 2, 8)
+ maxHeapSize = System.getenv('CORE_TEST_MAX_HEAP_SIZE') ?: '3072m'
+ maxParallelForks = System.getenv('CORE_MAX_PARALLEL_FORKS')?.toInteger()
+ ?: Math.max(Runtime.runtime.availableProcessors() * 2,
8)
Review Comment:
As I mentioned above, pipelines broken on trunk, we don't know which test
caused that, gradlew check is getting killed on CI
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]