gremlin> :remote connect tinkerpop.server conf/remote.yaml
==>Connected - localhost/127.0.0.1:8182
but when i try to add anything to the graph :
gremlin> :> g.addVertex('name','steve')
it throws this error:
WARN org.apache.tinkerpop.gremlin.driver.MessageSerializer - Response [UnpooledUnsafeDirectByteBuf(ridx: 136, widx: 136, cap: 136)] could not be deserialized by org.apache.tinkerpop.gremlin.driver.ser.GryoMessageSerializerV1d0.
WARN org.apache.tinkerpop.gremlin.driver.MessageSerializer - Response [UnpooledUnsafeDirectByteBuf(ridx: 102, widx: 102, cap: 102)] could not be deserialized by org.apache.tinkerpop.gremlin.driver.ser.GryoMessageSerializerV1d0.
Request timed out while processing - increase the timeout with the :remote command
and it either hangs or goes back to the gremlin console command line. I can't find much on this anywhere online, much help is apprecaited
thanks
--
You received this message because you are subscribed to the Google Groups "Gremlin-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to gremlin-user...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/gremlin-users/16b7e519-ed74-4334-adb8-3442358d5daa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To view this discussion on the web visit https://groups.google.com/d/msgid/gremlin-users/bf12acb1-c7ac-4bc5-b9a4-d8f86b515880%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/gremlin-users/CAA-H4389-bkyR6O6Ay0%3DfBOMQ_sAMo51BCkNAs64wvX937n%2BXA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
Coreys-MBP:titan-server-0.9.0-M1 coreysmaller$ bin/gremlin-server.sh
[INFO] GremlinServer -
\,,,/
(o o)
-----oOOo-(3)-oOOo-----
[INFO] GremlinServer - Configuring Gremlin Server from conf/gremlin-server.yaml
[INFO] MetricManager - Configured Metrics ConsoleReporter configured with report interval=180000ms
[INFO] MetricManager - Configured Metrics CsvReporter configured with report interval=180000ms to fileName=/tmp/gremlin-server-metrics.csv
[INFO] MetricManager - Configured Metrics JmxReporter configured with domain= and agentId=
[INFO] MetricManager - Configured Metrics Slf4jReporter configured with interval=180000ms and loggerName=com.tinkerpop.gremlin.server.Settings$Slf4jReporterMetrics
[INFO] ReflectiveConfigOptionLoader - Loaded and initialized config classes: 11 OK out of 12 attempts in Duration[45 ms]
[INFO] Reflections - Reflections took 54 ms to scan 1 urls, producing 0 keys and 0 values
[INFO] BasicConfiguration - Ignored configuration entry for gremlin.graph since it does not map to an option
java.lang.IllegalArgumentException: Unknown configuration element in namespace [root]: gremlin
at com.google.common.base.Preconditions.checkArgument(Preconditions.java:120)
at com.thinkaurelius.titan.diskstorage.configuration.ConfigElement.parse(ConfigElement.java:170)
at com.thinkaurelius.titan.diskstorage.configuration.BasicConfiguration.getAll(BasicConfiguration.java:80)
at com.thinkaurelius.titan.graphdb.configuration.GraphDatabaseConfiguration.<init>(GraphDatabaseConfiguration.java:1303)
at com.thinkaurelius.titan.core.TitanFactory.open(TitanFactory.java:91)
at com.thinkaurelius.titan.core.TitanFactory.open(TitanFactory.java:71)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at com.tinkerpop.gremlin.structure.util.GraphFactory.open(GraphFactory.java:57)
at com.tinkerpop.gremlin.structure.util.GraphFactory.open(GraphFactory.java:80)
at com.tinkerpop.gremlin.structure.util.GraphFactory.open(GraphFactory.java:96)
at com.tinkerpop.gremlin.server.Graphs.lambda$new$10(Graphs.java:29)
at com.tinkerpop.gremlin.server.Graphs$$Lambda$15/1151755506.accept(Unknown Source)
at java.util.LinkedHashMap$LinkedEntrySet.forEach(LinkedHashMap.java:663)
at com.tinkerpop.gremlin.server.Graphs.<init>(Graphs.java:27)
at com.tinkerpop.gremlin.server.GremlinServer.initializeGremlinExecutor(GremlinServer.java:121)
at com.tinkerpop.gremlin.server.GremlinServer.run(GremlinServer.java:74)
at com.tinkerpop.gremlin.server.GremlinServer.main(GremlinServer.java:176)
[INFO] BasicConfiguration - Ignored configuration entry for gremlin.graph since it does not map to an option
java.lang.IllegalArgumentException: Unknown configuration element in namespace [root]: gremlin
at com.google.common.base.Preconditions.checkArgument(Preconditions.java:120)
at com.thinkaurelius.titan.diskstorage.configuration.ConfigElement.parse(ConfigElement.java:170)
at com.thinkaurelius.titan.diskstorage.configuration.BasicConfiguration.getAll(BasicConfiguration.java:80)
at com.thinkaurelius.titan.graphdb.configuration.GraphDatabaseConfiguration.<init>(GraphDatabaseConfiguration.java:1316)
at com.thinkaurelius.titan.core.TitanFactory.open(TitanFactory.java:91)
at com.thinkaurelius.titan.core.TitanFactory.open(TitanFactory.java:71)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at com.tinkerpop.gremlin.structure.util.GraphFactory.open(GraphFactory.java:57)
at com.tinkerpop.gremlin.structure.util.GraphFactory.open(GraphFactory.java:80)
at com.tinkerpop.gremlin.structure.util.GraphFactory.open(GraphFactory.java:96)
at com.tinkerpop.gremlin.server.Graphs.lambda$new$10(Graphs.java:29)
at com.tinkerpop.gremlin.server.Graphs$$Lambda$15/1151755506.accept(Unknown Source)
at java.util.LinkedHashMap$LinkedEntrySet.forEach(LinkedHashMap.java:663)
at com.tinkerpop.gremlin.server.Graphs.<init>(Graphs.java:27)
at com.tinkerpop.gremlin.server.GremlinServer.initializeGremlinExecutor(GremlinServer.java:121)
at com.tinkerpop.gremlin.server.GremlinServer.run(GremlinServer.java:74)
at com.tinkerpop.gremlin.server.GremlinServer.main(GremlinServer.java:176)
[INFO] GraphDatabaseConfiguration - Set cluster.partition=false from store features
[INFO] GraphDatabaseConfiguration - Set default timestamp provider MICRO
[INFO] GraphDatabaseConfiguration - Generated unique-instance-id=0a00e3493514-Coreys-MBP1
[INFO] Backend - Initiated backend operations thread pool of size 16
[INFO] KCVSLog$MessagePuller - Loaded unidentified ReadMarker start time Timepoint[1432159681767000 μs] into com.thinkaurelius.titan.diskstorage.log.kcvs.KCVSLog$MessagePuller@b2c5e07
[INFO] Graphs - Graph [g] was successfully configured via [conf/titan-berkeleydb.properties].
[INFO] GremlinServer - Initialized Gremlin thread pool. Threads in pool named with pattern gremlin-*
[INFO] ScriptEngines - Loaded nashorn ScriptEngine
[INFO] ScriptEngines - Loaded gremlin-groovy ScriptEngine
[INFO] GremlinServer - Initialized GremlinExecutor and configured ScriptEngines.
[INFO] AbstractChannelizer - Configured application/vnd.gremlin-v1.0+kryo with com.tinkerpop.gremlin.driver.ser.KryoMessageSerializerV1d0
[INFO] AbstractChannelizer - Configured application/vnd.gremlin-v1.0+kryo-stringd with com.tinkerpop.gremlin.driver.ser.KryoMessageSerializerV1d0
[INFO] AbstractChannelizer - Configured application/vnd.gremlin-v1.0+json with com.tinkerpop.gremlin.driver.ser.JsonMessageSerializerGremlinV1d0
[INFO] AbstractChannelizer - Configured application/json with com.tinkerpop.gremlin.driver.ser.JsonMessageSerializerV1d0
[INFO] GremlinServer - Gremlin Server configured with worker thread pool of 1 and boss thread pool of 1
[INFO] GremlinServer - Channel started at port 8182.
5/20/15 4:11:00 PM =============================================================