[orientdb] Re: How to determine full path with multiple starting points?

2015-07-22 Thread alessandrorota04
Hi Gary, if you want to get the path you can use this query: select $path from (traverse in(link) from [ starting nodes ]) Regards, Alessandro -- --- You received this message because you are subscribed to the Google Groups OrientDB group. To unsubscribe from this group and stop receiving

[orientdb] Re: How to determine full path with multiple starting points?

2015-07-22 Thread Gary Gendel
Alessandro, That wouldn't work because the paths are truncated when the traverse hits a pre-traversed path. That was the first thing I tried. However, I stumbled on the solution... select *,in(link) as parent from (traverse in(link) from [ starting nodes ]) Then I can use the parent value

[orientdb] Re: Load data from csv file

2015-07-22 Thread SavioL
Hi, you may use the ETL tool in this OrientDB. With this you can import the data directly into csv OrientDB, it is necessary that you you structure your db defining classes and edge. More info with an example you can find on help for ETL: Import from a CSV file to a Graph

[orientdb] Re: create an edge from json

2015-07-22 Thread Giulia Brignoli
Hi loadedlux, I'm not very clear what you want: you want to create an edge between two vertex using GraphAPI, right? Bye Giulia -- --- You received this message because you are subscribed to the Google Groups OrientDB group. To unsubscribe from this group and stop receiving emails from it,

Re: [orientdb] installation of orient db in distributed mode

2015-07-22 Thread Luigi Dell'Aquila
Hi Arpit, this is a good starting point: http://orientdb.com/docs/last/Tutorial-Setup-a-distributed-database.html http://orientdb.com/docs/last/Distributed-Architecture.html Let me know if you need further help Luigi 2015-07-21 15:03 GMT+02:00 Arpit Jain rptjain...@gmail.com: hello, Please

Re: [orientdb] Problem with the Size of HTTP Message Body

2015-07-22 Thread Luigi Dell'Aquila
Hi Athanassios, thanks for reporting, do you have any errors on the server side? Could you report server logs? I suggest you to open an issue here https://github.com/orientechnologies/orientdb/issues it will be much easier to track Thanks Luigi 2015-07-21 1:53 GMT+02:00 Athanassios Hatzis

[orientdb] Re: create an edge from json

2015-07-22 Thread loadedlux
Yes. But I would like to use JSON to create the edge. On Wednesday, July 22, 2015 at 3:28:20 AM UTC-4, Giulia Brignoli wrote: Hi loadedlux, I'm not very clear what you want: you want to create an edge between two vertex using GraphAPI, right? Bye Giulia -- --- You received this

Re: [orientdb] Re: installation of orient db in distributed mode

2015-07-22 Thread Luigi Dell'Aquila
Hi Arpit, in current release orientdb-dserver-config.xml is not there anymore, everything is in orientdb-server-config.xml It seems that the documentation is a little bit outdated there. If your nodes do not join each other, maybe your network does not allow multicast. Is it the case? You can

[orientdb] Re: Curious about Time Series Use Case

2015-07-22 Thread Eric24
Aha! Interesting that the bracket syntax is 4X faster than using the WHERE clause. That's a bit surprising, as I would have thought that the query optimizer would have arrived at the same execution plan for either syntax, since they are functionally the same. Anyone from Orient care to comment

[orientdb] Re: Samsung

2015-07-22 Thread stefan
Great! (j) Thanks, -Stefan On Wednesday, July 22, 2015 at 1:25:26 PM UTC, xvik wrote: look to the date :) среда, 22 июля 2015 г., 19:23:41 UTC+6 пользователь ste...@activitystream.com написал: Hi, I came across this piece:

Re: [orientdb] Re: Curious about Time Series Use Case

2015-07-22 Thread Luigi Dell'Aquila
Hi Eric, at this stage the query executor is not smart enough to understand that the two syntaxes have the same meaning, it just executes some of the elaboration steps (eg. square bracket filtering) the way they are declared. There are very important plans about this in the roadmap. In 2.1 we

[orientdb] Samsung

