1

使用 Amazon EMR、Hive .13、Hadoop 2.x 和 Presto Server 0.89。尝试设置 Presto 来查询通常通过 Hive 查询的数据。Hive 元数据存储在 MySQL 中。Presto Server 安装在所有节点上。在大多数情况下,一切都按照 prestodb.io 上的文档进行设置。

我首先在所有节点(协调器和工作器)上启动服务器,然后在协调器/名称节点上启动 CLI。当我尝试使用以下命令运行查询时,我收到“查询...没有可用的工作节点”错误:

presto-cli presto-cli --server localhost:8080 --catalog jmx --schema default 
presto:default> SELECT * FROM sys.node;
"Query ... No worker nodes available"

如果我包括node-scheduler.include-coordinator=true在协调器 config.properties 文件中包含 ,则此查询返回 1 个节点。

配置:

etc/config.properties(仅在协调器上)

coordinator=true
node-scheduler.include-coordinator=false
http-server.http.port=8080
task.max-memory=1GB
discovery-server.enabled=true
discovery.uri=http://aws.internal.ip.of.coordinator:8080 

etc/config.properties(仅在工作人员上)

coordinator=false
http-server.http.port=8080
task.max-memory=1GB
discovery.uri=http://aws.internal.ip.of.coordinator:8080  

etc/catalog/hive.properties(所有节点)

connector.name=hive-hadoop2
hive.metastore.uri=thrift://aws.internal.ip.of.coordinator:9083  

etc/catalog/jmx.properties(所有节点)

connector.name=jmx   

etc/jvm.config(所有节点)

-server
-Xmx16G
-XX:+UseConcMarkSweepGC
-XX:+ExplicitGCInvokesConcurrent
-XX:+CMSClassUnloadingEnabled
-XX:+AggressiveOpts
-XX:+HeapDumpOnOutOfMemoryError
-XX:OnOutOfMemoryError=kill -9 %p
-XX:ReservedCodeCacheSize=150M    

等/log.properties

com.facebook.presto=INFO 

等/node.properties

node.environment=production
node.id=unique-uuid #used uuidgen
node.data-dir=/mnt/presto-data
4

1 回答 1

1

我的一个简单错误是使它无法运行。aws.internal.ip.of.coordinator我的IP 地址中有一个随机分号而不是句点。查看我的配置,我只是没有看到它。

上述代码将在与上述类似的 Amazon EMR 多节点集群上运行。

于 2015-01-09T23:02:57.357 回答