Skip to content

Commit

Permalink
Add Required Properties for Submit and Post-Processor
Browse files Browse the repository at this point in the history
  • Loading branch information
AvocadoMoon committed Oct 9, 2024
1 parent 9e863fe commit c3b6977
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
3 changes: 3 additions & 0 deletions docker/build/Dockerfile-submit-dev
Original file line number Diff line number Diff line change
Expand Up @@ -170,4 +170,7 @@ ENTRYPOINT java \
-Dvcell.simdatadir.archive.external=${simdatadir_archive_external} \
-Dvcell.ssh.cmd.cmdtimeout=${vcell_ssh_cmd_cmdtimeout} \
-Dvcell.ssh.cmd.restoretimeout=${vcell_ssh_cmd_restoretimeout} \
-Dvcell.htc.memory.min.mb=${htcMinMemoryMB} \
-Dvcell.htc.memory.max.mb=${htcMaxMemoryMB} \
-Dvcell.htc.memory.pu.floor.mb=${htcPowerUserMemoryFloorMB} \
-cp "./lib/*" cbit.vcell.message.server.batch.sim.HtcSimulationWorker
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,10 @@ public static void main(String[] args) throws IOException {
PropertyLoader.slurm_qos,
PropertyLoader.slurm_partition_pu,
PropertyLoader.slurm_reservation_pu,
PropertyLoader.slurm_qos_pu
PropertyLoader.slurm_qos_pu,
PropertyLoader.htcMinMemoryMB,
PropertyLoader.htcMaxMemoryMB,
PropertyLoader.htcPowerUserMemoryFloorMB
};


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,11 @@ private static Exception runPostprocessingCommands(String filename, Logger lg) {
}
private static final String POST_PROCESSOR_PROPERTIES[] = {
PropertyLoader.primarySimDataDirInternalProperty,
PropertyLoader.secondarySimDataDirInternalProperty
PropertyLoader.secondarySimDataDirInternalProperty,
PropertyLoader.mongodbDatabase,
PropertyLoader.jmsSimHostInternal,
PropertyLoader.jmsSimPortInternal,
PropertyLoader.jmsBlobMessageUseMongo
};

}

0 comments on commit c3b6977

Please sign in to comment.