我正在尝试执行具有回填属性集的ADX集群的以下命令,然后返回操作id:
.create async ifnotexists materialized-view with (backfill=true, docString="Asset Trends") AssetTrend on table Variables
{
Variables
| where variable == 'severity' and model=='conditionMonitor' and
timestamp between (datetime(2022-06-29) .. 1d)
| summarize Normal = countif(value<=1), CheckSUM = countif(value>1 and
value<=250), OutofSpecification = countif(value>250 and value<=500),
MaintenanceRequired = countif(value>500 and value<=750),
Failure = countif(value>750 and value<=1000)
by bin(timestamp,1s)
}我得到了以下错误:

请告诉我怎么解决这个问题。
发布于 2022-07-08 07:41:23
由于状态无效,无法执行管理命令:对于冷缓存中有区段的表,不支持State=‘物化的回填视图创建选项。请增加热缓存策略,以覆盖表中的所有区段,或者创建没有回填’的视图
对于冷缓存中的数据,不支持使用回填选项。 如果有必要,在视图创建期间增加热缓存周期。,这可能需要扩展的。
https://stackoverflow.com/questions/72901885
复制相似问题