Skip to content
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

[DataStorage] BugFix for Device not found in cache(Issue #312) #374

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions configs/datastorage/configuration.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
LogLevel = 'DEBUG'

[Service]
Host = 'localhost'
Host = '172.17.0.1'
Port = 49986
ConnectRetries = 20
Labels = []
Expand All @@ -22,13 +22,13 @@ FailWaitTime = 10
[Clients]
[Clients.Data]
Protocol = "http"
Host = "localhost"
Host = "172.17.0.1"
Port = 48080
Timeout = 5000

[Clients.Metadata]
Protocol = "http"
Host = "localhost"
Host = "172.17.0.1"
Port = 48081
Timeout = 5000

Expand Down
2 changes: 2 additions & 0 deletions docs/datastorage.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ The following architecture assumes that data stored at data controller would be
### 4.1 Configuration

- Placement the [`test/container/datastorage/`](../test/container/datastorage/) folder into `/var/edge-orchestration/apps/` in your **Home Edge** with Data Storage (**Device A**).

- For running service in dockers, replace the Host IP of metadata, coredata, service to docker0 IP. For example here it is 172.17.0.1
```sh
$ sudo cp -rf test/container/datastorage/ /var/edge-orchestration/apps/
```
Expand Down