Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 3.32 KB

managed_workloads.md

File metadata and controls

35 lines (23 loc) · 3.32 KB

Horizon Edge Service Detail

Horizon manages the lifecycle, connectivity, and other features of services it launches on a device. This document is intended for service developers' consumption.

Service Environment Variables

Horizon sets these environment variables when starting a service container:

  • HZN_DEVICE_ID: The unique identifier for the edge node.
  • HZN_ORGANIZATION: The organization the edge node is part of.
  • HZN_EXCHANGE_URL: The Horizon Exchange being used by this edge node.
  • HZN_HOST_IPS: The IP addresses configured on this edge node host.
  • HZN_ARCH: A machine architecture designation for the host device. (This is retrieved by the golang runtime using the function runtime.GOARCH. Note: in the future, this may be modified to align with Ubuntu architecture designations: armel (Pi Zero), armhf (Pi 2, Odroid Xu4), arm64 (Pi 3, Odroid c2), or amd64.
  • HZN_RAM: The quantity of RAM (in MB) that the container is restricted to use.
  • HZN_CPUS: The quantity of CPU cores that the host device advertises. Note that the system may restrict scheduling services on a subset of the total available cores or may prioritize work on those cores.
  • HZN_HARDWAREID: The device serial number if it can be found. A generated ID otherwise.
  • HZN_PRIVILEGED: The running mode for a service docker container. If set true, the service will have all of the root capabilities of a host machine.

This environment variable is only set if a pattern was used to register the edge node with. This is not set when using hzn dev service start to start the service (because there is no pattern at that point):

  • HZN_PATTERN: The pattern that was deployed on this edge node, if any.

This environment variable is only set if this is a top-level service (referenced directly by the pattern):

  • HZN_AGREEMENTID: The unique identifier for the contractual agreement that the currently-running service is a part of. The lifecycle of the service never exceeds the lifecycle of an active agreement.

These environment variables are for Model Management System (MMS), which is implemented by the embedded ESS. The absence of these variables means that the MMS is not available to the service.

  • HZN_ESS_API_PROTOCOL: The transport protocol to use when accessing the ESS API. The only supported value is secure-unix, but other values might be supported in the future. The secure-unix protocol means that HTTPS should be used and the network transport will be via unix domain socket.
  • HZN_ESS_API_ADDRESS: The network address on which the ESS is listening. When HZN_ESS_API_PROTOCOL is secure-unix, this field contains the unix domain socket file to be used as the network transport. In this case, the hostname of the ESS API URL should be localhost. No port should be specified in the URL.
  • HZN_ESS_API_PORT: The port on which the ESS listens. This is ignored when HZN_ESS_API_PROTOCOL is secure-unix.
  • HZN_ESS_AUTH: The path to a JSON file containing the service's userid and token which should be passed to all ESS APIs as basic auth credentials in the HTTP header. Within the JSON file, the field "id" contains the userid and the field "token" contains the authentication token. Each service gets its own id and token, and should not be shared with any other service.
  • HZN_ESS_CERT: The path to a TLS (SSL) certificate used to encrypt the call to all ESS APIs.