远程连接到Titan Server? [来自代码]

时间:2016-05-20 10:56:19

标签: scala titan gremlin

我想从我的代码(scala项目)连接到TitanDB。代码和gremlinserver / titandb位于两个不同的主机中。

在此example中,连接是从安装了titandb的同一主机进行的。 如果我不在同一主机中运行代码怎么办?

我想可能有一个配置文件,我在其中放置主机名和端口。但我找不到类似的东西。

所以问题是:是否可以从代码远程连接到Titan Server?

提前谢谢

2 个答案:

答案 0 :(得分:1)

我认为this可能会有所帮助。

您只需将应用程序连接到Titan DB的本地实例即可。您只需要正确配置每个Titan实例的索引和后端存储。

希望这有帮助。

答案 1 :(得分:0)

我不确定它如何与scala一起使用但是使用java,您可以根据概述here将配置文件传入工厂。 e.g。

graph = TitanFactory.open('path/to/configuration.properties')

在该配置中,您可以指定远程主机。