[orientdb] Re: OrientDB in Google Cloud Container Engine

2017-06-06 Thread 'scott molinari' via OrientDB
I personally don't think there are any official docs with that kind of information. There is a container build of ODB, but that is about it. https://hub.docker.com/_/orientdb/ Docs: http://orientdb.com/docs/last/Docker-Home.html This discussion might be of interest too.

[orientdb] Re: Edge @rid on IN property of Vertex appears as document in stead of #xx:x on OrientJS transaction

2017-04-20 Thread 'scott molinari' via OrientDB
The V1, V2 and e1 are 3 distinct classes. So, you have 3 distinct documents. I am guessing, the creation of an edge takes two saves to the document, thus you have 2 versions. In other words, when you look at V2, it is one document. When you look at the edge, it is a different document. (using

[orientdb] Re: Where can I find the document or tutorial on latest release

2017-04-20 Thread 'scott molinari' via OrientDB
What is it you are looking to configure? Scott -- --- 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

[orientdb] Re: How do I conditionally create edges between a nodes based on property matching in both S and T?

2017-04-20 Thread 'scott molinari' via OrientDB
Can you use a aliases? CREATE EDGE myEdge FROM (SELECT Label1 AS NodeLabel1, Label2 AS NodeLabel2 WHERE @RID = #25:0) TO (SELECT FROM NodeClass2 WHERE Label1 = NodeLabel1 AND Label2 = NodeLabel2 ) It's just a wild guess and not tested. Scott -- --- You received this message because you

[orientdb] Re: How come you gone silent?

2017-03-08 Thread 'scott molinari' via OrientDB
This issue? https://github.com/orientechnologies/orientdb/issues/7187 That issue got a quick reply and a work around. I think the ODB team answered well (as they usually do). You have to give them some time to get the final correction done. Scott -- --- You received this message because

Re: [orientdb] Open db in read-only mode, possible?

2017-03-08 Thread 'scott molinari' via OrientDB
Ok. I understand the situation now. For my own curiosity, what is causing the requirement for using ODB with a read only file system? Scott -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and stop receiving

Re: [orientdb] Open db in read-only mode, possible?

2017-03-07 Thread 'scott molinari' via OrientDB
Yes, that was the initial intended solution, however, the database could be locked down over user roles and permissions too. The question is, would that also offer a proper solution? Scott -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To

Re: [orientdb] Open db in read-only mode, possible?

2017-03-06 Thread 'scott molinari' via OrientDB
Would setting a user with read only access work? http://orientdb.com/docs/2.2/Database-Security.html Scott -- --- 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] Re: Cross tenant edge creation?

2017-03-01 Thread 'scott molinari' via OrientDB
That is an interesting use case. I'd also like to know the proper answer. Scott -- --- 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] Re: Graph Calendar Query

2017-02-06 Thread 'scott molinari' via OrientDB
Could you use the UNION example, but with an IN on the YEAR? i.e. WHERE year IN ["2014", "2015", "2016"] Scott -- --- 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

[orientdb] Re: Graph Calendar Query

2017-02-06 Thread 'scott molinari' via OrientDB
Does this help? http://orientdb.com/docs/2.2/Time-series-use-case.html#join-multiple-hours Scott -- --- 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] Re: What is the difference between the types EMBEDDED and EMBEDDED MAP?

2017-02-01 Thread 'scott molinari' via OrientDB
>From my understanding, the embedded type basically allows for storing data with no structure whatsoever. So, you can basically do what you want with the embedded. With embedded map, you must enter key value pairs, where the key must be a string. So, if you JSON item isn't a key value pair,

Re: [orientdb] What does "M1" in 3.0 M1 mean?

2017-01-31 Thread 'scott molinari' via OrientDB
Morning Luigi! Thanks for the clarification. If I wanted to read up on what has been achieved in milestone 1, where would I go? Scott -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and stop receiving

[orientdb] What does "M1" in 3.0 M1 mean?

2017-01-31 Thread 'scott molinari' via OrientDB
I noticed it mentioned by Luca and Luigi and was just wondering. Scott -- --- 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

Re: [orientdb] Re: Location of the Binary API code

2016-12-07 Thread 'scott molinari' via OrientDB
Yes. The client/ server binary protocol is what I meant. The answer to my question was actually in the documentation. :-) Scott -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and stop receiving emails from

[orientdb] Re: Location of the Binary API code

2016-12-07 Thread 'scott molinari' via OrientDB
Nevermind. I've got it! Scott -- --- 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

[orientdb] Re: Location of the Binary API code

2016-12-07 Thread 'scott molinari' via OrientDB
I think I have the right code, I'd just like to be doubly sure. Scott -- --- 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] Location of the Binary API code

2016-12-05 Thread 'scott molinari' via OrientDB
Hi, This may seem like a strange and nooby question, but where in the expanses of the ODB code can I find the actual binary API code? Scott -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and stop receiving

[orientdb] Re: Local Cache in OrientDB v2.0

2016-10-26 Thread 'scott molinari' via OrientDB
It might be better to start a new thread and to explain what your problem is again, than reply to a very old one. Scott -- --- 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

[orientdb] Re: Namespacing for classes

2016-10-19 Thread 'scott molinari' via OrientDB
There is also this OEP for version 3.0 suggested for namespaces. https://github.com/orientechnologies/orientdb-labs/issues/14 Scott -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and stop receiving emails

Re: [orientdb] Code review questions

2016-10-18 Thread 'scott molinari' via OrientDB
Luca, Does that mean the links given are in the develop branch? I didn't think they are, because I went to the same lines in develop and they looked different. Scott -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this

[orientdb] Re: Code review questions

2016-10-17 Thread 'scott molinari' via OrientDB
I am not a developer, but I think you'd need to be doing any code checks on the develop branch. That is where I believe the party is at. :-) Scott -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and stop

[orientdb] Re: LiveQuery vs. RethinkDB Changefeeds

2016-10-12 Thread 'scott molinari' via OrientDB
Great thread Anthony. Welcome to ODB! And thanks Luigi for the detailed answer. I learned a lot. Scott -- --- 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

Re: [orientdb] Re: What is the "client" in a distributed ODB system?

2016-09-22 Thread 'scott molinari' via OrientDB
Thanks Luigi. I'll have to dig into the PHP driver again. I don't seem to remember finding code that concerns itself with connections to multiple servers. Scott -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this

[orientdb] Re: The semantics with "clusters" in ODB

2016-09-22 Thread 'scott molinari' via OrientDB
For those of you interested, you can vote for this OEP (OrientDB Enhancement Proposal) for Version 3.0, which I've created for this subject. https://github.com/orientechnologies/orientdb-labs/issues/12 If you have any other improvements to the proposal I could add, please let me know! Scott

Re: [orientdb] Re: What is the "client" in a distributed ODB system?

2016-09-21 Thread 'scott molinari' via OrientDB
A polite bump. Scott -- --- 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

[orientdb] Re: Order BY @RID DESC stops working in 2.2

2016-09-14 Thread 'scott molinari' via OrientDB
Thanks Alessandro! Scott -- --- 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

Re: [orientdb] Order BY @RID DESC stops working in 2.2

2016-09-14 Thread 'scott molinari' via OrientDB
I keep pretty good track of the things happening in the project. To be honest, I think this might have fallen through the cracks, as I've not seen this issue in the bug reports. Scott -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To

[orientdb] Re: Will find the percentage of two values in query itself?

2016-08-30 Thread 'scott molinari' via OrientDB
Hey Allesandro, You seem to be a master at ODB SQL, because when it comes to helping people with their queries, you seem to come up with the answers, which aren't exactly self-evident. It is great support!!! Have you ever thought about actually writing up some decent advanced documentation on

[orientdb] Re: What is the "client" in a distributed ODB system?

2016-08-18 Thread 'scott molinari' via OrientDB
Hoooh!!! :-) Scott -- --- 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

