Presto 安装配置
https://prestodb.io/docs/current/installation/deployment.html
https://www.jianshu.com/p/520722be209e
[root@dev-presto2 /etc/presto/presto-server/etc ]# tree ..├── catalog│ ├── mongodb.properties│ ├── mysql.properties│ └── mysql_3.properties├── config.properties├── jvm.config├── log.properties└── node.properties
##cat jvm.config-server-Xmx16G-XX:+UseG1GC-XX:G1HeapRegionSize=32M-XX:+UseGCOverheadLimit-XX:+ExplicitGCInvokesConcurrent-XX:+HeapDumpOnOutOfMemoryError-XX:+ExitOnOutOfMemoryError-DHADOOP_USER_NAME=hdfs## cat config.propertiescoordinator=truenode-scheduler.include-coordinator=falsehttp-server.http.port=10008query.max-memory=50GBquery.max-memory-per-node=1GBquery.max-total-memory-per-node=2GBdiscovery-server.enabled=truediscovery.uri=http://192.168.1.151:10058## cat log.propertiescom.facebook.presto=INFO## cat node.propertiesnode.environment=productionnode.id=master01node.data-dir=/home/presto/presto-datadir## cat catalog/mysql.propertiesconnector.name=mysqlconnection-url=jdbc:mysql://192.168.9.9:3306connection-user=rootconnection-password=123123
