报错信息 | 报错原因 | 解决方案 |
QueryError [illegal_argument_exception.Cannot search on field [xxx] since it is not indexed.] | 查询字段xxx未开启键值索引 | 为该字段开启键值索引,详情请参见 键值索引 |
QueryError [illegal_argument_exception.Cannot search on Full-Text since it is not indexed.] | 未开启全文索引 | 开启全文检索,详情请参见 全文索引 |
QueryError [illegal_argument_exception.syntax error on field [and|or|not], or full text search is closed] | 检索条件不支持小写逻辑操作符,小写逻辑操作符会按照普通字段进行全文检索 | 使用大写逻辑操作符 AND|OR|NOT,如您并不需要逻辑操作,而是全文检索包含 and|or|not 的日志,请开启全文索引 |
QueryError [number_format_exception.For input string: ">"] | 数值比较语句语法错误 | 检查数值比较符号周围是否存在空格等特殊符号,正确格式参考 status:>400 |
QueryError [circuit_breaking_exception. Analysis data is too large,please reduce the scope of data query] | 查询数据量过大 | 适当缩减查询时间范围,精确检索条件。如果仍旧报错,请联系 技术支持 |
QueryError [parse_exception.parse_exception: Cannot parse 'xxx': '*' or '?' not allowed as first character in WildcardQuery | 不允许使用前缀模糊查询,例如 content:*example | 建议使用分词符将字段拆分为多个词,详情请参见 配置索引 |
QueryError [sql_illegal_argument_exception.cannot cast [13/Jul/2021:17:04:34] to [datetime]: failed to parse date field [13/Jul/2021:17:04:34] with format [date_optional_time]] | cast 不能转换 13/Jul/2021:17:04:34 格式的日期,仅支持 ISO 标准的时间格式和毫秒级 Unix 时间戳,例如 yyyy-MM-dd'T'HH:mm:ss.SSSZ 或者 yyyy-MM-dd | 修改时间字段的格式,或者使用__TIMESTAMP__ 内置字段 |
QueryError [verification_exception.Cannot order by non-grouped column [xxx], expected [xxx] or an aggregate function | 查询字段xxx未开启统计,不能用来排序 | 为该字段开启统计,详情请参见 分析简介 |
QueryError [verification_exception.Cannot use non-grouped column [xxx], expected [xxx]] | 查询字段xxx未开启统计 | 为该字段开启统计,详情请参见 分析简介 |
QueryError [verification_exception.Field [xxx] of data type [text] cannot be used for grouping] | 查询字段xxx未开启统计,不能用来 group | 为该字段开启统计,详情请参见 分析简介 |
QueryError [verification_exception.Unknown column [xxx]] | 查询字段xxx不存在 | 检查该字段名称是否正确 |
QueryError [verification_exception.Unknown function [xxxxxx]] | 不存在函数xxxxxx | |
QueryError [verification_exception.argument of [FUNCNAME(xxx)] must be [numeric], found value [xxx] type [text]] | 传入 FUNCNAME 函数的参数类型不正确,例如 SUM(level),level 字段为 text 类型时会报错 | 检查字段类型是否满足函数要求 |
QueryError [parse_exception.Failed to parse query [xxx]] | 查询语句语法错误 | 检查报错信息中指出的错误位置 |
QueryError [line X:X: XXX] | 查询语句语法错误 | 检查报错信息中指出的错误位置及错误原因 |
Internal error. Please try again later RequestId:[7be994d4-xxxx-xxxxx-xxxx-9c38xxxx65de] | CLS 内部错误 | |
SyntaxError[xxx] | SQL 语句部分存在语法错误 | 参考报错信息中的详细提示修正语法错误,其中 line x,column x 不包含检索条件部分(即"|"及其前面的部分) |
SearchTimeout | 查询超时 | 适当缩小数据查询范围及 SQL 复杂度,或稍后再试 |
LimitExceeded.LogSearch | 搜索并发超过限制 | 降低查询频率(包括 API),稍后再试。如当前查询频率并不高,仍旧报错,请联系 技术支持 |
本页内容是否解决了您的问题?