OrientDB is an open source NoSQL document/graph-based database management system.

learn more… | top users | synonyms (1)

0
votes
0answers
20 views

How to store type 'Object' in OrientDB with OObjectDatabaseTx?

Right now, I have this situation: public class Person { private String name; private String surname; private Object extra; } When I try to save this in OrientDB I get this exception: ...
0
votes
1answer
15 views

Secondary Index in OrientDB

Is there a way to specify a secondary index in OrientDB? I need something that have all the documents references that have a specified field (like indexable=true).
0
votes
1answer
34 views

Navigate through a “chain” in OrientDB

Background: I am new in OrientDB, I will test it in Java for some days to see if it is the DB that I need. Context: Suppose you have something similar to a LinkedList, but made with vertex and ...
0
votes
1answer
22 views

Gremlin-Traversing Find all vertex not related to a specific vertex

This is the scenario: I have a number of users vertex in a orient-db. I want to retrieve all users that are NOT friend of a specific user where friend are an edge. I need the gremlin command to that. ...
0
votes
2answers
54 views

How to create relationships in Orient-DB?

I having a stuck with relationships in Orient-DB. My problem is i dont know how to create relationships in orient-DB? I was read document and see it have command CREATE LINK. but i dont know how do ...
0
votes
0answers
45 views

OrientDB Record Level Security in Web Application

I'm using OrientDB 1.3 on a Web Application, and decided to give a go on the Record Level security feature for data authorization. The thing is: As far as I know, Record Security needs the connection ...
2
votes
2answers
93 views

Queueing Method Calls So That They Are Performed By A Single Thread In Clojure

I'm building a wrapper around OrientDB in Clojure. One of the biggest limitations (IMHO) of OrientDB is that the ODatabaseDocumentTx is not thread-safe, and yet the lifetime of this thing from ...
0
votes
1answer
20 views

OrientDB: AND operator inside eval() function

