graphaware

Failed to invoke procedure `ga.timetree.now`: java.lang.NoClassDefFoundError: com.graphaware.module.timetree.SingleTimeTree

落爺英雄遲暮 提交于 2021-01-28 19:32:16
问题 I am unable to run CALL ga.timetree.now({}) It fails with a subj error. My neo4j.conf includes the following: dbms.unmanaged_extension_classes=com.graphaware.server=/graphaware com.graphaware.runtime.enabled=true com.graphaware.module.TT.1=com.graphaware.module.timetree.module.TimeTreeModuleBootstrapper Iam using neo4j 3.4.12 with grapaware-server-all.3.4.9.52 and timetree-3.4.9.52.28 built from repositories and put into /plugins directory. Could anyone help me with what i am missing ? 回答1:

Graphaware Framework and UUID not starting on Neo4j GrapheneDB

南笙酒味 提交于 2020-01-17 06:46:09
问题 I am trying to get the Graphaware Framework and UUID running on a GrapheneDB instance. I have followed the instructions to zip the JAR and neo4j.properties files and uploaded using the GrapheneDB Web Interface but UUID's are not added when I create a new node. neo4j.properties file dbms.unmanaged_extension_classes=com.graphaware.server=/graphaware com.graphaware.runtime.enabled=true #UIDM becomes the module ID: com.graphaware.module.UIDM.1=com.graphaware.module.uuid.UuidBootstrapper #optional

Graphaware Framework and UUID not starting on Neo4j GrapheneDB

半腔热情 提交于 2020-01-17 06:45:37
问题 I am trying to get the Graphaware Framework and UUID running on a GrapheneDB instance. I have followed the instructions to zip the JAR and neo4j.properties files and uploaded using the GrapheneDB Web Interface but UUID's are not added when I create a new node. neo4j.properties file dbms.unmanaged_extension_classes=com.graphaware.server=/graphaware com.graphaware.runtime.enabled=true #UIDM becomes the module ID: com.graphaware.module.UIDM.1=com.graphaware.module.uuid.UuidBootstrapper #optional

Graphaware neo4j-php-client | Cannot catch Neo4jException

孤人 提交于 2019-12-25 04:16:02
问题 I'm using Postgresql + Neo4j for my project. I need to rollback postgres queries if neo4j query has failed. So, I need to catch Neo4jException in my code. But couldn't done yet. Thanks for help. require_once('pgconnect.php'); try{ $conn->beginTransaction(); //some pgsql code $conn->commit(); require_once('neoconnect.php'); $result = $client->run("a query"); $conn = null; } catch(PDOException $e){ require_once('pgrollback.php'); } this is my working code. But as you can see I don't have a

Neo4j 3.3.0 docker image with APOC - was successfully initialized, but failed to start

只谈情不闲聊 提交于 2019-12-24 07:14:08
问题 I try to add APOC to my Neo4j instance from Neo4j 3.3.0 docker image but during the startup, I received the following error: neo4j-database> 2017-12-11 19:57:01.189+0000 ERROR [c.g.r.b.RuntimeKernelExtension] Could not start GraphAware Runtime because the database didn't get to a usable state within 5 minutes. neo4j-database> 2017-12-11 19:57:01.192+0000 ERROR Failed to start Neo4j: Starting Neo4j failed: Component 'org.neo4j.server.database.LifecycleManagingDatabase@498f5728' was

Fatal error: Uncaught Error: using graphaware for PHP

陌路散爱 提交于 2019-12-13 11:28:29
问题 I am using graphaware to connect to a neo4j graph database. I keep getting an error saying Fatal error: Uncaught Error even though I'm using the library in composer.json. Here is the code for the autoload.php: <?php /* * This file is part of the GraphAware Neo4j PHP OGM package. * * (c) GraphAware Ltd <info@graphaware.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ error_reporting(E_ALL | E_STRICT);

localhost:7474/graphaware/changefeed/CFM gives 404

霸气de小男生 提交于 2019-12-12 06:57:53
问题 i am trying to track latest changes in neo4j in Server Mode so i followed this link https://github.com/graphaware/neo4j-changefeed as i see some extra node are added and here are changes about my db but http://localhost:7474/graphaware/changefeed/CFM gives me 404 i am using neo4j 2.2.2 and my neo4j.properties com.graphaware.runtime.enabled=true com.graphaware.module.CFM.1=com.graphaware.module.changefeed.ChangeFeedModuleBootstrapper com.graphaware.module.CFM.maxChanges=100 com.graphaware

GraphAware UUID not generating

那年仲夏 提交于 2019-12-12 02:17:44
问题 I know this question has been asked here: GraphAware Neo4j UUID not working. Nobody has answered it and I cant comment to ask that guy because I dont have enough reputation. I have all both the server framework and the uuid jar files in plugins folder and this is my config: com.graphaware.runtime.enabled=true com.graphaware.module.UIDM.1=com.graphaware.module.uuid.UuidBootstrapper com.graphaware.module.UIDM.uuidProperty=uuid For some reason when I create a node. I'm not getting anything. This

How to I configure my own GraphDatabaseService and GraphAwareRuntime in a spring unit test with boot 2.0 and Neo4j SDN5

喜欢而已 提交于 2019-12-11 06:41:15
问题 I'm writing some unit tests and want to use TimeTree along with Spring repositories, to auto attach event nodes to a time tree. Something like this issue, but I'm using boot 2.0 and SDN5. I think my main issue is I don't know how to set up the configuration so my repositories and my TimeTree use the same GraphDatabaseService. My @Confuration is like this: @Configuration public class SpringConfig { @Bean public SessionFactory sessionFactory() { // with domain entity base package(s) return new

Testing with GraphAware Timetree

五迷三道 提交于 2019-12-11 06:29:56
问题 I've been starting to use GraphAware timetree for neo4j, and so far its working out pretty well. Now I'm trying to work out how I can unit / integration test my code that uses neo4j timetree. I've put together some code as below... but still I'm getting the message: org.neo4j.ogm.exception.CypherException: Error executing Cypher "Neo.ClientError.Procedure.ProcedureNotFound"; Code: Neo.ClientError.Procedure.ProcedureNotFound; Description: There is no procedure with the name `ga.timetree.events