[orientdb] What is the "client" in a distributed ODB system?

2016-08-16 Thread 'scott molinari' via OrientDB
Hi, this might be a stupid question, but everywhere the word "client" is used in the distribution documentation, yet I haven't seen a "client" software. Is there a client daemon? What is exactly the client? Because, it seems the client must also be aware of the cluster it is connected to,

[orientdb] Re: Sustain the OrientDB Project

2016-08-04 Thread 'scott molinari' via OrientDB
UmLuca. You listed only 3 ways to support an open source project. :-) You probably wanted to mention creating issues for bugs or suggestions, but mixed that support a bit in with the first PR point. I'd also like to add, helping with support, by answering questions you might know the

[orientdb] Re: Elastic Data Model

2016-07-27 Thread 'scott molinari' via OrientDB
Hi, For 1. Have a look at the new Teleporter system. http://orientdb.com/orientdb-labs/teleporter/ http://orientdb.com/orientdb-teleporter-making-migrations-easier/ http://orientdb.com/docs/last/Teleporter-Home.html For 2. First thing, although ODB is a No-SQL database, there are always

Re: [orientdb] Feasible way to create a sandbox with original RIDs

2016-07-25 Thread 'scott molinari' via OrientDB
Hmm I think we'll go with the back-up and restore method. If the RID integrity is upheld with this process, that will work for us. We might even be able to rework the back-up code for our own special use, so that we can do, for instance, partial back-ups with data only older than X