We have a very complex query and we are using eval() function to evaluate some data. But it seems AND operator is not handled properly inside eval(). For example: if(eval('#20:34 IN ...
2
votes
1answer
89 views

Get visited edges in OrientDB's shortestPath()

I am new to OrientDB and I want to use the new shortestPath() method to get the edges that are between two vertices. What I do is: OSQLSynchQuery<T> sql = new OSQLSynchQuery<T>("select ...
0
votes
2answers
91 views

Tinkerpop Blueprints Vertex Query

I've been researching the Tinkerpop stack for quite a while. I think I have a good idea of what it can do and what databases it works well with. I've got a couple of different databases I'm thinking ...
0
votes
0answers
20 views

Orientdb javascript functions import external js libraries

I was wondering if it were possibile to load external javascript libraries ( require()? load()?) from within a orientdb javascript server function. Rhino should support it, right? Any help ...
0
votes
2answers
161 views

Database design: Mysql or MongoDb/OrientDb to mapping relations? [closed]

I need an advice. I'm developing a web application written in PHP with a few entity but a lot of (by number and type of) relation. Simple examples: Entities: 4 Possible relations ManyToMany and ...
0
votes
0answers
56 views

error with deploying a bundle to osgi with dependency orientdb

I have created a maven project which uses some APIs from dependency orientdb-core.jar. Then I want to package it as a bundle using maven-bundle-plugin and deploy it to osgi container. Here is the ...
1
vote
2answers
101 views

Summing data up a tree data structure (in a graph database)

I have a tree data structure in which data is entered at the leaf nodes. What I want to do is sum this data up the tree e.g. for any node in the tree, sum up all the data underneath it. Are there any ...
0
votes
1answer
111 views

Trying to work with OrientDB

I am trying this simple code: import java.util.List; import com.orientechnologies.orient.core.exception.OStorageException; import com.orientechnologies.orient.core.sql.query.OSQLSynchQuery; import ...
0
votes
1answer
73 views

OrientDB REST API available on same web-app as embedded server (using a relative path)

I'm writing a web-app for distribution, with an embedded OrientDB, and was wondering if you could give me some clues on how to also bundle OrientDB Studio, without having to use the built-in web ...
1
vote
0answers
62 views

getHardwareAddress not working on IBMi (iSeries) reqd for OrientDB

I am actually trying to run OrientDB on IBMi (iSeries, AS/400, V540, JDK6-32-bit last CUM PTFs applied). One of the things that OrientDB does early on (so to speak) is try to find at least one mac ...
0
votes
2answers
154 views

OrientDb select property together with flatten function

In an OrientDb graph database, I'm trying to determine some properties for pairs of vertices. To simplify it, i'm first trying to get some information about Vertex, Edge pairs: select label, ...
4
votes
5answers
233 views

Which NoSQL Implementation is Most Appropriate?

I'm new to NoSQL, and I'm scratching my head trying to figure out the most appropriate NoSQL implementation for the application I'm trying to build. My Java application needs to have an in-memory ...
0
votes
1answer
114 views

OrientDB POJO Method proxy not working properly

I am using the OObjectDatabaseTx implementation of OrientDB to store my POJOs in the database. When I try to retrieve some POJOs with a SQL commant, I get the result set but the attributes of the ...
0
votes
1answer
141 views

Infinite recursion when serializing OrientDB RecordID

In my schema I have an abstract class like this: @JsonAutoDetect(JsonMethod.NONE) public abstract class AbstractEntity { @Id private Object id; @Version private Integer version; public ...
0
votes
1answer
59 views

Is there something like @MappedSuperclass for OrientDB?

I want to create an AbstractEntity class for id & version fields, so I don't have to declare those fields & accessors in every entity class. Something like: public abstract class ...
1
vote
2answers
95 views

OrientDB Security - Javascript

We are using OrientDB Server as our DB for our mobile Application. Since we are using Javascript and REST Api for communication between OrientDB and our Application, our username and password is not ...
0
votes
1answer
64 views

Does orient DB support group by operation?

I think the answer is no, but i still want to confirm My use case is as follows: 1)Get sub graph between source and destination. 2)Then for each node in subgraph obtained in step 1 , do some ...
0
votes
1answer
194 views

Tinkerpop - how do I find a node in the graph?

I can't seem to find a specific node in the graph without traversing the whole thing. Is there something I'm missing? I'm using tinkerpop blueprints. Orientdb gives some sort of unsemantic id to a ...
1
vote
0answers
93 views

OrientDB - copy database to remote server error

Sorry for asking question again, but I cannot get this to work. Firstly, I start an OrientDB server on 204, Then I start an OrientDB server on my local machine, and create a database orientdb> ...
0
votes
1answer
33 views

loading a graph with till Depth N in main memory in java

How to load a entire graph rooted at vertex V in java ? I have a veertex V which is root node.Now this is connected to Some other vertex which intern is connected to more vertices and so on. I want ...
0
votes
1answer
202 views

OrientDB - How can I create database on a clustering servers?

I setup two nodes with the default configuration, cluster status: "members": [{ "id": "192.168.1.101:2434", "listeners": [{"protocol": "ONetworkProtocolBinary", "listen": ...
0
votes
0answers
32 views

altering table schema using java code

I create a class MyClass as follows public class MyClass{ private Stirng name; } Registered it using java code in orinetDB. Added some records Now i modified MyClass as follows.I added some ...
0
votes
1answer
332 views

OrientDB - Performance with big data

I'm using OrientDB in my project, what I really concern about is the performance. I created big data to test it, with 500 000 persons and 500 000 interests, and random relationships between persons ...
0
votes
1answer
120 views

Nested records in orientDB and querying the same

I need to store a graph with vertices and edges.My use case is as follows: Each vertex has following properties. There are some basic properites like name , age etc and then there are some record ...
0
votes
1answer
44 views

Can edges have Set of properties (by set i mean multi valued atributes)

Suppose i have a two vertexes A and B. Can the edge between this vertices have Set of properties. By Set i mean Set. Not a map of key values. EG Edge from A to B has Set tags. I want model ...
0
votes
1answer
61 views

unabale to create edge from one node to other

How can i create a edge between 2 class instances in orinetDb. I have my class Xyz in Db with following properties #| RID |name --+---------+------------ 0| #99:6|abc 1| #99:7|xyz ...
0
votes
0answers
70 views

how graph Db handles filtering at each node based on some condition

As per my understanding of orientDB it supports schema less and schema database. In my case each vertex has some properties for now and tomorrow more properties can be added Assume i have a class ...
0
votes
1answer
170 views

Why OrientDB doesn't use indexes for searching with “LIKE” operator?

I found that OrientDB is too slow (at least much slower than Neo4j) even on relatively small (150K) datasets when searching records by text pattern despite the presence of indices. For example I have ...
0
votes
1answer
206 views

find all paths between 2 vertices by only considering vertex where propertyname = value

I am having a a traversal use case as follows .Does orientDb supports it? 1)Find all paths from node1 to node2 .ONLY TRAVERSE those nodes which has property xyz="val1" 2)Find shortest path .ONLY ...
0
votes
1answer
90 views

OrientDB - How to update list entries in a record

Node class contains a property 'OutLinks' of type list. How to update list entries of a particular node instance I am using rest api. REST URI is http://x.x.x.x.:2480/command/xxx/sql Post body ...
0
votes
0answers
63 views

Codeigniter loading a helper without the “_helper” suffix?

I am trying to implement a OrientDB HTTP connection in Code Igniter, but I can't quite decide how to go about it. Basically, I am using the php code found here, and I cannot decide whether to make ...
0
votes
2answers
104 views

Retrival time of orient DB while finding paths between 2 vertex

We have a use case where we need to to use graph db.There are around 10000 nodes and 1000000 edges (approx). Now i need to query like this. For any 2 vertex find all possible paths between them. ...
0
votes
1answer
145 views

TinkerPop Blueprints and Frames - How to treat data as collections

I found this question How to store and retrieve different types of Vertices with the Tinkerpop/Blueprints graph API? But it's not a clear answer for me. How do I query the 10 most recent articles vs ...
0
votes
1answer
273 views

Use Gremlin with Java API for OrientDB

I'm using Gremlin to traverse OrientDB, but I'm not quite understand the demo code from here OrientDB Gremlin Wiki Here is my code, what's wrong with this code? // create sample node and ...
0
votes
1answer
107 views

Returned JSON in Orientdb Using Function

I tried to execute this code using functions at OrientDB Studio. commandResult = db.executeCommand('insert into user (facebookId,instagramId) values ("' + facebookId +'","'+ instagramId +'"); if( ...
1
vote
1answer
140 views

Is OrientDB suitable for social network analytics?

I'm trying to use OrientDB for social network analytics, but is it suitable for that? In my application, there might be billions of nodes and relationship, since OrientDB support distributed servers, ...
0
votes
0answers
99 views

Graph Database Web Application Design

How can I resolve this problem? Suppose that the application has the following relationship in a graph database: Bob (vertex - id: 1) ------- knows (edge) --------> Mary (vertex - id: 2) Bob ...
1
vote
1answer
109 views

OrientDB Reverse Proxy with Apache

I am using OrientDB to serve as a RESTful way to do GET and POST data back and forth to my AJAX application. I have now setup Apache to serve out the AJAX application and do reverse proxy to the ...
0
votes
0answers
128 views

Orientdb Restful API

We are using Orientdb for our project. Our orientdb is installed to http://orientdbserver.com:2480/ Our project is in another server, let's call it http://development.com/ Now my question, how are ...
0
votes
1answer
196 views

Unable to load OrientDB rw - “Cannot load database's configuration. The database seems to be corrupted.”

I am trying to configure a database for an application I am writing. I have started up the OrientDB server and have created a database, as well as a username and password. I hope to be able to tie my ...
1
vote
1answer
123 views

PHP Warning: A session is active. You cannot change the session module's ini settings at this time in /../

I created my custom PHP session handler and sometimes I get the PHP warning: PHP Warning: curl_exec(): A session is active. You cannot change the session module's ini settings at this time in This ...
0
votes
0answers
164 views

OrientDB find by Id query

Iam using orientDB's objectDB I have a POJO public class Meeting { @Id private String id; private String meetingName; private Date heldOn; public void setMeetingName(String meetingName) { ...
0
votes
1answer
79 views

Remove a specific vertex and all its edges using native raw implementation

Hello I am a new user of OrientDB and its java api. I use the Native raw implementation of the GrapDatabase because I want maximum performance. How do I remove a specific vertex and all its edges ...

1 2 3