Questions tagged [bitsy]

Bitsy is a small, fast, embeddable, durable in-memory graph database that implements the Blueprints API.

Bitsy is a small, fast, embeddable, durable in-memory graph database that implements the Blueprints API.

  • Support for most Blueprints features including key indices and threaded transactions
  • ACID guarantees on transactions
  • Designed for multi-threaded OLTP applications
  • Implements optimistic concurrency control
  • Data stored in readable text files
  • Serialization using the Jackson JSON processor
  • Recovers cleanly from power failures and crashes provided the underlying file system supports metadata journaling, like NTFS, ext3, ext4, XFS and JFS (not FAT32 or ext2)
  • High read and write throughputs in multi-threaded environments
  • Supports online backups through a JMX interface
4 questions
1
vote
1 answer

How to connect gremlin with bitsy database?

I've been trying to connect to a Bitsy graphDB which already contains some data from gremlin 2.5.0(groovy). I'm doing this from the gremlin shell and haven't yet tried referencing the classes from eclipse. gremlin> BitsyGraph g = new…
0
votes
1 answer

Gremlin Driver Cannot Deserialize Response from Germlin Servier Running Bitsy Database

I'm running a gremlin server with bitsy using the conf and properties file given in the github repo (https://github.com/lambdazen/bitsy/tree/master/src/test/resources/gremlin-server). I have, of course, changed dbPath to an appropriate path. My…
Ell
  • 4,238
  • 6
  • 34
  • 60
0
votes
1 answer

How to make Bitsy work in Glassfish with Jython from multiple Flask routes? (BitsyException: INSTANCE_ALREADY_EXISTS)

I am running into a snag with my code, and am hoping someone can help. I have an application I am building, where I am being forced to use Java and deploy it to a Glassfish 3.1 server. This is not how I normally prefer to work, as I am more of a…
Cliff Hill
  • 121
  • 2
  • 8
0
votes
1 answer

Accessing bitsy using gremlin from a java application

i have a java application which writes network state information into Bitsy. which seems to be working fine since i can retrieve the stored data within that thread. I also have another class where i am trying to use gremlin to retrieve the…