Re: [orientdb] Feasible way to create a sandbox with original RIDs

2016-07-25 Thread 'scott molinari' via OrientDB
Ok. And the script you were referring to would be doing the back-up and restore into a new database server. Correct? Scott -- --- 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] Feasible way to create a sandbox with original RIDs

2016-07-25 Thread 'scott molinari' via OrientDB
Thanks Luigi, When you say, "provide a script", are you talking about a program written in say Java or Node (or even PHP)? If yes, can the RIDs actually be forcefully set through the binary interface? If so, how would ODB know where to start with the next RID on the next record creation? The

[orientdb] Feasible way to create a sandbox with original RIDs

2016-07-25 Thread 'scott molinari' via OrientDB
Hi, For our system, we'd like to be able to offer sandbox copies of the database (full and partial). To make the usage of the sandbox the most effective and easy, it would also very beneficial to keep the same RIDs. What would be the best method to achieve this with OrientDB? Scott --

Re: [orientdb] Re: OrientDB News: Parallel Transactions

2016-07-21 Thread 'scott molinari' via OrientDB
In the world of VMs and IaaS, I don't think putting up exact nodes should be an issue. However, what happens, if a class created with 8 clusters, is moved to a new VM with more cores? Is the class then stuck on 8 clusters? Or can ODB create and redistribute the data into any new clusters

[orientdb] Re: OrientDB News: Parallel Transactions

2016-07-20 Thread 'scott molinari' via OrientDB
Does this mean the machines running in a distributed cluster will all need to be the same in terms of cores for ODB to work right and fast? Scott -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and stop

Re: [orientdb] Re: "Pinning" a table in memory

2016-07-20 Thread 'scott molinari' via OrientDB
Hey Eric. Already done! https://github.com/orientechnologies/orientdb/issues/6447 Hope you don't mind. Scott -- --- 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

Re: [orientdb] All those extra clusters in v2.2

2016-07-07 Thread 'scott molinari' via OrientDB
So a database set to use only one cluster per class will always use one cluster per class, no matter how the server is set? That would mean, turning off the multiple cluster feature also means removing any performance advantage for the future, like when the database gets larger? Is there no

Re: [orientdb] All those extra clusters in v2.2

2016-07-06 Thread 'scott molinari' via OrientDB
Will a database created with "class.minimumClusters=1" work later with a server that doesn't have this setting? Scott -- --- 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

[orientdb] Re: A week with OrientDB

2016-06-26 Thread 'scott molinari' via OrientDB
On the point about clusters, I brought that up here. https://groups.google.com/forum/#!topic/orient-database/2_iTzne1eXo Basically, a "cluster" in ODB should be a shard. Scott -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To

[orientdb] Re: 3.0 and "communicating with the rest of the world"

2016-06-26 Thread 'scott molinari' via OrientDB
I'd like to answer my own question. It looks like the ODB development team want to open up the discussions (and pursuing developments) for 3.0. https://github.com/orientechnologies/orientdb-labs/issues Here is a description of the new process.

[orientdb] Re: Executing database queries as a plugin

2016-06-26 Thread 'scott molinari' via OrientDB
Hmmm...I think I misunderstood your question. Do you mean using ODB within another Java application? Yes, you can use it in what is called embedded mode. http://orientdb.com/docs/2.2/Embedded-Server.html Is that what you are asking? Scott -- --- You received this message because you are

[orientdb] Re: Manipulating data with hooks

