查询 ADX 时标签未显示 table
Tags not showing up while querying an ADX table
如果我触发 .show table <TableName> extents
,我会看到带有标签的范围列表。但是,如果我尝试将这些标签与 table 数据一起列出,我会得到空白,因此以下查询 returns 空白标签:-
<TableName> | extend tags=extent_tags()
为什么会这样?
您是直接查询 table ,还是在对原始数据应用一些 operators/functions 之后查询? (也许,被与 table 同名的函数隐藏,因此 'hides' 它)
如 docs 所述:
Applying this function to calculated data which is not attached to a data shard returns an empty value
如果我触发 .show table <TableName> extents
,我会看到带有标签的范围列表。但是,如果我尝试将这些标签与 table 数据一起列出,我会得到空白,因此以下查询 returns 空白标签:-
<TableName> | extend tags=extent_tags()
为什么会这样?
您是直接查询 table ,还是在对原始数据应用一些 operators/functions 之后查询? (也许,被与 table 同名的函数隐藏,因此 'hides' 它)
如 docs 所述:
Applying this function to calculated data which is not attached to a data shard returns an empty value