Greengrass nucleus
The Greengrass nucleus component (aws.greengrass.Nucleus
) is a mandatory component
and the minimum requirement to run the Amazon IoT Greengrass Core software on a device. You can configure this
component to customize and update your Amazon IoT Greengrass Core software remotely. Deploy this component to
configure settings such as proxy, device role, and Amazon IoT thing configuration on your core
devices.
Important
When the version of the nucleus component changes, or when you change certain configuration parameters, the Amazon IoT Greengrass Core software—which includes the nucleus and all other components on your device—restarts to apply the changes.
When you deploy a component, Amazon IoT Greengrass installs the latest supported versions of all of that component's dependencies. Because of this, new patch versions of Amazon-provided public components might be automatically deployed to your core devices if you add new devices to a thing group, or you update the deployment that targets those devices. Some automatic updates, such as a nucleus update, can cause your devices to restart unexpectedly.
To prevent unintended updates for a component that is running on your device, we recommend that you directly include your preferred version of that component when you create a deployment. For more information about update behavior for Amazon IoT Greengrass Core software, see Update the Amazon IoT Greengrass Core software (OTA).
Topics
Versions
This component has the following versions:
-
2.13.x
-
2.12.x
-
2.11.x
-
2.10.x
-
2.9.x
-
2.8.x
-
2.7.x
-
2.6.x
-
2.5.x
-
2.4.x
-
2.3.x
-
2.2.x
-
2.1.x
-
2.0.x
Operating system
This component can be installed on core devices that run the following operating systems:
Linux
Windows
For more information, see Supported platforms.
Requirements
Devices must meet certain requirements to install and run the Greengrass nucleus and the Amazon IoT Greengrass Core software. For more information, see Device requirements.
The Greengrass nucleus component is supported to run in a VPC. To deploy this component in a VPC, the following is required.
-
The Greengrass nucleus component must have connectivity to Amazon IoT data, Amazon IoT Credentials, and Amazon S3.
Dependencies
The Greengrass nucleus does not include any component dependencies. However, several Amazon-provided components include the nucleus as a dependency. For more information, see Amazon-provided components.
For more information about component dependencies, see the component recipe reference.
Download and installation
You can download an installer that sets up the Greengrass nucleus component on your device. This installer sets up your device as a Greengrass core device. There are two types of installations that you can perform: a quick installation that creates required Amazon resources for you, or a manual installation where you create the Amazon resources yourself. For more information, see Install the Amazon IoT Greengrass Core software.
You can also follow a tutorial to install the Greengrass nucleus and explore Greengrass component development. For more information, see Tutorial: Getting started with Amazon IoT Greengrass V2.
Configuration
This component provides the following configuration parameters that you can customize when you deploy the component. Some parameters require that the Amazon IoT Greengrass Core software restarts to take effect. For more information about why and how to configure this component, see Configure the Amazon IoT Greengrass Core software.
iotRoleAlias
The Amazon IoT role alias that points to a token exchange IAM role. The Amazon IoT credentials provider assumes this role to allow the Greengrass core device to interact with Amazon services. For more information, see Authorize core devices to interact with Amazon services.
When you run the Amazon IoT Greengrass Core software with the
--provision true
option, the software provisions a role alias and sets its value in the nucleus component.-
interpolateComponentConfiguration
-
(Optional) You can enable the Greengrass nucleus to interpolate component recipe variables in component configurations and merge configuration updates. We recommend that you set this option to
true
so that the core device can run Greengrass components that use recipe variables in their configurations.This feature is available for v2.6.0 and later of this component.
Default:
false
networkProxy
-
(Optional) The network proxy to use for all connections. For more information, see Connect on port 443 or through a network proxy.
Important
When you deploy a change to this configuration parameter, the Amazon IoT Greengrass Core software restarts for the change to take effect.
This object contains the following information:
noProxyAddresses
-
(Optional) A comma-separated list of IP addresses or hostnames that are exempt from the proxy.
proxy
-
The proxy to which to connect. This object contains the following information:
url
-
The URL of the proxy server in the format
scheme://userinfo@host:port
.-
scheme
– The scheme, which must behttp
orhttps
.Important
Greengrass core devices must run Greengrass nucleus v2.5.0 or later to use HTTPS proxies.
If you configure an HTTPS proxy, you must add the proxy server CA certificate to the core device's Amazon root CA certificate. For more information, see Enable the core device to trust an HTTPS proxy.
-
userinfo
– (Optional) The user name and password information. If you specify this information in theurl
, the Greengrass core device ignores theusername
andpassword
fields. -
host
– The host name or IP address of the proxy server. -
port
– (Optional) The port number. If you don't specify the port, then the Greengrass core device uses the following default values:-
http
– 80 -
https
– 443
-
-
username
-
(Optional) The user name that authenticates the proxy server.
password
-
(Optional) The password that authenticates the proxy server.
mqtt
-
(Optional) The MQTT configuration for the Greengrass core device. For more information, see Connect on port 443 or through a network proxy.
Important
When you deploy a change to this configuration parameter, the Amazon IoT Greengrass Core software restarts for the change to take effect.
This object contains the following information:
port
-
(Optional) The port to use for MQTT connections.
Default:
8883
keepAliveTimeoutMs
-
(Optional) The amount of time in milliseconds between each
PING
message that the client sends to keep the MQTT connection alive. This value must be greater thanpingTimeoutMs
.Default:
60000
(60 seconds) pingTimeoutMs
-
(Optional) The amount of time in milliseconds that the client waits to receive a
PINGACK
message from the server. If the wait exceeds the timeout, the core device closes and reopens the MQTT connection. This value must be less thankeepAliveTimeoutMs
.Default:
30000
(30 seconds) operationTimeoutMs
-
(Optional) The amount of time in milliseconds that the client waits for MQTT operations (such as
CONNECT
orPUBLISH
) to complete. This option doesn't apply to MQTTPING
or keep alive messages.Default:
30000
(30 seconds) maxInFlightPublishes
-
(Optional) The maximum number of unacknowledged MQTT QoS 1 messages that can be in flight at the same time.
This feature is available for v2.1.0 and later of this component.
Default:
5
Valid range: Maximum value of 100
maxMessageSizeInBytes
-
(Optional) The maximum size of an MQTT message. If a message exceeds this size, the Greengrass nucleus rejects the message with an error.
This feature is available for v2.1.0 and later of this component.
Default:
131072
(128 KB)Valid range: Maximum value of
2621440
(2.5 MB) maxPublishRetry
-
(Optional) The maximum number of times to retry a message that fails to publish. You can specify
-1
to retry unlimited times.This feature is available for v2.1.0 and later of this component.
Default:
100
spooler
-
(Optional) The MQTT spooler configuration for the Greengrass core device. This object contains the following information:
storageType
-
The storage type for storing messages. If
storageType
is set toDisk
, thepluginName
can be configured. You can specify eitherMemory
orDisk
.This feature is available for v2.11.0 and later of the Greengrass nucleus component.
Important
If the MQTT spooler
storageType
is set toDisk
and you want to downgrade Greengrass nucleus from version 2.11.x to an earlier version, you must change the configuration back toMemory
. The only configuration forstorageType
that is supported in Greengrass nucleus versions 2.10.x and earlier isMemory
. Not following this guidance can result in the spooler breaking. This would cause your Greengrass core device to not be able to send MQTT messages to the Amazon Web Services Cloud.Default:
Memory
pluginName
-
(Optional) The plugin component name. This component will only be used if
storageType
is set toDisk
. This option defaults toaws.greengrass.DiskSpooler
and will use the Greengrass-provided Disk spooler.This feature is available for v2.11.0 and later of the Greengrass nucleus component.
Default:
"aws.greengrass.DiskSpooler"
maxSizeInBytes
-
(Optional) The maximum size of the cache where the core device stores unprocessed MQTT messages in memory. If the cache is full, new messages are rejected.
Default:
2621440
(2.5 MB) keepQos0WhenOffline
-
(Optional) You can spool MQTT QoS 0 messages that the core device receives while its offline. If you set this option to
true
, the core device spools QoS 0 messages that it can't send while it's offline. If you set this option tofalse
, the core device discards these messages. The core device always spools QoS 1 messages unless the spool is full.Default:
false
version
-
(Optional) The version of MQTT. You can specify either
mqtt3
ormqtt5
.This feature is available for v2.10.0 and later of the Greengrass nucleus component.
Default:
mqtt5
receiveMaximum
-
(Optional) The maximum number of unacknowledged QoS1 packets the broker can send.
This feature is available for v2.10.0 and later of the Greengrass nucleus component.
Default:
100
sessionExpirySeconds
-
(Optional) The amount of time in seconds you can request for a session to last from IoT Core. The default is the maximum time supported by Amazon IoT Core.
This feature is available for v2.10.0 and later of the Greengrass nucleus component.
Default:
604800 (7 days)
minimumReconnectDelaySeconds
-
(Optional) An option for reconnection behavior. The minimum amount of time in seconds for MQTT to reconnect.
This feature is available for v2.10.0 and later of the Greengrass nucleus component.
Default:
1
maximumReconnectDelaySeconds
-
(Optional) An option for reconnection behavior. The maximum amount of time in seconds for MQTT to reconnect.
This feature is available for v2.10.0 and later of the Greengrass nucleus component.
Default:
120
minimumConnectedTimeBeforeRetryResetSeconds
-
(Optional) An option for reconnection behavior. The amount of time in seconds a connection must be active before the retry delay is reset back to the minimum.
This feature is available for v2.10.0 and later of the Greengrass nucleus component.
Default:
30
-
jvmOptions
-
(Optional) The JVM options to use to run the Amazon IoT Greengrass Core software. For information about recommended JVM options for running Amazon IoT Greengrass Core software, see Control memory allocation with JVM options.
Important
When you deploy a change to this configuration parameter, the Amazon IoT Greengrass Core software restarts for the change to take effect.
iotDataEndpoint
-
The Amazon IoT data endpoint for your Amazon Web Services account.
When you run the Amazon IoT Greengrass Core software with the
--provision true
option, the software gets your data and credentials endpoints from Amazon IoT and sets them in the nucleus component. iotCredEndpoint
-
The Amazon IoT credentials endpoint for your Amazon Web Services account.
When you run the Amazon IoT Greengrass Core software with the
--provision true
option, the software gets your data and credentials endpoints from Amazon IoT and sets them in the nucleus component. greengrassDataPlaneEndpoint
-
This feature is available in v2.7.0 and later of this component.
For more information, see Use a device certificate signed by a private CA.
greengrassDataPlanePort
-
This feature is available in v2.0.4 and later of this component.
(Optional) The port to use for data plane connections. For more information, see Connect on port 443 or through a network proxy.
Important
You must specify a port where the device can make outbound connections. If you specify a port that is blocked, the device won't be able to connect to Amazon IoT Greengrass to receive deployments.
Choose from the following options:
-
443
-
8443
Default:
8443
-
awsRegion
-
The Amazon Web Services Region to use.
runWithDefault
-
The system user to use to run components.
Important
When you deploy a change to this configuration parameter, the Amazon IoT Greengrass Core software restarts for the change to take effect.
This object contains the following information:
posixUser
-
The name or ID of the system user and, optionally, system group that the core device uses to run generic and Lambda components. Specify the user and group separated by a colon (
:
) in the following format:user:group
. The group is optional. If you don't specify a group, the Amazon IoT Greengrass Core software uses the primary group for the user. For example, you can specifyggc_user
orggc_user:ggc_group
. For more information, see Configure the user that runs components.When you run the Amazon IoT Greengrass Core software installer with the
--component-default-user
option, the software sets this parameter in the nucleus component.ggc_user
:ggc_group
windowsUser
-
This feature is available in v2.5.0 and later of this component.
The name of the Windows user to use to run this component on Windows core devices. The user must exist on each Windows core device, and its name and password must be stored in the LocalSystem account's Credentials Manager instance. For more information, see Configure the user that runs components.
When you run the Amazon IoT Greengrass Core software installer with the
--component-default-user
option, the software sets this parameter in the nucleus component.ggc_user
systemResourceLimits
-
This feature is available in v2.4.0 and later of this component. Amazon IoT Greengrass doesn't currently support this feature on Windows core devices.
The system resource limits to apply to generic and non-containerized Lambda component processes by default. You can override system resource limits for individual components when you create a deployment. For more information, see Configure system resource limits for components.
This object contains the following information:
cpus
-
The maximum amount of CPU time that each component's processes can use on the core device. A core device's total CPU time is equivalent to the device's number of CPU cores. For example, on a core device with 4 CPU cores, you can set this value to
2
to limit each component's processes to 50 percent usage of each CPU core. On a device with 1 CPU core, you can set this value to0.25
to limit each component's processes to 25 percent usage of the CPU. If you set this value to a number greater than the number of CPU cores, the Amazon IoT Greengrass Core software doesn't limit the components' CPU usage. memory
-
The maximum amount of RAM (in kilobytes) that each component's processes can use on the core device.
-
s3EndpointType
-
(Optional) The S3 endpoint type. This parameter will only take effect for the US East (N. Virginia) (
us-east-1
) Region. Setting this parameter from any other Region will be ignored. Choose from the following options:-
REGIONAL
– S3 client and presigned URL uses the regional endpoint. -
GLOBAL
– S3 client and presigned URL uses the legacy endpoint.
Default:
GLOBAL
-
-
fipsMode
-
(Optional) Causes Greengrass to use FIPS endpoints. For more information on how to enable FIPS endpoints, see FIPS endpoints.
Choose from the following options:
-
true
When set to true the endpoints will use FIPS endpoint. -
false
When false the endpoints will not use FIPS endpoint.
Default:
false
-
logging
-
(Optional) The logging configuration for the core device. For more information about how to configure and use Greengrass logs, see Monitor Amazon IoT Greengrass logs.
This object contains the following information:
-
level
-
(Optional) The minimum level of log messages to output.
Choose from the following log levels, listed here in level order:
-
DEBUG
-
INFO
-
WARN
-
ERROR
Default:
INFO
-
-
format
-
(Optional) The data format of the logs. Choose from the following options:
-
TEXT
– Choose this option if you want to view logs in text form. -
JSON
– Choose this option if you want to view logs with the Greengrass CLI logs command or interact with logs programmatically.
Default:
TEXT
-
outputType
-
(Optional) The output type for logs. Choose from the following options:
-
FILE
– The Amazon IoT Greengrass Core software outputs logs to files in the directory that you specify inoutputDirectory
. -
CONSOLE
– The Amazon IoT Greengrass Core software prints logs tostdout
. Choose this option to view logs as the core device prints them.
Default:
FILE
-
-
fileSizeKB
-
(Optional) The maximum size of each log file (in kilobytes). After a log file exceeds this maximum file size, the Amazon IoT Greengrass Core software creates a new log file.
This parameter applies only when you specify
FILE
foroutputType
.Default:
1024
-
totalLogsSizeKB
-
(Optional) The maximum total size of log files (in kilobytes) for each component, including the Greengrass nucleus. The Greengrass nucleus' log files also include logs from plugin components. After a component's total size of log files exceeds this maximum size, the Amazon IoT Greengrass Core software deletes that component's oldest log files.
This parameter is equivalent to the log manager component's disk space limit parameter (
diskSpaceLimit
), which you can specify for the Greengrass nucleus (system) and each component. The Amazon IoT Greengrass Core software uses the minimum of the two values as the maximum total log size for the Greengrass nucleus and each component.This parameter applies only when you specify
FILE
foroutputType
.Default:
10240
-
outputDirectory
-
(Optional) The output directory for log files.
This parameter applies only when you specify
FILE
foroutputType
.Default:
, where
/logs/greengrass/v2
is the Amazon IoT Greengrass root folder./greengrass/v2
-
-
fleetstatus
-
This parameter is available in v2.1.0 and later of this component.
(Optional) The fleet status configuration for the core device.
This object contains the following information:
periodicStatusPublishIntervalSeconds
-
(Optional) The amount of time (in seconds) between which the core device publishes device status to the Amazon Web Services Cloud.
Minimum:
86400
(24 hours)Default:
86400
(24 hours)
-
telemetry
-
(Optional) The system health telemetry configuration for the core device. For more information about telemetry metrics and how to act on telemetry data, see Gather system health telemetry data from Amazon IoT Greengrass core devices.
This object contains the following information:
enabled
-
(Optional) You can enable or disable telemetry.
Default:
true
periodicAggregateMetricsIntervalSeconds
-
(Optional) The interval (in seconds) over which the core device aggregates metrics.
If you set this value lower than the minimum supported value, the nucleus uses the default value instead.
Minimum:
3600
Default:
3600
periodicPublishMetricsIntervalSeconds
-
(Optional) The amount of time (in seconds) between which the core device publishes telemetry metrics to the Amazon Web Services Cloud.
If you set this value lower than the minimum supported value, the nucleus uses the default value instead.
Minimum:
86400
Default:
86400
deploymentPollingFrequencySeconds
-
(Optional) The period in seconds at which to poll for deployment notifications.
Default:
15
componentStoreMaxSizeBytes
-
(Optional) The maximum size on disk of the component store, which comprises component recipes and artifacts.
Default:
10000000000
(10 GB) -
platformOverride
-
(Optional) A dictionary of attributes that identify the core device's platform. Use this to define custom platform attributes that component recipes can use to identify the correct lifecycle and artifacts for the component. For example, you might define a hardware capability attribute to deploy only the minimal set of artifacts for a component to run. For more information, see the manifest platform parameter in the component recipe.
You can also use this parameter to override the
os
andarchitecture
platform attributes of the core device. -
httpClient
-
This parameter is available in v2.5.0 and later of this component.
(Optional) The HTTP client configuration for the core device. These configuration options apply to all HTTP requests made by this component. If a core device runs on a slower network, you can increase these timeout durations to prevent HTTP requests from timing out.
This object contains the following information:
connectionTimeoutMs
-
(Optional) The amount of time (in milliseconds) to wait for a connection to open before the connection request times out.
Default:
2000
(2 seconds) socketTimeoutMs
-
(Optional) The amount of time (in milliseconds) to wait for data to transfer over an open connection before the connection times out.
Default:
30000
(30 seconds)
Example: Configuration merge update
{ "iotRoleAlias": "GreengrassCoreTokenExchangeRoleAlias", "networkProxy": { "noProxyAddresses": "http://192.168.0.1,www.example.com", "proxy": { "url": "http://my-proxy-server:1100", "username": "Mary_Major", "password": "pass@word1357" } }, "mqtt": { "port": 443 }, "greengrassDataPlanePort": 443, "jvmOptions": "-Xmx64m", "runWithDefault": { "posixUser": "ggc_user:ggc_group" } }
Local log file
This component uses the following log file.
To view this component's logs
-
Run the following command on the core device to view this component's log file in real time. Replace
or/greengrass/v2
C:\greengrass\v2
with the path to the Amazon IoT Greengrass root folder.
Changelog
The following table describes the changes in each version of the component.
Version |
Changes |
---|---|
2.13.0 |
|
2.12.6 |
|
2.12.5 |
|
2.12.4 |
|
2.12.3 |
WarningThis version is no longer available. The improvements in this version are available in later versions of this component. Bug fixes and improvements
|
2.12.2 |
|
2.12.1 |
|
2.12.0 |
|
2.11.3 |
|
2.11.2 |
|
2.11.1 |
|
2.11.0 |
|
2.10.3 |
|
2.10.2 |
|
2.10.1 |
|
2.10.0 |
|
2.9.6 |
|
2.9.5 |
|
2.9.4 |
|
2.9.3 |
|
2.9.2 |
|
2.9.1 |
|
2.9.0 |
|
2.8.1 |
|
2.8.0 |
|
2.7.0 |
|
2.6.0 |
|
2.5.6 |
|
2.5.5 |
|
2.5.4 |
|
2.5.3 |
|
2.5.2 |
|
2.5.1 |
WarningThis version is no longer available. The improvements in this version are available in later versions of this component.
|
2.5.0 |
|
2.4.0 |
|
2.3.0 |
|
2.2.0 |
|
2.1.0 |
|
2.0.5 |
|
2.0.4 |
|
2.0.3 |
Initial version. |