2016-06-25 Thread 'scott molinari' via OrientDB
I tried just that line and it doesn't work. So I added (on a whim) doc.save(); and it then worked. So it seems, it is necessary. Is there a log for errors on functions like this? How can one troubleshoot errors on functions, which are triggered? Also, I feel like a blind (ding)bat because of

[orientdb] Re: Executing database queries as a plugin

2016-06-25 Thread 'scott molinari' via OrientDB
Hi, Can you be a bit more specific? There are a couple of ways to do things on the server directly. What is it you'd like to get done? Scott -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and stop receiving

[orientdb] Re: Manipulating data with hooks

2016-06-25 Thread 'scott molinari' via OrientDB
Yes, I was running the "execute" in Studio, when I got the error and your explanation makes perfect sense why it won't work, now that you mention it. I should have realized that, while doing it. But, with your help, I've gotten my trigger working. It's a custom function "setLastUpdatedAt" and

[orientdb] Re: Manipulating data with hooks

2016-06-24 Thread 'scott molinari' via OrientDB
Hey odbuser, Hmmm. Trying this out and I get an error. Cannot read property "getDatabase" from undefined in at line number 2 The custom functions part of ODB seems so powerful, yet there is so little docs on it. That is really disappointing. It seems to be the right way to get the database

[orientdb] Re: Manipulating data with hooks

2016-06-21 Thread 'scott molinari' via OrientDB
Thanks odbuser. I'll have to give it a try, when I get back home. Scott -- --- 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

Re: [orientdb] Re: OrientDB Enhancement Process

2016-06-21 Thread 'scott molinari' via OrientDB
You can sort according to "most reactions". So if everyone uses the thumbs up reaction to vote, you can filter and sort accordingly. Scott -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and stop receiving

[orientdb] Re: Manipulating data with hooks

2016-06-21 Thread 'scott molinari' via OrientDB
I am traveling, so I can't try it out, so I'll ask. All I need then is something like doc.myProperty to access a property? How about embedded docs? Scott -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and

[orientdb] Re: Manipulating data with hooks

2016-06-19 Thread 'scott molinari' via OrientDB
I think my question boils down more to how can I get the rid or actually the record itself, which is triggering the trigger, to basically manipulate that same record? Scott -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe

[orientdb] Manipulating data with hooks

2016-06-19 Thread 'scott molinari' via OrientDB
Hi, All the examples of custom functions in the docs are either about querying for data, giving out responses or adding data during creation. Nothing explains updating, unfortunately. So, the question is: How can I make a function that can be used to automatically update a certain field with

[orientdb] Re: New to OrientDB

2016-06-18 Thread 'scott molinari' via OrientDB
Hi Francisco, Yeah, that text is a bit misleading. It was originally meant for Github, where only bugs and suggestions should be written. If you saw it posted there, it make more sense. You can certainly ask questions here. The sticky does mention SO is the preferred method to ask questions,

[orientdb] Re: 2.2.2 Release Notes

2016-06-17 Thread 'scott molinari' via OrientDB
There is this. https://github.com/orientechnologies/orientdb/issues?utf8=%E2%9C%93=milestone%3A%222.2.2%22+is%3Aclosed+ Not sure it is what you are looking for though. Scott -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe

[orientdb] 3.0 and "communicating with the rest of the world"

2016-06-17 Thread 'scott molinari' via OrientDB
Hi, Will there be any major changes to the binary protocol other than improvements and extensions in 3.0? I mean, will it be completely rewritten? Like maybe using gRPC or some other more standard like protocol? If there are plans

[orientdb] Re: Stream live data with php script

2016-06-13 Thread 'scott molinari' via OrientDB
I also asked this question. https://github.com/Ostico/PhpOrient/issues/76 Not sure it is the same, but if that is what you want to know, you could make a comment in that thread. Scott -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To

Re: [orientdb] The semantics with "clusters" in ODB

2016-06-10 Thread 'scott molinari' via OrientDB
Hi Luigi, I am glad I am not out to lunch! LOL! Because it is such a big change, I'd consider it something to tackle in 3.0 actually. I wouldn't even mind helping with the docs. How about the code? Are there a lot of changes to be made, so the code also uses the proper semantics? This page

[orientdb] The semantics with "clusters" in ODB

