Painless 调试编辑

Debug.Explain编辑

Painless 没有 REPL,虽然将来有一天它可能会拥有 REPL,但这并不能完整地说明嵌入在 Elasticsearch 中的 Painless 脚本的调试方法,因为脚本可以访问的数据或“上下文”非常重要。目前,调试嵌入式脚本的最佳方法是在选择的位置抛出异常。虽然您可以抛出自己的异常(throw new Exception('whatever')),但 Painless 的沙箱会阻止您访问对象的类型等有用信息。因此,Painless 有一个实用方法 Debug.explain,它可以为您抛出异常。例如,您可以使用 _explain 来探索 脚本查询 可用的上下文。

PUT /hockey/_doc/1?refresh
{"first":"johnny","last":"gaudreau","goals":[9,27,1],"assists":[17,46,0],"gp":[26,82,1]}

POST /hockey/_explain/1
{
  "query": {
    "script": {
      "script": "Debug.explain(doc.goals)"
    }
  }
}

这表明 doc.first 的类是 org.elasticsearch.index.fielddata.ScriptDocValues.Longs,响应如下:

{
   "error": {
      "type": "script_exception",
      "to_string": "[1, 9, 27]",
      "painless_class": "org.elasticsearch.index.fielddata.ScriptDocValues.Longs",
      "java_class": "org.elasticsearch.index.fielddata.ScriptDocValues$Longs",
      ...
   },
   "status": 400
}

您可以使用相同的技巧来查看 _update API 中的 _sourceLinkedHashMap

POST /hockey/_update/1
{
  "script": "Debug.explain(ctx._source)"
}

响应如下所示:

{
  "error" : {
    "root_cause": ...,
    "type": "illegal_argument_exception",
    "reason": "failed to execute script",
    "caused_by": {
      "type": "script_exception",
      "to_string": "{gp=[26, 82, 1], last=gaudreau, assists=[17, 46, 0], first=johnny, goals=[9, 27, 1]}",
      "painless_class": "java.util.LinkedHashMap",
      "java_class": "java.util.LinkedHashMap",
      ...
    }
  },
  "status": 400
}

获得类后,您可以转到 Painless API 参考 以查看可用方法的列表。