aws-greengrass-nucleus-rust

aws greengrass nucleus in Rust programming language (unofficial)

## Motivation

What I cannot create, I do not understand.

Know how to solve every problem that has been solved.

                                  ————  Richard Feynman

on his blackboard at the time of death in February 1988;


Quickstart

cargo run -- --version aws-greengrass-nucleus 0.0.3

cargo run -- --help ``` aws-greengrass-nucleus 0.0.3 aws greengrass nucleus in Rust (unofficial)

USAGE: aws-greengrass-nucleus [OPTIONS] --thing-name

OPTIONS: --aws-region [default: ap-southeast-1]

    --component-default-user <COMPONENT_DEFAULT_USER>


    --deploy-dev-tools
    ...

```

cargo run -- --aws-region ap-southeast-1 --thing-name coreName --component-default-user ggcuser:ggcgroup --provision

same as original nucleus

Nucleus

The Greengrass nucleus component (aws.greengrass.Nucleus) is a mandatory component and the minimum requirement to run the AWS IoT Greengrass Core software on a device.

a little bit of history

How big?

v1 (maybe golang?)

- Minimum 128 MB disk space available for the AWS IoT Greengrass Core software. If you use the OTA update agent, the minimum is 400 MB.

- Minimum 128 MB RAM allocated to the AWS IoT Greengrass Core software. With stream manager enabled, the minimum is 198 MB RAM.

v2 (open source in Java)

- memory,
The maximum amount of RAM (in kilobytes) that each component's processes can use on the core device.

How v2 works?

(Greengrass v2 CLI)[https://awscli.amazonaws.com/v2/documentation/api/2.1.30/reference/greengrassv2/index.html]

core-device: - list-core-devices - get-core-device - delete-core-device

component: - create-component-version - describe-component - delete-component - get-component - get-component-version-artifact - list-component-versions - list-components - resolve-component-candidates

deployments: - create-deployment - list-deployments - get-deployment - cancel-deployment

misc: - list-effective-deployments - list-installed-components - list-tags-for-resource - tag-resource - untag-resource

How to

open documentation:

cargo doc --open

Compile local packages and all of their dependencies:

cargo b(uild)

Release build:

cargo b --release

Cross-compile:

rustup target list rustup target add cargo b --target <>

Cross-compile for Raspberry:

https://robamu.github.io/post/cross-compile-rust-rpi/

Cross-compile for OpenWRT:

https://blog.dend.ro/building-rust-for-routers/

Fast check:

cargo c(heck)

Run:

cargo run (-- your-args)

Test:

cargo test

Documentation tests:

https://doc.rust-lang.org/rustdoc/write-documentation/documentation-tests.html#documentation-tests

Publish:

cargo publish

Design

Kernel

Kernel, It's fundamentally a hierarchic key-value store

Overview

Dependency & lifetime

Dependency

Directed Acyclic Graph (DAG)? https://hazelcast.com/glossary/directed-acyclic-graph/

State machine? https://doc.rust-lang.org/stable/book/ch17-03-oo-design-patterns.html

Deployment

Deployment

IoT device SDK? https://crates.io/crates/aws-iot-device-sdk

Configuration

Configuration

Hash map? https://doc.rust-lang.org/rust-by-example/std/hash.html

Need concurrent? https://github.com/xacrimon/dashmap

other

Kernel