2016-06-10 Thread 'scott molinari' via OrientDB
Hi, >From a horizontal scaling, distributed database standpoint, I feel the semantics used in ODB aren't quite right (although they are pretty cool nonetheless). I apologize for being pedantic, but to me, a "cluster" should be a group of nodes in the distributed data setup. As I understand

Re: [orientdb] Re: Support for Lucene 6 3D (nD) Spatial Indexes

2016-06-09 Thread 'scott molinari' via OrientDB
Hey Roberto. Off-topic, but when do you all update the master branch? I would have assumed the master branch is at the same level as the last release (and why my reply was wrong). Scott -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To

[orientdb] Re: Support for Lucene 6 3D (nD) Spatial Indexes

2016-06-08 Thread 'scott molinari' via OrientDB
If I read the code/ config in the Lucene index section of ODB, it looks like it is using 4.7.0, which is disappointing, considering the Lucene team is working on version 7. https://github.com/orientechnologies/orientdb/blob/5d4ff9438db9eacd18c2502615747648602b49ed/lucene/pom.xml#L39 Scott --

Re: [orientdb] Re: RETURN @rid doesn't work as documented

2016-06-07 Thread 'scott molinari' via OrientDB
Yeah, I see what you mean. I wonder if digging into the ODB code (although shouldn't be necessary) might get you some more details? I believe this is the area of ODB that works the JS functions...(but, it is just a big guess on my part).

Re: [orientdb] Re: RETURN @rid doesn't work as documented

2016-06-06 Thread 'scott molinari' via OrientDB
Did you look through the other links in the menu under "Functions"? Not sure that info will help, but it does go into a little more detail about functions. Scott -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this

[orientdb] Re: RETURN @rid doesn't work as documented

2016-06-06 Thread 'scott molinari' via OrientDB
I also found this: http://orientdb.com/docs/last/Functions-Creation.html Check the other sections in the menu too. Scott -- --- 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

Re: [orientdb] [OrientDB] Datetime milliseconds are ignored

2016-06-06 Thread 'scott molinari' via OrientDB
Cool. Glad I could help. Scott -- --- 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

Re: [orientdb] Re: OrientDB Storage Overhead

2016-06-06 Thread 'scott molinari' via OrientDB
Ahh! Gotcha. I am also very interested in the answer. Scott -- --- 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

Re: [orientdb] Re: What is the fastest way to insert a group of linked documents?

2016-06-06 Thread 'scott molinari' via OrientDB
Yes, most definitely pre-allocate for any data in the records. This is also something MongoDB (sort of) recommends, when doing time series data with their database (which is a pure document database). http://blog.mongodb.org/post/65517193370/schema-design-for-time-series-data-in-mongodb (see

Re: [orientdb] [OrientDB] Datetime milliseconds are ignored

2016-06-06 Thread 'scott molinari' via OrientDB
ODB stores the dates as Unix epoch. You can use the .asLong() to see the full date (long) value. http://orientdb.com/docs/last/Managing-Dates.html Scott -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and

Re: [orientdb] Re: OrientDB Storage Overhead

2016-06-06 Thread 'scott molinari' via OrientDB
Didn't Andrey answer that question with the last answer? Do you mean whether we add additional information to record if field is > absent in record itself but defined in schema, do not you ? No, we do not > add any overhead. Scott -- --- You received this message because you are

Re: [orientdb] Re: What is the fastest way to insert a group of linked documents?

2016-06-05 Thread 'scott molinari' via OrientDB
No. Not aware of any more docs on JS custom functions. I am still uncertain about not using edges and vertexes. For instance, how would you do aggregations (if you do need them) without being able to traverse upward in the hierarchy? You're basically limiting yourself, aren't you? The only

[orientdb] Re: What is the fastest way to insert a group of linked documents?

2016-06-05 Thread 'scott molinari' via OrientDB
You say your problem is inserting a number of documents at the same time. At what point in storing the time series data is that necessary? Scott -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and stop

[orientdb] Re: What is the fastest way to insert a group of linked documents?

2016-06-02 Thread 'scott molinari' via OrientDB
Hey Eric. If I may ask, what is the data model you have or can you give an example, which requires a unidirectional relationship between classes? Scott -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and

[orientdb] Re: OrientDB Storage Overhead

2016-05-28 Thread 'scott molinari' via OrientDB
All questions I'd like to know the answer to too. Scott -- --- 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

[orientdb] Re: OrientDB Storage Overhead

2016-05-28 Thread 'scott molinari' via OrientDB
I can't help much, but I do remember reading that the records are padded with space. You can find that info here (towards the bottom). http://orientdb.com/docs/2.1/plocal-storage-engine.html I know this kind of "pre-allocation" technique is necessary to allow for flexible schema i.e. adding

[orientdb] Re: Best practice to map OrientDB ORecordId onto RestFull friendly ID representation

2016-05-24 Thread 'scott molinari' via OrientDB
Also answered on SE. Scott -- --- 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

[orientdb] Re: Best practice to map OrientDB ORecordId onto RestFull friendly ID representation

2016-05-24 Thread 'scott molinari' via OrientDB
We're looking into using HashID. http://hashids.org/ There are some minor concerns we have still, but theoretically, HashID should get you a hashed Rid, which is also convertible, so it won't take up more storage space (like with a UUID). It will just take a small bit of CPU time. Please

Re: [orientdb] OrientDb 2.1.15 java.net.SocketException: Too many open files when 9+ Databases are created

2016-05-24 Thread 'scott molinari' via OrientDB
Roger. So ODB will go about its business and ignore the useless PARALLEL, if the minimum clusters is set to 1. That is good! Thanks! Scott -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and stop receiving

Re: [orientdb] OrientDb 2.1.15 java.net.SocketException: Too many open files when 9+ Databases are created

2016-05-22 Thread 'scott molinari' via OrientDB
Ok. Last question. If someone were to use PARALLEL, but had the database set to "minimum clusters 1", maybe like in a sandbox situation, would ODB go about its business despite the illogical query with PARALLEL in it? Scott -- --- You received this message because you are subscribed to the

Re: [orientdb] OrientDb 2.1.15 java.net.SocketException: Too many open files when 9+ Databases are created

2016-05-22 Thread 'scott molinari' via OrientDB
Would that mean pabloa would then need to make a sacrifice on performance? Scott -- --- 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] Re: Batch query with Multiple id(or other field)

