Other
etcd
Integrates the Configu Orchestrator with etcd.
- Name: etcd
- Category: Key-value store
Configuration
Configu needs to be authorized to access your etcd store. You may pass options into the etcd client constructor to configure how the client connects to etcd.
Usage
.configu
store declaration
CLI examples
Upsert command
Eval and export commands
Common errors and solutions
-
Connection timeout
- Solution: Ensure the
hosts
URLs are reachable from your application. Increase thetimeout
value if the network latency is high.
- Solution: Ensure the
-
Authentication failure
- Solution: If authentication is enabled, verify the provided
username
andpassword
. Test with:
- Solution: If authentication is enabled, verify the provided
-
Cluster unavailability
- Solution: Ensure that all nodes in the etcd cluster are healthy. Use the following command to check cluster health:
- Solution: Ensure that all nodes in the etcd cluster are healthy. Use the following command to check cluster health:
-
Key collision issues
- Solution: Use unique keys or prefixes for different configuration sets to avoid conflicts.
References
- Integration documentation: https://etcd.io/docs
- Integration SDK documentation: https://microsoft.github.io/etcd3/classes/etcd3.html
Was this page helpful?