在 Asset Manager 中,如何对 Asset 中的数据进行备份和恢复?
Solution当前,对于 asset 中数据备份和恢复只能通过手动方式进行操作,备份与恢复步骤如下:
1. 保存 asset、aspect 以及 assettype 名称。
2. 在 aspect 编辑页面导出变量信息。
3. 在 Operations Insight,或调用 API:GET - /api/iottimeseries(iottsbulk)/v3/timeseries/{entityId}/{propertySetName}
将数据导出保存成 JSON 格式。
1. 创建同名 Aspect,导入保存的变量文件
2. 创建同名 Asset Type。
3. 创建同名,同类型的 Asset。
4. 调用 API:PUT - /api/iottimeseries/v3/timeseries/{entityId}/{propertySetName}
,或 POST - /api/iottsbulk/v3/importJobs
接口将数据导入。