【StarRocks版本】例如:2.2.2
【集群规模】例如:3fe + 3be(fe与be混部)
drop resource hive0;
CREATE EXTERNAL RESOURCE “hive0”
PROPERTIES (
“type” = “hive”,
“hive.metastore.uris” = “thrift://test-002.test-hadoop.com:9083”
);CREATE EXTERNAL TABLE ext_zhaohe (
id bigint
) ENGINE=HIVE
PROPERTIES (
“resource” = “hive0”,
“database” = “test”,
“table” = “zhaohe”
);
查询hive2外表时,就一直卡住,这个表就1条数据,be fe 也没有任何报错信息。 请问这个要怎么排查