2016-05-22 Thread 'scott molinari' via OrientDB
http://orientdb.com/docs/last/SQL-Query.html Scroll down to "Unwinding" towards the bottom of that page. That might be what you are looking for. Scott -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and stop

[orientdb] Re: How to troubleshoot orientjs driver with 2.2GA server

2016-05-20 Thread 'scott molinari' via OrientDB
I answered on SE, but I'll post my answer here too. Have you tried an older version of ODB? In the PHP world, we also have issues with ODB 2.2, because the PHP driver hasn't been updated to the new binary protocol. Scott -- --- You received this message because you are subscribed to the

Re: [orientdb] What happenes to edges if I delete a vertex.

2016-05-20 Thread 'scott molinari' via OrientDB
I don't know of any reason to use a document database either. It I wanted that, I'd use MongoDB. ;-) Scott -- --- 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

Re: [orientdb] What happenes to edges if I delete a vertex.

2016-05-19 Thread 'scott molinari' via OrientDB
As I understand ODB, using the "Graph API" means you've created the database as a graph database and not as a document database. So, if you are using a graph database, then your SQL is automatically using the Graph API. Scott -- --- You received this message because you are subscribed to

Re: [orientdb] orient 2.2 auto-generated root password

2016-05-18 Thread 'scott molinari' via OrientDB
Luca, what is the hashing algorithm used to make/ check the root password? SHA256? SHA512? It seems SHA256. Just want to make sure Arul, when you know the hashing algorithm, it is best to create your own hash (with your own password) . The autogeneration is

[orientdb] Re: [Announcement] OrientDB v2.2 GA is here! Improved Security, Performance, Operations & APIs

2016-05-18 Thread 'scott molinari' via OrientDB
Congrats to the whole ODB team! A lot of hard work put into 2.2. I am looking forward to better reliability and higher quality standards being met with this new version. Great work! And, although this is a great milestone in the life of ODB, my personal dreams are set on 3.0, as I feel that is

Re: [orientdb] Re: Get Edge between two vertices

2016-05-16 Thread 'scott molinari' via OrientDB
@luca I would guess K Major doesn't actually know the rid of the proper edge. So, between the two edge rids he has as "outs" in that vertex, he'd have to find the right one and then get the weight. Your query is assuming the right edge rid is #11:12916. This rid should be unknown to him. If

[orientdb] Re: Get Edge between two vertices

