Windows 错误 "The most significant bit.." 的 Gremlin 控制台

Gremlin Console for Windows error "The most significant bit.."

Gremlin 控制台似乎不适用于 Windows: 我下载了最新的 Gremlin 控制台和 运行 bin\gremlin.bat 文件。似乎在连接之后(如下面的命令)和 运行ning 一个简单的远程命令(g.V(123).count())我得到一个错误:

The most significant bit should be set according to the format

这是我的命令 运行:

PS C:\Users\L836423\Downloads\apache-tinkerpop-gremlin-console-3.4.7-bin\apache-tinkerpop-gremlin-console-3.4.7\bin> .\gremlin.bat

         \,,,/
         (o o)
-----oOOo-(3)-oOOo-----
plugin activated: tinkerpop.server
plugin activated: tinkerpop.utilities
plugin activated: tinkerpop.tinkergraph
gremlin> :remote connect tinkerpop.server conf/remote.yaml
log4j:WARN No appenders could be found for logger (com.jcabi.manifests.Manifests).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
==>Configured my_gremlin_dns.com/55.222.88.111:8182
gremlin> :remote console
==>All scripts will now be sent to Gremlin Server - [my_gremlin_dns.com/55.222.88.111:8182] - type ':remote console' to return to local mode
gremlin> g.V(123).count()
The most significant bit should be set according to the format
Type ':help' or ':h' for help.
Display stack trace? [yN]
gremlin>

当您连接的服务器不支持较新版本的 TinkerPop 使用的 Graph Binary 的字符串序列化时,就会发生这种情况。您将需要使用较旧的客户端。查看服务器支持什么级别,使用对应的Gremlin Client版本。

具体来说,更改作为 3.4.3 版本的一部分进入了 Gremlin 客户端。您的服务器需要至少是该版本才能使用 Gremlin Client >= 3.4.3

在 3.4.3 中,Gremlin 客户端的默认序列化程序已更改为 GraphBinary。您也可以编辑客户端读取的 YAML 文件中的设置以使用不同的序列化程序。