如何使用 rest api 获取 Apache drill 的执行时间?
How do I get the execution time for Apache drill using rest api?
我想使用一些休息 API 或是否有任何其他方法可用来获取 Apache drill 的总查询执行时间。
您将在配置文件中找到有关执行时间的信息。
获取 运行 的配置文件并完成查询。
向 http://drill_host:8047/profiles.json
发出 GET 请求
获取具有给定查询 ID 的查询的配置文件。
向 http://drill_host:8047/profiles/{queryid}.json
发出 GET 请求
查看 Drill docs 了解更多详细信息。
我想使用一些休息 API 或是否有任何其他方法可用来获取 Apache drill 的总查询执行时间。
您将在配置文件中找到有关执行时间的信息。
获取 运行 的配置文件并完成查询。
向
http://drill_host:8047/profiles.json
发出 GET 请求
获取具有给定查询 ID 的查询的配置文件。
向
http://drill_host:8047/profiles/{queryid}.json
发出 GET 请求
查看 Drill docs 了解更多详细信息。