Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions pipelines/controller/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,12 @@

<!-- This is to make it easier to hot-swap static content, i.e., to make
testing static content changes in a running server easier. -->
<dependency>

<!-- dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
</dependency -->

<!-- Pipeline dependencies for execution and monitoring -->
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ private void validateAndCreateConfFile(Path filePath, DataProperties dataPropert
}

private void validateDirectMemoryMax(long networkMemoryInBytes, long managedMemoryInBytes) {
/*
long totalDirectMemory = networkMemoryInBytes + managedMemoryInBytes;
long totalDirectMemoryOfAllParallelPipelines =
totalDirectMemory * EtlUtils.NO_OF_PARALLEL_PIPELINES;
Expand All @@ -172,6 +173,7 @@ private void validateDirectMemoryMax(long networkMemoryInBytes, long managedMemo
logger.error(errorMessage);
throw new IllegalConfigurationException(errorMessage);
}
*/
}

private long calculateNetworkMemoryMax(DataProperties dataProperties) {
Expand Down
Loading