Re: [orientdb] Massive Insert of Edges

2015-10-16 Thread W. Craig Trader
Simon ... AFAIK, you either use LW edges or HW edges -- there is no in-between; You choose when you create the database before you create your classes. Admittedly, I haven't played with trying to create a graph with both LW and HW edges. Orient Studio will work with either style of edges. The

Re: [orientdb] ODB download links on orientdb.com

2015-10-16 Thread W. Craig Trader
I use the following shell script to download the binary and source for each release: #! /bin/bash release=${1} storage=${HOME}/Software/orientdb binary="http://orientdb.com/download.php; source="https://github.com/orientechnologies/orientdb/archive; # Community release wget -O

[orientdb] Re: Strange behaviour on UPDATE in distributed mode: number of updated records

2015-10-16 Thread alessandrorota04
Hi, looking at the guide http://orientdb.com/docs/last/SQL-Update.html try this query update testClass set lock = true return after @rid Kind regards, Alessandro -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this

[orientdb] ODB download links on orientdb.com

2015-10-16 Thread Ata Annamamedov
Hi! Download links on http://orientdb.com/download/ are redirected for downloads statistics collection, I believe. More than often, you want to download from linux terminal and here I often face with some troubles. First is that for those who are not advanced linux "sysops" it takes extra

Re: [orientdb] ostico/phporient socket connection error in centos

2015-10-16 Thread Luigi Dell'Aquila
Could you please report this issue here: https://github.com/orientechnologies/PhpOrient/issues Thanks Luigi 2015-10-15 13:46 GMT+02:00 jaya raj : > *Hi,* > > I am using ostico/phporient official driver it will work fine in windows > but not working in centos. >

Re: [orientdb] Best way to host many orient databases

2015-10-16 Thread Luigi Dell'Aquila
Hi Michael, there is not general rule, just because it depends a lot on how many requests per second will every db have, how many data it will contain, how complex your queries are and so on. As a rule of thumb, I would not go over a few tens of (small) databases per instance, just because CPU,

Re: [orientdb] Re: Performance Question

2015-10-16 Thread Luca Garulli
Hi, 2.2-alpha is super old. You should try the new 2.2-beta from "develop" branch. To compile it run: . _base/script/deploy.sh Best Regards, Luca Garulli Founder & CEO OrientDB On 16 October 2015 at 11:00, syshex wrote: > Actually , just downloaded

[orientdb] Re: Performance Question

2015-10-16 Thread syshex
Hey Scott, Took a bit to reply. Been a busy week at the office and I usually only get Fridays to work on my stuff. So installed 2.1.4, ran through the Performance Documentation, and did a few configurations like described in the manual. Also, set JAVA_HOME for Java8. Ran through the queries

Re: [orientdb] ostico/phporient socket connection error in centos

2015-10-16 Thread jaya raj
Hi Luigi, I has opened this issue https://github.com/orientechnologies/PhpOrient/issues/13 On Friday, October 16, 2015 at 1:33:25 PM UTC+5:30, Luigi Dell'Aquila wrote: > > Could you please report this issue here: > > https://github.com/orientechnologies/PhpOrient/issues >

Re: [orientdb] ostico/phporient socket connection error in centos

2015-10-16 Thread Luigi Dell'Aquila
Great, thanks Luigi 2015-10-16 11:43 GMT+02:00 jaya raj : > Hi Luigi, > > I has opened this issue > > https://github.com/orientechnologies/PhpOrient/issues/13 > > > > > On Friday, October 16, 2015 at 1:33:25 PM UTC+5:30, Luigi Dell'Aquila >

[orientdb] Re: Performance Question

2015-10-16 Thread syshex
Actually , just downloaded the 2.2-alpha. Ran through the queries and got around the same values. If anything, they were slightly worst. On Friday, October 16, 2015 at 9:42:24 AM UTC+1, syshex wrote: > > Hey Scott, > > Took a bit to reply. Been a busy week at the office and I usually only

Re: [orientdb] Massive Insert of Edges

2015-10-16 Thread W. Craig Trader
Simon ... Are you using light-weight edges, or heavy-weight edges for your application? OrientDB represents LW edges as properties of the nodes they link, whereas HW edges are represented as unique objects and the nodes link to the the edges, which maintain the links to the opposite nodes. An

Re: [orientdb] Massive Insert of Edges

2015-10-16 Thread Simon White
Hi Craig, Thank you, thank you for this wonderful response - it is probably the best response I have received on this forum ever!! ;) and gives me a lot of food for thought. I am currently indeed using heavyweight edges, the reason is because we need to put a date stamp on many of our links

[orientdb] Setting distributed node name using start script

2015-10-16 Thread Pradeep Gowda
Hi Everyone, Is there any way to set node name using start script? I modified dserver.sh as below ${0/%dserver.sh/server.sh} -Ddistributed=true -DnodeName=${SOME_NAME_VAR} $* and added below line in orientdb-server-config.xml But node is not getting the name what I assigned. Can

Re: [orientdb] Re: Performance Question

2015-10-16 Thread syshex
Cloning develop branch now. Will compile and give it a crack once it finished cloning and I get some other stuff out of the way. Will get back with news on this. On Friday, October 16, 2015 at 11:49:37 AM UTC+1, l.garulli wrote: > > Hi, > 2.2-alpha is super old. You should try the new