titan/GraphDB noob here...im doing a basic Pacer Titan extensions tutorial here:
https://github.com/xnlogic/pacer/wiki/Pacer-extensions
this is my setup. Its in the controller of an MVC Jruby project.
require 'pacer-titan'
require 'lib/titan-berkeleyje-0.4.4.jar'
require 'lib/je-5.0.73.jar'
g = Pacer.titan Rails.root.join("config", "titan-berkeleydb.properties").to_s
g.transaction do
@lax = g.create_vertex(airport: 'LAX', city: 'Los Angeles')
@lga = g.create_vertex(airport: 'LGA', city: 'New York')
end
g.transaction do
# this is where it all crashes!~
@lga.add_edges_to(:flies_to, @lax, {airline: 'Delta'})
end
and here is the error:
Java::JavaLang::IllegalStateException (The feature supportsThreadIsolatedTransactions was not specified):
com.tinkerpop.blueprints.Features.checkCompliance(com/tinkerpop/blueprints/Features.java:189)
question is: where do I set SupportsThreadedIsolatedTransactions ? i tried
titan-berkeleyje-0.5.4.jar and titan-berkeleyje-0.5.0.jar
as well.
--
You received this message because you are subscribed to the Google Groups "pacer-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pacer-users...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.