Re: [Neo4j] Convert string to numbers

2017-02-06 Thread 'Michael Hunger' via Neo4j
how many nodes do you have? If it's around 1M this should be fine match (n) SET n.value = toFloat(n.value) , if it's more you probably want to batch it match (n) WITH n SKIP 100 LIMIT 100 SET n.value = toFloat(n.value) On Mon, Feb 6, 2017 at 5:58 PM, Jessica Marinho wrote: > I create

Re: [Neo4j] i see no properties after database copy

2017-02-06 Thread 'Michael Hunger' via Neo4j
Did you fold out the little triangular arrow on the right side? On Mon, Feb 6, 2017 at 9:35 PM, koen wrote: > hi, i installed neo4j on debian and copied my database from a windows > install to the debian server. > I see all nodes and relationships but i do not see any properties when > clicking

Re: [Neo4j] MySQL faster than Neo4j for recursive queries

2017-02-06 Thread Max De Marzi Jr.
Neo4j can do it in 2.7 seconds on my 4 year old laptop. Read https://maxdemarzi.com/2017/02/06/neo4j-is-faster-than-mysql-in-performing-recursive-query/ to find out how. On Monday, February 6, 2017 at 4:38:25 AM UTC-6, Chris Vest wrote: > > A 100 friends per customer is a somewhat high cardina

[Neo4j] i see no properties after database copy

2017-02-06 Thread koen
hi, i installed neo4j on debian and copied my database from a windows install to the debian server. I see all nodes and relationships but i do not see any properties when clicking on a node in the browser. However i see the property names in the browser Property Keys list Using latest stable ver

[Neo4j] Convert string to numbers

2017-02-06 Thread Jessica Marinho
I created a database with many nodes, some nodes store numbers as properties, but these numbers are stored as string, The numbers contain many digits like 43.9883999. Can I convert all these strings to numbers? -- You received this message because you are subscribed to the Google Group

Re: [Neo4j] 300 TPS performance on Causal Cluster with Bolt Driver. Enterprise Evaluation Struck

2017-02-06 Thread 'Michael Hunger' via Neo4j
What kind of disk do you have and how is it configured? What did you configure for page-cache? Do you parallelize your requests (with one session per thread) ? You should keep the session open, otherwise you are re-opening a new session for every operation. Also usually you would batch updates li

Re: [Neo4j] When running :schema the browser hangs on "Executing Query"

2017-02-06 Thread 'Michael Hunger' via Neo4j
Can you check the JS console for errors? Did you try shift-reload? And see if disabling bolt in the left side config helps? On Wed, Feb 1, 2017 at 8:35 PM, Phil M wrote: > I have now seen this several times where I run the :schema command in the > browser and get no result. It hangs on "Execut

Re: [Neo4j] Re: Optimistic locking with advanced mapping

2017-02-06 Thread 'Michael Hunger' via Neo4j
Do you have a concrete use-case Binod? On Fri, Jan 27, 2017 at 9:38 PM, binod singh wrote: > Do we have further update on this? How to supper optimistic locking > > > On Friday, April 17, 2015 at 8:43:01 AM UTC-4, Stéphane Schild wrote: >> >> Hi, >> >> Does anyone have a response on this topic?

Re: [Neo4j] Execute Gremlin queries on Neo4j Graph in Java

2017-02-06 Thread 'Michael Hunger' via Neo4j
See the gremlin docs for running gremlin on top of Neo4j. You might also want to have a look at the github.com/neo4j-contrib/neo4j-tinkerpop-api-impl Which also comes with a procedure to run Gremlin from Cypher, the procedure implementation should help you in getting started in Java. On Fri, Feb

Re: [Neo4j] where does neo4j cacher data

2017-02-06 Thread 'Chris Vest' via Neo4j
It caches on the server. There are two primary caches; one for query execution plans, and a page cache for store file contents. The page cache is important to tune to reduce the read IO required to service queries, without using too much memory. The query execution cache is usually fine with its

Re: [Neo4j] MySQL faster than Neo4j for recursive queries

2017-02-06 Thread 'Chris Vest' via Neo4j
A 100 friends per customer is a somewhat high cardinality. Going out four levels you get 100 to the power of 4, 100.000.000 friends out of 10.000, then "distinctified". There's probably a good chance that the result is just the complete Customer set. You should take a look at the query plans for

Re: [Neo4j] Precipitous drop in total store size...

2017-02-06 Thread 'Chris Vest' via Neo4j
Neo4j cleans up transaction logs when it check-points, which happens at regular intervals some times (in minutes) after the database has started. Have you checked that any transaction logs haven't been deleted since? Neo4j never reduces the size of the store files; it can at best only re-use the