-
Notifications
You must be signed in to change notification settings - Fork 2
Make KafkaProcess Async #76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,71 @@ | ||
| name: RedPanda | ||
| services: | ||
| redpanda: | ||
| image: docker.redpanda.com/redpandadata/redpanda:v24.2.5 | ||
| container_name: redpanda | ||
| command: | ||
| - redpanda | ||
| - start | ||
| - --kafka-addr internal://0.0.0.0:9092,external://0.0.0.0:19092 | ||
| # Address the broker advertises to clients that connect to the Kafka API. | ||
| # Use the internal addresses to connect to the Redpanda brokers' | ||
| # from inside the same Docker network. | ||
| # Use the external addresses to connect to the Redpanda brokers' | ||
| # from outside the Docker network. | ||
| - --advertise-kafka-addr internal://redpanda:9092,external://localhost:19092 | ||
| - --pandaproxy-addr internal://0.0.0.0:8082,external://0.0.0.0:18082 | ||
| # Address the broker advertises to clients that connect to the HTTP Proxy. | ||
| - --advertise-pandaproxy-addr internal://redpanda:8082,external://localhost:18082 | ||
| - --schema-registry-addr internal://0.0.0.0:8081,external://0.0.0.0:18081 | ||
| # Redpanda brokers use the RPC API to communicate with each other internally. | ||
| - --rpc-addr redpanda:33145 | ||
| - --advertise-rpc-addr redpanda:33145 | ||
| # Mode dev-container uses well-known configuration properties for development in containers. | ||
| - --mode dev-container | ||
| # Tells Seastar (the framework Redpanda uses under the hood) to use 1 core on the system. | ||
| - --smp 1 | ||
| - --default-log-level=info | ||
| volumes: | ||
| - redpanda:/var/lib/redpanda/data | ||
| networks: | ||
| - redpanda_network | ||
| ports: | ||
| - 18081:18081 | ||
| - 18082:18082 | ||
| - 19092:19092 | ||
| - 19644:9644 | ||
| console: | ||
| container_name: redpanda-console | ||
| image: docker.redpanda.com/redpandadata/console:v2.7.2 | ||
| networks: | ||
| - redpanda_network | ||
| entrypoint: /bin/sh | ||
| command: -c 'echo "$$CONSOLE_CONFIG_FILE" > /tmp/config.yml; /app/console' | ||
| environment: | ||
| CONFIG_FILEPATH: /tmp/config.yml | ||
| CONSOLE_CONFIG_FILE: | | ||
| kafka: | ||
| brokers: ["redpanda:9092"] | ||
| schemaRegistry: | ||
| enabled: true | ||
| urls: ["http://redpanda:8081"] | ||
| redpanda: | ||
| adminApi: | ||
| enabled: true | ||
| urls: ["http://redpanda:9644"] | ||
| ports: | ||
| - 8080:8080 | ||
| depends_on: | ||
| - redpanda | ||
|
|
||
| networks: | ||
| redpanda_network: | ||
| driver: bridge | ||
|
|
||
| volumes: | ||
| redpanda: | ||
| driver: local | ||
| #driver_opts: | ||
| #o: bind | ||
| #type: rw | ||
| #device: /redpanda_data |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.