Configure data ingestion settings - AWS IoT SiteWise

Configure data ingestion settings

Configure AWS IoT SiteWise data ingestion settings.

Console

Configure AWS IoT SiteWise to accept data streams not associated with asset properties by using the AWS IoT SiteWise console.

To configure data ingestion settings (console)
  1. Navigate to the AWS IoT SiteWise console.

  2. In the navigation pane, under Settings, choose Data ingestion.

  3. On the Data ingestion page, choose Edit.

  4. In the Disassociated data ingestion section, choose Enable data ingestion for data streams not associated with asset properties.

    Important

    After you configure AWS IoT SiteWise to accept data streams not associated with asset properties, you can't turn off this setting.

  5. Choose Save.

  6. In Enable disassociated data ingestion, choose Update. The status for Disassociated data ingestion becomes Active. This process can take a few minutes to complete.

AWS CLI

Configure AWS IoT SiteWise to accept data streams not associated with asset properties by using the PutStorageConfiguration API operation. The following section uses the AWS CLI.

To configure data ingestion settings (AWS CLI)
  1. To configure AWS IoT SiteWise to receive data streams not associated with asset properties, run the following command.

    Important

    After you configure AWS IoT SiteWise to accept data streams not associated with asset properties, you can't turn off this setting.

    aws iotsitewise put-storage-configuration \ -\-storage-type SITEWISE_DEFAULT_STORAGE \ -\-disassociated-data-storage ENABLED

    You can configure the storageType to MULTI_LAYER_STORAGE. For more information, see Manage data storage.

    Example response
    { "storageType": "SITEWISE_DEFAULT_STORAGE", "disassociatedDataStorage": "ENABLED", "configurationStatus": { "state": "UPDATE_IN_PROGRESS" } }

    This process can take a few minutes to complete.

  2. To retrieve the storage configuration information, run the following command.

    aws iotsitewise describe-storage-configuration
    Example response
    { "storageType": "SITEWISE_DEFAULT_STORAGE", "disassociatedDataStorage": "ENABLED", "configurationStatus": { "state": "ACTIVE" }, "lastUpdateDate": "2021-11-16T15:54:14-07:00" }