diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index d668daf..8482b7c 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,28 +1,30 @@ -# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.217.4/containers/java/.devcontainer/base.Dockerfile +# Install openJDK version 21 (includes maven, gradle, and node) +FROM cimg/openjdk:21.0.2-node -# [Choice] Java version (use -bullseye variants on local arm64/Apple Silicon): 11, 17, 11-bullseye, 17-bullseye, 11-buster, 17-buster -ARG VARIANT="17" -FROM mcr.microsoft.com/vscode/devcontainers/java:0-${VARIANT} +# set user to root to allow apt-get to run +USER root -# [Option] Install Maven -ARG INSTALL_MAVEN="true" -ARG MAVEN_VERSION="3.6.3" -# [Option] Install Gradle -ARG INSTALL_GRADLE="false" -ARG GRADLE_VERSION="" -RUN if [ "${INSTALL_MAVEN}" = "true" ]; then su vscode -c "umask 0002 && . /usr/local/sdkman/bin/sdkman-init.sh && sdk install maven \"${MAVEN_VERSION}\""; fi \ - && if [ "${INSTALL_GRADLE}" = "true" ]; then su vscode -c "umask 0002 && . /usr/local/sdkman/bin/sdkman-init.sh && sdk install gradle \"${GRADLE_VERSION}\""; fi +ARG USERNAME=vscode +ARG USER_UID=1000 +ARG USER_GID=$USER_UID -# [Choice] Node.js version: none, lts/*, 16, 14, 12, 10 -ARG NODE_VERSION="none" -RUN if [ "${NODE_VERSION}" != "none" ]; then su vscode -c "umask 0002 && . /usr/local/share/nvm/nvm.sh && nvm install ${NODE_VERSION} 2>&1"; fi - -# [Optional] Uncomment this section to install additional OS packages. -# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ -# && apt-get -y install --no-install-recommends +# Create non-root user vscode with sudo support +ENV DEBIAN_FRONTEND=noninteractive +RUN apt-get update \ + # + # Create a non-root user to use if preferred - see https://aka.ms/vscode-remote/containers/non-root-user. + && groupadd --gid $USER_GID $USERNAME \ + && useradd -s /bin/bash --uid $USER_UID --gid $USER_GID -m $USERNAME \ + && apt-get install -y sudo \ + && echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME\ + && chmod 0440 /etc/sudoers.d/$USERNAME # [Optional] Uncomment this line to install global node packages. -# RUN su vscode -c "source /usr/local/share/nvm/nvm.sh && npm install -g " 2>&1 +# RUN npm install -g # install kafkacat for testing purposes -RUN apt-get update && apt-get install -y kafkacat \ No newline at end of file +RUN apt-get update && apt-get install -y kafkacat + +# [Optional] Uncomment this section to install additional OS packages. +# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ +# && apt-get -y install --no-install-recommends \ No newline at end of file diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 7356ea1..d36b057 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -4,16 +4,6 @@ "name": "Java", "build": { "dockerfile": "Dockerfile", - "args": { - // Update the VARIANT arg to pick a Java version: 11, 17 - // Append -bullseye or -buster to pin to an OS version. - // Use the -bullseye variants on local arm64/Apple Silicon. - "VARIANT": "11", - // Options - "INSTALL_MAVEN": "true", - "INSTALL_GRADLE": "false", - "NODE_VERSION": "none" - } }, // Set *default* container specific settings.json values on container create. @@ -26,6 +16,11 @@ "vscjava.vscode-java-pack" ], + + "containerEnv": { + "SHELL": "/bin/bash" + }, + // Use 'forwardPorts' to make a list of ports inside the container available locally. // "forwardPorts": [], diff --git a/.github/workflows/dockerhub.yml b/.github/workflows/dockerhub.yml index c7c00ea..8089e18 100644 --- a/.github/workflows/dockerhub.yml +++ b/.github/workflows/dockerhub.yml @@ -20,8 +20,13 @@ jobs: with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} + + - name: Replcae Docker tag + id: set_tag + run: echo "TAG=$(echo ${GITHUB_REF##*/} | sed 's/\//-/g')" >> $GITHUB_ENV + - name: Build uses: docker/build-push-action@v5 with: push: true - tags: usdotjpoode/jpo-sdw-depositor:${{ github.ref_name }} + tags: usdotjpoode/jpo-sdw-depositor:${{ env.TAG }} diff --git a/Dockerfile b/Dockerfile index d5ba77b..65c6338 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,8 +14,8 @@ RUN mvn clean package -DskipTests FROM eclipse-temurin:21-jre-alpine WORKDIR /home -COPY --from=builder /home/target/jpo-sdw-depositor-1.6.0-SNAPSHOT.jar /home +COPY --from=builder /home/target/jpo-sdw-depositor-1.7.0-SNAPSHOT.jar /home ENTRYPOINT ["java", \ "-jar", \ - "/home/jpo-sdw-depositor-1.6.0-SNAPSHOT.jar"] + "/home/jpo-sdw-depositor-1.7.0-SNAPSHOT.jar"] diff --git a/README.md b/README.md index fada90d..3903eeb 100644 --- a/README.md +++ b/README.md @@ -1,95 +1,116 @@ -# jpo-sdw-depositor [![Build Status](https://travis-ci.org/usdot-jpo-ode/jpo-sdw-depositor.svg?branch=dev)](https://travis-ci.org/usdot-jpo-ode/jpo-sdw-depositor) [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=usdot.jpo.ode%3Ajpo-sdw-depositor&metric=alert_status)](https://sonarcloud.io/dashboard?id=usdot.jpo.ode%3Ajpo-sdw-depositor) +# jpo-sdw-depositor -Subscribes to a Kafka topic and deposits messages to the Situation Data Warehouse (SDW). +Subscribes to a Kafka topic and deposits messages to the [Situational Data Exchange (SDX)](https://sdx.trihydro.com/). -# Overview - -This is a submodule of the [jpo-ode](https://github.com/usdot-jpo-ode/jpo-ode) repository. It subscribes to a Kafka topic and listens for incoming messages. Upon message arrival, this application deposits it over REST to the SDX. +## Overview +This is a submodule of the [jpo-ode](https://github.com/usdot-jpo-ode/jpo-ode) repository. It subscribes to a Kafka topic and listens for incoming messages. Upon message arrival, this application deposits the message to the SDX via [REST API](https://sdx-service.trihydro.com/index.html). ## Release Notes -The current version and release history of the Jpo-sdw-depositor: [Jpo-sdw-depositor Release Notes]() +The current version and release history of the jpo-sdw-depositor project: [jpo-sdw-depositor Release Notes]() -# Installation and Operation +## Installation and Operation ### Requirements -- Docker +- [Kafka](https://kafka.apache.org/) +- [Docker](https://www.docker.com/) + +### Option 1: As ODE submodule +The jpo-sdw-depositor is intended to be run as a submodule of the [jpo-ode](https://github.com/usdot-jpo-ode/jpo-ode) project. The ODE project repository includes a docker-compose file that will run the depositor in conjunction with the ODE by default. The same environment variables mentioned in the [Configuration Reference](#configuration-reference) below will need to be set in the `.env` file in the root of the ODE project. -### Option 1: Standalone +### Option 2: Standalone (Depositor Only) with Remote Kafka -Use this option when you want to run the depositor by itself. This will listen to any Kafka topic you specify and deposit messages to the Situation Data Exchange. +Use this option when you want to run the depositor by itself and you already have a Kafka cluster running remotely. This option will run the depositor in a Docker container and connect to a remote Kafka cluster to listen for messages. The depositor will then deposit these messages to the SDX. -1. Configure your desired properties. See **Configuration Reference** at the bottom of this README. -2. Rename your `sample.env` file to `.env` if you haven't already done so -3. Execute the `run.sh` script OR execute these commands: +1. Rename your `sample.env` file to `.env`. This file contains the environment variables that the application will use to connect to Kafka and the SDX. +1. Configure your environment variables in the `.env` file. See the [Configuration Reference](#configuration-reference) below. +1. Execute the `run.sh` script OR execute these commands: ``` -docker build -t jpo-sdw-depositor . +docker build -t jpo-sdw-depositor . docker run --rm --env-file .env jpo-sdw-depositor:latest ``` +### Option 3: With Local Kafka +Use this option when you want to run the depositor and you want to run a local Kafka cluster alongside it. This option will run the depositor and a Kafka cluster in Docker containers. The depositor will listen for messages on the local Kafka cluster and deposit them to the SDX. -### Option 2: As ODE submodule +1. Rename your `sample.env` file to `.env`. This file contains the environment variables that the application will use to connect to Kafka and the SDX. +1. Configure your environment variables in the `.env` file. See the [Configuration Reference](#configuration-reference) below. +1. Run the following command: -** IN PROGRESS! Further instructions pending ODE compatibility. ** +``` +docker compose up --build +``` -Use this option when you want to run this module in conjuction with the [jpo-ode](https://github.com/usdot-jpo-ode/jpo-ode). The only action you must take here is to set the configuration properties in the env file. See the bottom of this README for a reference. +### Option 4: With Confluent Cloud Kafka +Use this option when you want to run the depositor and you want to connect to a Kafka cluster hosted by Confluent Cloud. This option will run the depositor in a Docker container and connect to a Kafka cluster hosted by Confluent Cloud to listen for messages. The depositor will then deposit these messages to the SDX. +1. Rename your `sample.env` file to `.env`. This file contains the environment variables that the application will use to connect to Kafka and the SDX. +1. Configure your environment variables in the `.env` file. See the [Configuration Reference](#configuration-reference) below. +1. Run the following command: +``` +docker compose -f docker-compose-confluent-cloud.yml up --build +``` +See the [Confluent Cloud Integration](#confluent-cloud-integration) section for more information. -# Configuration Reference +## Configuration Reference **SOME OF THESE PROPERTIES ARE SENSITIVE. DO NOT PUBLISH THEM TO VERSION CONTROL** -You may configure these values in `jpo-sdw-depositor/src/main/resources/application.properties` or by editing them in the `sample.env` file. +It is recommended to use environment variables to configure the application, rather than hardcoding values in the `application.properties` file. This allows for easier configuration management and better security. + +Alternatively, you can configure the application by editing the [application.properties](src\main\resources\application.properties) file. -**IMPORTANT** When using the env file method, you must You must rename or duplicate the `sample.env` file to `.env` +**IMPORTANT** When using the env file method, you must You must rename or duplicate the `sample.env` file to `.env` and fill in the values for the environment variables. The `.env` file is used to pass environment variables to the Docker container. | Value in `application.properties` | Value as env var (in sample.env) | Description | Example Value | |-----------------------------------|----------------------------------|-------------------------------------------------------|-----------------------------| -| sdw.kafkaBrokers | DOCKER_HOST_IP | Host IP ([instructions](https://github.com/usdot-jpo-ode/jpo-ode/wiki/Docker-management#obtaining-docker_host_ip)) | 10.1.2.3 || sdw.groupId | SDW_GROUP_ID | The Kafka group id to be used for message consumption | usdot.jpo.sdw | | -| sdw.kafkaPort | SDW_KAFKA_PORT | Port of the Kafka instance | 9092 | -| sdw.subscriptionTopic | SDW_SUBSCRIPTION_TOPIC | Kafka topic to listen to | topic.J2735TimBroadcastJson | +| sdw.kafkaBrokers | DOCKER_HOST_IP | Host IP ([instructions](https://github.com/usdot-jpo-ode/jpo-ode/wiki/Docker-management#obtaining-docker_host_ip)) | 10.1.2.3 | +| sdw.subscriptionTopics | SDW_SUBSCRIPTION_TOPIC | Kafka topic to listen to | topic.J2735TimBroadcastJson | | sdw.destinationUrl | SDW_DESTINATION_URL | Full path of the SDX server address | 127.0.0.1 | | sdw.apikey | SDW_API_KEY | SDX API Key (generated by [SDX](https://sdx.trihydro.com)) | (n/a) | sdw.emailList | SDW_EMAIL_LIST | Comma-delimited email list to send error emails to | error@email.com,test@test.com | sdw.emailFrom | SDW_EMAIL_FROM | Support email to send from | error@email.com +N/A | KAFKA_TYPE | Type of Kafka connection to be used. Must be set to CONFLUENT, otherwise the application will default to a non-Confluent connection | CONFLUENT +N/A | CONFLUENT_KEY | Confluent Cloud API Key | (n/a) +N/A | CONFLUENT_SECRET | Confluent Cloud API Secret | (n/a) -# Confluent Cloud Integration +## Unit Testing +The unit tests can be run by executing the following command from the root directory of the project: +``` +mvn test +``` + +It should be noted that Maven & Java are required to run the unit tests. If you do not have Maven or Java installed, you can reopen the project in the provided dev container and run the tests from there. + +## Object Data Consumption +The KafkaConsumerRestDepositor will accept any string as input to be passed into the SDX. If provided a JSON object, the tokens of "encodedMsg" and "estimatedRemovalDate" will be passed through directly to the SDX in the form of the following: +> {depositRequests:[{"encodeType": STRING ,"encodedMsg": STRING, "estimatedRemovalDate": STRING}]} + +If provided a string of non-json form, the value of "encodedMsg" will inherit the passed value and information will be passed to the SDX in the form of the following: +> {depositRequests:[{"encodeType": STRING ,"encodedMsg": STRING}]} + +## Confluent Cloud Integration Rather than using a local kafka instance, this project can utilize an instance of kafka hosted by Confluent Cloud via SASL. -## Environment variables -### Purpose & Usage +### Environment variables +#### Purpose & Usage - The DOCKER_HOST_IP environment variable is used to communicate with the bootstrap server that the instance of Kafka is running on. - The KAFKA_TYPE environment variable specifies what type of kafka connection will be attempted and is used to check if Confluent should be utilized. - The CONFLUENT_KEY and CONFLUENT_SECRET environment variables are used to authenticate with the bootstrap server. -### Values +#### Values - DOCKER_HOST_IP must be set to the bootstrap server address (excluding the port) -- KAFKA_TYPE must be set to "CONFLUENT" +- KAFKA_TYPE must be set to "CONFLUENT", otherwise the application will default to a non-Confluent connection - CONFLUENT_KEY must be set to the API key being utilized for CC - CONFLUENT_SECRET must be set to the API secret being utilized for CC -## CC Docker Compose File +### CC Docker Compose File There is a provided docker-compose file (docker-compose-confluent-cloud.yml) that passes the above environment variables into the container that gets created. Further, this file doesn't spin up a local kafka instance since it is not required. -## Note -This has only been tested with Confluent Cloud but technically all SASL authenticated Kafka brokers can be reached using this method. - -# Unit Testing -The unit tests can be run by executing the following command from the root directory of the project: -``` -mvn test -``` - -It should be noted that Maven & Java are required to run the unit tests. If you do not have Maven or Java installed, you can reopen the project in the provided dev container and run the tests from there. - -# Object data consumption -The KafkaConsumerRestDepositor will accept any string as input to be passed into the SDW. If provided a JSON object, the tokens of "encodedMsg" and "estimatedRemovalDate" will be passed through directly to the SDW in the form of the following: -{depositRequests:[{"encodeType": STRING ,"encodedMsg": STRING, "estimatedRemovalDate": STRING}]} - -If provided a string of non-json form, the value of "encodedMsg" will inherit the passed value and information will be passed to the SDW in the form of the following: -{depositRequests:[{"encodeType": STRING ,"encodedMsg": STRING}]} +### Note +This has only been tested with Confluent Cloud but technically all SASL authenticated Kafka brokers can be reached using this method. \ No newline at end of file diff --git a/docs/Release_notes.md b/docs/Release_notes.md index dd65ff4..be6c04f 100644 --- a/docs/Release_notes.md +++ b/docs/Release_notes.md @@ -1,6 +1,16 @@ -Jpo-sdw-depositor Release Notes +jpo-sdw-depositor Release Notes ---------------------------- +Version 1.7.0, released June 2024 +---------------------------------------- +### **Summary** +The changes for the jpo-sdw-depositor 1.7.0 release include a Java update for the dev container, as well as revised documentation for accuracy and improved clarity/readability. + +Enhancements in this release +- CDOT PR 19: Updated dev container to use Java 21 +- CDOT PR 20: Revised documentation for accuracy & improved clarity/readability + + Version 1.6.0, released February 2024 ---------------------------------------- diff --git a/pom.xml b/pom.xml index 6e0657d..2f3eb89 100644 --- a/pom.xml +++ b/pom.xml @@ -13,7 +13,7 @@ usdot.jpo.ode jpo-sdw-depositor - 1.6.0-SNAPSHOT + 1.7.0-SNAPSHOT jar jpo-sdw-depositor diff --git a/sample.env b/sample.env index a4181a2..aedc5ec 100644 --- a/sample.env +++ b/sample.env @@ -1,13 +1,13 @@ DOCKER_HOST_IP= -#SDW_GROUP_ID=usdot.jpo.sdw -#SDW_KAFKA_PORT=9092 -#SDW_DESTINATION_URL=https://webapp-integration.cvmvp.com/whtools/rest/v2/ +SDW_DESTINATION_URL=https://sdx-service.trihydro.com/api/deposit-multi SDW_SUBSCRIPTION_TOPIC= SDW_API_KEY= SDW_EMAIL_LIST= SDW_EMAIL_FROM= SPRING_MAIL_HOST= SPRING_MAIL_PORT= + +# Type of Kafka connection to be used. Must be set to CONFLUENT, otherwise the application will default to a non-Confluent connection KAFKA_TYPE= CONFLUENT_KEY= CONFLUENT_SECRET= \ No newline at end of file diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 917bdc7..643cf73 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -12,7 +12,6 @@ version=${project.version} #Input Properties #================ #sdw.kafkaBrokers=localhost -#sdw.kafkaPort=9092 #sdw.subscriptionTopics = topic.example1 topic.example2 #Output Properties