FireCloud Orchestration Service
- URL: https://firecloud-orchestration.dsde-dev.broadinstitute.org/
- Github Repository: https://github.com/broadinstitute/firecloud-orchestration/
- IntelliJ IDEA can be downloaded here : https://www.jetbrains.com/idea/ . It is an 'Intelligent Java IDE'
- Configure the SBT plugin. "IntelliJ IDEA" -> "Preferences" -> "Plugins" can be used to do so (download, install)
- After running IntelliJ, open this source directory with File -> Open
- In the Import Project dialog, check "Create directories for empty content roots automatically" and set your Project SDK to 17
- Docker Desktop (4GB+, 8GB recommended)
- Broad internal internet connection (or VPN, non-split recommended)
- Render the local configuration files. From the root of this repo, run:
./local-dev/bin/render
- The
/etc/hosts
file on your machine must contain this entry (for calling Orch endpoints):
127.0.0.1 local.dsde-dev.broadinstitute.org
After satisfying the above requirements, execute the following command from the root of the firecloud-orchestration repo:
./config/docker-rsync-local-orch.sh
If Orch successfully starts up, you can now access the Orch Swagger page: https://local.dsde-dev.broadinstitute.org:10443/
- We push new features to a feature-branch and make pull requests against develop.
Run the assembly task to build a fat jar:
sbt
> assembly
For development, you can have sbt recompile and restart the server whenever a file changes on disk:
sbt
> ~ reStart
sbt test
Start an Elasticsearch server in a docker container:
./docker/run-es.sh start
Run integration tests. You can re-run tests multiple times against the same running Elasticsearch container.
sbt it:test
Stop the Elasticsearch server once you are done with your tests:
./docker/run-es.sh stop
If you find that ./docker/run-es.sh start
fails silently, fails mysteriously, or fails while attempting
to pre-populate data, you may be running into RAM limits where the Elasticsearh image cannot get enough memory
to run. Try increasing Docker's RAM allocation.
To build the orch jar with docker, and then build the orch docker image, run:
./script/build.sh jar -d build
Remote debugging is enabled for firecloud-orchestration on port 5051. In order to debug in Intellij:
-
first modify the
build.sbt
file as follows:- Comment out the
Revolver.enableDebugging
line - Replace the
reStart / javaOptions
line withreStart / javaOptions ++= sys.env.getOrElse("JAVA_OPTS", "") .concat(" -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5051") .split(" ") .toList
That section of the
build.sbt
file should now look like this://Revolver.enableDebugging(port = 5051, suspend = false) // When JAVA_OPTS are specified in the environment, they are usually meant for the application // itself rather than sbt, but they are not passed by default to the application, which is a forked // process. This passes them through to the "re-start" command, which is probably what a developer // would normally expect. reStart / javaOptions ++= sys.env.getOrElse("JAVA_OPTS", "") .concat(" -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5051") .split(" ") .toList
- Comment out the
-
In Intellij, go to Run -> Edit Configurations
-
Choose "Add new Configuration" (the + sign)
-
Select "Remote JVM Debug" and set the following configuration:
- Debugger mode: Attach to remote JVM
- Host: localhost
- Port: 5051
-
Run the local firecloud docker with
./config/docker-rsync-local-orch.sh
from the root directory -
In Intellij, choose your debug configuration and run 'debug'.