Format

This page describes the content of configuration package on Manufacturing Data Engine (MDE)'s directories.

Starting on v1.5.0, Manufacturing Data Engine (MDE) offers a consolidated way to apply configurations by uploading a file-based specifications contained in a directory. This enables an atomic way to apply the MDE configuration for a specific use-case, and it enables the author of the configuration to look at MDE configuration holistically by editing and checking the configuration in full in an editor like VS Code. It also enables GitOps scenarios where the MDE configurations can be checked-in Git and tracked for changes.

The following shows a sample configuration package structure. The package contains an optional folder with a predefined name for each type of configuration entity the user needs to configure:

  ./test-configuration-package
  ├── manifest.json
  ├── buckets
  │   ├── default-record-bucket.json
  │   ├── default-tag-bucket.json
  │   └── second-tag-bucket.json
  ├── ingestion-specifications
  │   └── csv-full-ingestion-specs.json
  ├── message-classes
  │   └── message-class.json
  ├── metadata-instances
  │   ├── cloud-natural-key.json
  │   └── machine-natural-key.json
  ├── parsers
  │   └── parser.json
  ├── schemas
  │   ├── cdm-schema.json
  │   └── generic-schema.json
  ├── scripts
  │   └── parser-script.wstl
  └── types
      └── type.json

For example, to add buckets to MDE, you need to create a subfolder called buckets, which contains the specifications of the buckets that need to be created. If you don't want to create buckets, then there is no need to create the subfolder.

The package has to include a special file called manifest.json that contains the fields which determine the name of the package and its provider. MDE uses the details in the manifest file to create the package, and that gives you the flexibility to name the configuration package directory with any name.


{
    "name": "test-configuration-package",
    "provider": "google"
}