Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
332da400
Unverified
Commit
332da400
authored
Jan 14, 2026
by
Neal Vaidya
Committed by
GitHub
Jan 14, 2026
Browse files
fix: update hello_world example to remove etcd (#5422)
Signed-off-by:
Neal Vaidya
<
nealv@nvidia.com
>
parent
90ed9ab0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
16 deletions
+7
-16
examples/custom_backend/hello_world/README.md
examples/custom_backend/hello_world/README.md
+7
-16
No files found.
examples/custom_backend/hello_world/README.md
View file @
332da400
...
...
@@ -48,36 +48,27 @@ The example demonstrates:
## Getting Started
## Prerequisites
##
#
Prerequisites
Before running this example, ensure you have the following services running:
-
**etcd**
: A distributed key-value store used for service discovery and metadata storage
-
**NATS**
: A high-performance message broker for inter-component communication
You can start these services using Docker Compose:
```
bash
# clone the dynamo repository if necessary
# git clone https://github.com/ai-dynamo/dynamo.git
cd
dynamo
docker compose
-f
deploy/docker-compose.yml up
-d
```
Dynamo must be installed. No external services are required for local development—the example uses file-based KV storage by default.
### Running the Example
First, start the backend service:
```
bash
cd
examples/custom_backend/hello_world
python hello_world.py
DYN_STORE_KV
=
file
python hello_world.py
```
Second, in a separate terminal, run the client:
```
bash
cd
examples/custom_backend/hello_world
python client.py
DYN_STORE_KV
=
file
python client.py
```
> **Note**: Setting `DYN_STORE_KV=file` uses file-based storage instead of etcd.
> Both the backend and client must use the same KV backend to discover each other.
The client will connect to the backend service and print the streaming results.
### Expected Output
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment