我有一个像这样的图(G)-
$ docker exec $(docker ps | grep $(docker images -q aws_beanstalk/current-app) | awk '{print $1}') flask rq info
default | 0
1 queues, 0 jobs total
f89e0061ba39.13 idle: default
1 workers, 1 queues
Updated: 2019-02-01 08:24:40.154956
我想执行G JOIN G,所以结果图如下所示:
s d
1 2
2 3
3 4
4 5
相应的SQL查询为:
s d
1 3
2 4
3 5
使用GraphX有什么方法吗?任何建议或示例都会对我有很大帮助。