-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor Pulsar consumer, config, and producer modules
Updated Pulsar consumer, config, and producer modules to handle the 'close' event differently in order to prevent connectivity/connection issues. Modified the process of gathering configuration and producer configurations to ensure there are no missing or improperly gathered configurations. Removed a commented interface and added a new docker-compose.yml file. Also updated .gitignore file.
- Loading branch information
Showing
5 changed files
with
67 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.idea/ | ||
node_modules/ | ||
rest/ | ||
tmp/ | ||
docker/ | ||
*.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
version: "3.5" | ||
|
||
services: | ||
pulsar: | ||
image: apachepulsar/pulsar:3.1.1 | ||
command: ["bin/pulsar", "standalone"] | ||
|
||
nodered: | ||
build: . | ||
container_name: nodered | ||
ports: | ||
- "1880:1880" | ||
volumes: | ||
- nodered:/data | ||
|
||
volumes: | ||
nodered: | ||
name: nodered |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters