EdgeX Keeper is a lightweight configuration and registry service that is aimed to replace Consul in the EdgeX architecture.
It uses Redis from the existing EdgeX service architecture as the data persistent store, and implements the configuration and registry abstractions by adopting the go-mod-configuration
and go-mod-registry
modules from EdgeX.
The code base of edgex-core-keeper
is a clone of the edgexfoundry/edgex-go repository, and with the new core-keeper
source code added. This provides an easier way to integrate the new code back into edgexfoundry/edgex-go
in the future.
See EdgeX Configuration and Registry Providers documentation for more details about the roles they play in the EdgeX architecture.
EdgeX Keeper acts as the Configuration and Registry Providers by using the Config Handler and Registry Handler modules to communicate with other EdgeX services. Each EdgeX service will bootstrap its configuration and registry information into Keeper when started, listens for any Writable configuration change events via the message bus, and runs health checks to other services.
In addition, users can manage the configuration and registry information by calling the REST APIs provided by EdgeX Keeper.
The following architecture diagram demonstrates how Keeper works to function as configuration/registry providers for other services and communicate with external users.
- The current targeted version of the Go language runtime for release artifacts is v1.17.x
- The minimum supported version of the Go language runtime is v1.17.x
Clone the source code and switch to the working directory.
git clone [email protected]:IOTechSystems/edgex-core-keeper.git
cd edgex-core-keeper
EdgeX Keeper is used Redis DB as the persistence layer. Please start the Redis server before running the EdgeX Keeper application.
In the cmd/core-keeper/res/configuration.toml
file, enter the Redis connection detail in the following section.
[Databases]
[Databases.Primary]
Host = "edgex-redis" # Update the Redis db host for edgex-core-keeper to store data
Name = "corekeeper"
Port = 6379
Timeout = 5000
Type = "redisdb"
Follow the "Clone the edgex-core-keeper source code" and "Redis" steps above to clone the source and set up the Redis server that is used for connection.
make run
In addition to running the services directly, Docker and Docker Compose can be used.
See the install instructions to learn how to obtain and install Docker.
Follow the "Build and run the binary executable" steps above for obtaining the code, then build the dockcer image:
make docker
Use the docker container file in this repository to start the edgex-core-keeper
and edgex-redis
container
docker-compose up -d
After the EdgeX Keeper service is started, the Get key
and Create/Update key
endpoints can be invoked with the following examples.
There's a query parameter flatten
defined in the Create/Update key API, and it controls the way to store the json object in the value
field. The default value of flatten
is false
.
Enter the following command to create a series of keys starting with the prefix core/data
, and the json object defined in the value
field should be flattened before storing into database.
- Request sample
curl --location --request PUT 'localhost:59883/api/v2/kvs/key/core/data?flatten=true' \
--header 'Content-Type: application/json' \
--data-raw '{
"value":{
"MaxEventSize":25000,
"Writable":{
"PersistData":true,
"LogLevel":"INFO",
"InsecureSecrets":{
"DB":{
"path":"redisdb"
}
}
}
}
}'
- Response sample
The following individual keys were created with prefix core/data
from the url path, and property name as key(ex. MaxEventSize
) from the value
json object in the request payload.
{
"apiVersion": "v2",
"statusCode": 200,
"response": [
"core/data/MaxEventSize",
"core/data/Writable/PersistData",
"core/data/Writable/LogLevel",
"core/data/Writable/InsecureSecrets/DB/path"
]
}
Enter the following command to create a single key core/data
, and the json object defined in the value
field should be stored as a string.
- Request sample
curl --location --request PUT 'localhost:59883/api/v2/kvs/key/core/data?flatten=false' \
--header 'Content-Type: application/json' \
--data-raw '{
"value":{
"MaxEventSize":25000,
"Writable":{
"PersistData":true,
"LogLevel":"INFO",
"InsecureSecrets":{
"DB":{
"path":"redisdb"
}
}
}
}
}'
- Response sample
Only one key core/data
has been created from the url path definition, and the json object defined in the value
field is stored as a string.
{
"apiVersion": "v2",
"statusCode": 200,
"response": [
"core/data"
]
}
Run the following command to get all the stored values of keys starting with the prefix core/data
.
curl --location --request GET 'localhost:59883/api/v2/kvs/key/core/data'
{
"apiVersion": "v2",
"statusCode": 200,
"response": [
{
"key": "core/data/MaxEventSize",
"created": 1655372656274362,
"modified": 1655372656274362,
"value": 25000
},
{
"key": "core/data/Writable/LogLevel",
"created": 1655372656268428,
"modified": 1655372656268428,
"value": "SU5GTw=="
},
{
"key": "core/data/Writable/InsecureSecrets/DB/path",
"created": 1655372656269610,
"modified": 1655372656269610,
"value": "cmVkaXNkYg=="
},
...
]
}
- Update url path name from
/kv/{key}
to/kvs/key/{key}
- Rename the GET API query parameters:
key
tokeyOnly
raw
toplaintext
- Rename the DELETE API query parameter:
recurse
toprefixMatch
EdgeX Keeper uses the message bus from EdgeX go-mod-messaging module to publish the configuration change event.
In order to update the Writable
configuration settings for a service without restarting, EdgeX Keeper and other services need to connect to the same message bus.
Every time when a configuration value gets created or updated, Keeper will publish a key change event via the message bus; the other service which subscribes to the particular topic will get the updated configuration value.
The following diagram shows how the Watch feature is implemented on EdgeX Keeper.
Please see the following steps for EdgeX Core Data service to use EdgeX Keeper as Configuration Provider.
As previously mentioned, EdgeX Keeper will publish the key change event whenever the configuration value is updated. In order for Core Data to
get notified when the Writable
configuration setting is changed, EdgeX Keeper and Core Data need to connect to the same message bus.
Therefore, both EdgeX Keeper and Core Data have to connect to the same message bus, and the MessageQueue
section in the configuration.toml of each should match up.
Here we use the default MessageQueue
type redis
as example (MQTT message bus type is supported as well).
See the following example defined in the configuration.toml:
[MessageQueue]
Protocol = "redis"
Host = "localhost"
Port = 6379
Type = "redis"
The
MessageQueue
configuration setting is only defined in the configuration.toml of Core Data in the Kamakura release.For other EdgeX services, the
MessageQueue
section needs to be added for adopting the go-mod-messaging module to subscribe to the message bus.In the future EdgeX release, the message bus implementation will be applied to every EdgeX service to publish service metrics. Therefore, no additional tweak needed for each EdgeX service to use EdgeX Keeper as the configuration provider.
Skip this step if using the source code to build Core Data in this repository directly.
If you would like to use the edgex-go source code to build Core Data from other repository,
add the following line in the end of edgex-go/go.mod file to replace go-mod-configuration
module in to the one under IOTechSystems which implements Keeper as the configuration provider option.
replace github.com/edgexfoundry/go-mod-configuration/v2 => github.com/IOTechSystems/go-mod-configuration/v2 core-keeper
- Start EdgeX Keeper as mentioned in Build and run the binary executable.
- Start Core Data with the following command
or use the Makefile in this repository
./core-data -cp=keeper.http://localhost:59883
to build and run the binary executable of Core Data to use Keeper as configuration provider.make run_core_data
curl --location --request PUT 'localhost:59883/api/v2/kv/edgex/core/2.0/core-data/Writable/LogLevel' \
--header 'Content-Type: application/json' \
--data-raw '{
"value": "DEBUG"
}'
curl --location --request GET 'localhost:59880/api/v2/config'
Please see the following steps for EdgeX Core Data service to use EdgeX Keeper as Registry.
[Registry]
Host = "localhost"
Port = 59883
Type = "keeper"
Skip this step if using the source code to build Core Data in this repository directly.
If you would like to use the edgex-go source code to build Core Data from other repository,
add the following line in the end of edgex-go/go.mod file to replace go-mod-registry
module in to the one under IOTechSystems which implements Keeper as the registry option.
replace github.com/edgexfoundry/go-mod-registry/v2 => github.com/IOTechSystems/go-mod-registry/v2 core-keeper
- Start EdgeX Keeper as mentioned in Build and run the binary executable.
- Start Core Data with the following command
or use the Makefile in this repository
./core-data --registry
to build and run the binary executable of Core Data to use Keeper as registry.make run_core_data
curl --location --request GET 'localhost:59883/api/v2/registry/serviceId/core-data'