presto 跨数据源查询

2021-03-12  本文已影响0人  嘻嘻是小猪

配置好不同数据源:解压安装目录 /xxx/etc/catalog 下配置好不同数据源对应的.properties配置文件
[admin@slave1 catalog]# ll
total 8
-rw-r--r-- 1 admin root 76 Sep 17 16:32 hive.properties
-rw-r--r-- 1 admin root 59 Oct 10 15:49 mongodb_common.properties

select 
  * 
from 
( 
    select 
        cast(uid as varchar) as uid
        ,prize_id 
    from 
        mongodb_common.tss_hall_prize.cart --看这里
    where 
        uid=20054 
) a 
join
( 
    select 
      *
    from 
      hive.gdm.gdm_cus_game_di --看这里
    where 
      user_id='20054'
) b 
 on a.uid=b.user_id
上一篇下一篇

猜你喜欢

热点阅读