Re: [orientdb] Re: destination vertex is null error in ETL

2015-10-05 Thread Luca Garulli
Hi Ricardo, But where is the styles.csv file? Best Regards, Luca Garulli Founder & CEO OrientDB On 6 October 2015 at 01:23, Ricardo A. Pasquini wrote: > Just to clarify my OrientDB version is 2.1.2 GA Community Edition > (September 9, 2015) for windows 64. > > > On Mond

[orientdb] Re: destination vertex is null error in ETL

2015-10-05 Thread Ricardo A. Pasquini
Just to clarify my OrientDB version is 2.1.2 GA Community Edition (September 9, 2015) for windows 64. On Monday, October 5, 2015 at 5:36:07 PM UTC-3, Ricardo A. Pasquini wrote: > > Hi there, > Ive been trying to use the ETL module for a particular application and > repeatedly find the "destinat

Re: [orientdb] Issue with FULLTEXT using Lucene on 12.1.3

2015-10-05 Thread Enrico Risa
Hi syshex can you paste here the result of explain SELECT * FROM Supertable WHERE description LUCENE "limpeza*" 2015-10-05 20:07 GMT+02:00 syshex : > Hi everyone. > > I've got a table named Supertable with a String field called description. > > Created a Lucene index on it, like so : > > create

[orientdb] Issue with FULLTEXT using Lucene on 12.1.3

2015-10-05 Thread syshex
Hi everyone. I've got a table named Supertable with a String field called description. Created a Lucene index on it, like so : create index Supertable.description on Supertable (description) FULLTEXT ENGINE LUCENE return from studio was that the index was created, with 1150 indexed. If I qu

[orientdb] Re: Traversal with Edge Properties

2015-10-05 Thread Sung Eun Choi
Thank you for the help! Sung -- --- 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 orient-database+unsubscr...@googlegroups.com. For more options, visit https://gro

[orientdb] Connection overhead (performance testing OrientDB with PHP driver)

2015-10-05 Thread mindplay.dk
I have 2.5 million articles loaded up with a LUCENE index, and the results look pretty good so far, with one notable exception. (I will get to that) For the moment, I'm wondering if (or why) connection overhead seems to be considerably higher than query overhead. For example, $client->dbOpen("m

[orientdb] Re: Traversal with Edge Properties

2015-10-05 Thread user . work111
Jan, Your query does the same thing like mine. Regards, Michela -- --- 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 orient-database+unsubscr...@googlegroups.com.

Re: [orientdb] Get all ancestors from vector ?

2015-10-05 Thread Sebastien Berthezene
I think you are right, it seems to come from my data. When i dump the document #12:14, i have an embedded object "In_HasDocument" pointing to the edge. It is strange and not the case for Folder objects where i can see in and out edges. Here is the way i create this HasDocument edge (Java) : Objec

[orientdb] Re: Traversal with Edge Properties

2015-10-05 Thread Jan Plaček
I think I found out how to do that: select from ( traverse out_permissions, in from A while ((@class = 'permission' AND r = true) OR @class <> 'permission') ) where @class <> 'permission' The idea is to traverse both verticies and edges. Then check r property only on edge. And finally selecti

[orientdb] Return of (fixed) 2.0 issue in 2.1: NoClassDefFoundError for ODatabaseRecordThreadLocal

2015-10-05 Thread Roar
I'm trying to upgrade from 2.0 to 2.1.3 and ran into the same issue that I had when upgrading from 1.7 to 2.0, see previous question. 2015-10-05 11:28:19,701 [Thread-3] ERROR OSGiLogger - blueprints.orientdb [57]: [ERR

[orientdb] Re: Traversal with Edge Properties

2015-10-05 Thread Jan Plaček
If I am not mistaken that would return all verticies of class Class having at least one incoming or outgoing edge with r=true. However that would also include Verticies which are not (transitively) connected between themselfs and it also doesn't take into account edge orientation. I would sugge

Re: [orientdb] Get all ancestors from vector ?

2015-10-05 Thread Luigi Dell'Aquila
Hi Sebastien, the syntax is correct, in() operator is the right one. I think you have some problems in your data. Could you please post result of the following queries? select from #12:14 select inE() from #12:14 select expand(inE()) from #12:14 select in from #12:14 Thanks Luigi 2015-10-05

[orientdb] Re: Get all ancestors from vector ?

2015-10-05 Thread user . work111
Hi Sebastien, Can you send me your database (even privately) so I can do more tests? Regards, Michela -- --- 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 orient-

Re: [orientdb] Get all ancestors from vector ?

2015-10-05 Thread Sebastien Berthezene
I tried using direct ID but not working also : "select from (traverse in() from #12:14)" To be clear, i used the studio editor or console to test my query. The result always return the vertex itself and additional column "IN HasDocument" that is the edge i want to traverse back. Basically i can r

[orientdb] Re: Traversal with Edge Properties

2015-10-05 Thread user . work111
Hi Sung, Try this: select from Class where @rid in (select out from permissions where r=true) or @rid in (select in from permissions where r=true) Regards, Michela -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this gr

Re: [orientdb] Get all ancestors from vector ?

2015-10-05 Thread Luigi Dell'Aquila
Hi Sebastien, it is very strange, your query is correct, so it's supposed to return the right results. Could you please check if the select subquery returns the right document? Thanks Luigi 2015-10-02 17:38 GMT+02:00 Sebastien Berthezene : > Hi, > > I a new to OrientDB then not very comfortab