2016-05-16 Thread 'scott molinari' via OrientDB
The "out" in vertex #11:1820 is the rid to the edge. not the other vertex. You need the id of the other vertex as your "out" value in your query. Scott -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and stop

[orientdb] Re: Get Edge between two vertices

2016-05-16 Thread 'scott molinari' via OrientDB
If you have "normal" edges and you know the vertex you are coming from, I don't believe you should be looking for the out property on the edge, but rather the "in" property from your vertex to that edge. What is the vertex's id? Filter on that as the "in" property of your edge and you'll have

[orientdb] Re: Is it possible to rename a remote database?

2016-05-09 Thread 'scott molinari' via OrientDB
Interesting. I would have thought ALTER DATABASE would allow the renaming of the database. But, it looks like that isn't possible. Scott -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and stop receiving

Re: [orientdb] Re: OrientDB very slow performance on basic unique key lookups, website painfully slow

2016-04-30 Thread 'scott molinari' via OrientDB
Ok. Sounds like you are right about the profiles. I hope the ODB guys can help. I think I pulled enough of the right information out of you, so they can help. Sorry, I am not more help. Scott -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group.

Re: [orientdb] Re: OrientDB very slow performance on basic unique key lookups, website painfully slow

2016-04-30 Thread 'scott molinari' via OrientDB
Great explanation. I am not at all a Java programmer and I am also learning ODB and graph databases, so I can only suggest what might be a problem or rather point to what I think might be a problem. So, take what I say with a grain of salt. Is there a particular reason to split the accounts

Re: [orientdb] Re: OrientDB very slow performance on basic unique key lookups, website painfully slow

2016-04-29 Thread 'scott molinari' via OrientDB
Can you give us some code examples of queries that are slow? Scott -- --- 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

Re: [orientdb] Re: Cores and clusters and classes - oh my!

2016-04-28 Thread 'scott molinari' via OrientDB
I don't understand your worries. You can introspect on the clusters and store data where you want it. You can rename clusters too. Or, you can let ODB store the class records in the clusters (the chunks) where it thinks best or according to your preference, i.e. round-robin, balanced, default,

Re: [orientdb] Re: Cores and clusters and classes - oh my!

2016-04-27 Thread 'scott molinari' via OrientDB
You can rename the clusters at any time. http://orientdb.com/docs/last/SQL-Alter-Cluster.html Scott -- --- 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

Re: [orientdb] Re: Cores and clusters and classes - oh my!

2016-04-27 Thread 'scott molinari' via OrientDB
> > BTW, what will happen if somebody will replace the 8 core CPU with say 16 > cores (or 4) at the same node and restart the OrientDB ? > I would bet the cluster creation is only done at class creation. Once the clusters are made, it wouldn't matter what the hardware changes to. As I see it,

Re: [orientdb] Re: Cores and clusters and classes - oh my!

2016-04-26 Thread 'scott molinari' via OrientDB
So, in distributed and with 2.2, the default is one cluster per node, per class on master nodes. And on a single master and with 2.2, the default is one cluster per cpu core per class. Is that correct??? What is the purpose of spreading out of a class with more clusters per cpu core in a

Re: [orientdb] Re: Cores and clusters and classes - oh my!

2016-04-25 Thread 'scott molinari' via OrientDB
Good point. I wonder if the cpu cores = # of clusters setting also counts in a distributed system. It wouldn't seem to make too much sense, because "over-chunking" the data can also cause performance issues when querying. Scott -- --- You received this message because you are subscribed to

Re: [orientdb] Re: Cores and clusters and classes - oh my!

2016-04-25 Thread 'scott molinari' via OrientDB
I believe this part of the docs explains clusters and nodes properly. You can have nodes with different clusters of a class. But, you can't have different classes in the same cluster. In other words, clusters are groups of records that belong to a certain class only. So, you can't mix and

[orientdb] Re: UPSERT versus INSERT and _allowDelete, _allowRead, _allow, _allowUpdate

2016-04-22 Thread 'scott molinari' via OrientDB
What is the schema on the class "test2"? Does it extend ORestricted by chance? Either way, I'd venture to say, you might have found a bug. Here is what the fields are for. http://orientdb.com/docs/2.1/Database-Security.html#record-level-security What version of ODB are you on? Scott --

  1   2   3   4   >