2015-07-22 Thread stefan
Hi, I came across this piece: http://sdtimes.com/samsung-acquires-orientdb-apple-accepts-watchkit-app-submissions-meteor-1-1-released-sd-times-news-digest-april-1-2015/ Do not recall seeing this mentioned here and I curious. - Is this true? - Will it affect the free forever promise ? -

Re: [orientdb] Re: Curious about Time Series Use Case

2015-07-22 Thread Eric Lenington
@Luigi: Excellent. Thanks for the quick and detailed response! --Eric On Wed, Jul 22, 2015 at 8:21 AM, Luigi Dell'Aquila luigi.dellaqu...@gmail.com wrote: Hi Eric, at this stage the query executor is not smart enough to understand that the two syntaxes have the same meaning, it just

[orientdb] Re: Samsung

2015-07-22 Thread xvik
look to the date :) среда, 22 июля 2015 г., 19:23:41 UTC+6 пользователь ste...@activitystream.com написал: Hi, I came across this piece: http://sdtimes.com/samsung-acquires-orientdb-apple-accepts-watchkit-app-submissions-meteor-1-1-released-sd-times-news-digest-april-1-2015/ Do not

[orientdb] How to determine full path with multiple starting points?

2015-07-22 Thread Gary Gendel
I've got a graph that I need to collect information from several vertex to a root vertex (i.e.each one possible disjoint tree). The number of vertex to the head is user-defined and can be calculated but it can also be differently defined for each tree which makes it a pain to use a select.

[orientdb] Re: Curious about Time Series Use Case

2015-07-22 Thread alessandrorota04
Hi, at this link http://orientdb.com/orientdb-improved-sql-filtering/ I have founded Squared brackets [] allow to: - filtering by one index, example out()[0] - filtering by multiple indexes, example out()[0,2,4] - filtering by ranges, example out()[0-9] - filtering by equal conditions (only

[orientdb] Solr on top of Orientdb Lucene index files

2015-07-22 Thread stefan
Hi, Has anyone here tried to run Solr on top the lucene file created by Orientdb? Regards, -Stefán -- --- You received this message because you are subscribed to the Google Groups OrientDB group. To unsubscribe from this group and stop receiving emails from it, send an email to

[orientdb] [announcement] Released OrientDB 2.0.13

2015-07-22 Thread Luca Garulli
Hi guys, I've just released *OrientDB 2.0.13*. This is a hofix to the *2.0.x* branch. The most important issue we fixed is a memory leak when OrientDB runs distributed. If you are in production with a 2.0.x, I suggest you to upgrade soon. This release is 100% compatible with any 2.0.x, so you

[orientdb] Re: update a record to set link type column

2015-07-22 Thread user . work110
Hi, Can you give me your code? Regards, Marco Il giorno mercoledì 22 luglio 2015 16:38:31 UTC+2, Vipul Maheshwari ha scritto: I am using orientjs driver, and trying to update a record. The record which i am updating has a column of type link but when i pass in the rid it throws an error.

[orientdb] Load data from csv file

2015-07-22 Thread Nicolás Suárez
Dear all, I have a CSV file containing a long list of bank transactions made between lots of different people. Each record has: * Transaction ID, * ID from the person giving the money (account holder or counterpart), * ID from the person receiving the money (account holder or counterpart), *

[orientdb] update a record to set link type column

2015-07-22 Thread Vipul Maheshwari
I am using orientjs driver, and trying to update a record. The record which i am updating has a column of type link but when i pass in the rid it throws an error. Can someone suggest me how to do this? -- --- You received this message because you are subscribed to the Google Groups OrientDB

Re: [orientdb] Re: exception-Transaction was rolled back more times than it was started.

2015-07-22 Thread Andrey Lomakin
Do you use the same graphdb instance for all threads ? On Wed, Jul 22, 2015 at 6:10 AM Arpit Jain rptjain...@gmail.com wrote: Hi, this exception emerges when i used to start creating graph in a while loop using multiple thread(java function). this exception shows only first 3-4 seconds at