本文主要是介绍【presto权威指南】常用操作,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
shell
./bin/launcher start
./bin/launcher status
./bin/launcher stop
/home/work/presto/bin/presto --server hadoop2:8443 --catalog hive --schema defult --debug --user ‘sdfyypt_2_0_eywa_admin’ //指定用户
presto -f 可以指定执行sql文件
presto -execute 可以指定执行sql
presto --output-format 执行输出格式 可用的选项有 ALIGNED、VERTICAL、CSV、TSV、CSV_HEADER、TSV_HEADER 和 NULL,默认值是 CSV。
presto --ignore-error 忽略执行中的错误
curl http://hadoop2:8443/v1/status/ |jq -r .
curl hadoop2:8443/v1/info |jq -r .
curl http://hadoop2:8443/v1/service/ |jq -r .
curl http://hadoop2:8443/v1/service/presto/general |jq -r . //检测presto coordinator中存储的worker节点信息
SQL
presto大小写不敏感
select * from system.runtime.nodes; 查看节点
show shcemas; 显示库
SHOW catalogs;
SHOW functions;
这篇关于【presto权威指南】常用操作的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!