Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
01-07-2019 06:31 AM
Hi,
i build a data processing using neo4j-spark-connector(v 2.1.0-M4). until now i used neo4j 3.3 and everything works fine.
i need to improve this process now, and for do it i need to use neo4j 3.4.5 features(datetime field) -
part of the code:
val date = Calendar.getInstance()
date.add(Calendar.DATE, -30)
date.set(Calendar.HOUR_OF_DAY, 0)
date.set(Calendar.MINUTE, 0)
date.set(Calendar.SECOND, 0)
date.set(Calendar.MILLISECOND, 0)
val d = ZonedDateTime.ofInstant(date.toInstant(), ZoneId.of(("UTC")))
val map = Map("date" -> d)
neo4j.cypher(relevanceQuery, map)
the map works because if i put long parameters it works.
the error i get:
org.neo4j.driver.v1.exceptions.ClientException: Unable to convert java.time.ZonedDateTime to Neo4j Value.
hope someone will help,
thanks,
Niv.
Solved! Go to Solution.
01-20-2019 03:44 PM
Here you go:
https://spark-packages.org/package/neo4j-contrib/neo4j-spark-connector
Please let me know if it works.
01-08-2019 10:45 PM
We probably need to update the java driver version, I'll do that this week.
01-09-2019 12:36 AM
many thanks michael!
01-16-2019 03:32 AM
hi michael,
you know when it will be ready?
Thanks,
Niv.
01-16-2019 05:11 AM
Sorry I ran into a number of build errors as part of the update, that have to be fixed first.
01-16-2019 06:02 AM
maybe you have some estimation?
i changed all date properties to work with the new date type(before 3.4 the properties were just a long number), and now i'm a little bit stuck because of it 😕 , cant upload new sprint to production.
thanks,
Niv.
01-16-2019 07:38 AM
It would be good to have some time to work through some of the other open issues and suggestions, but I'm afraid I won't have the capacity right now.
01-20-2019 12:57 AM
@michael.hunger
hi,
As i said on github, the jar works for me. so thanks!
last thing,
you can upload it to the maven repository too?
the latest version there is 2.2.1-M5
(https://mvnrepository.com/artifact/neo4j-contrib/neo4j-spark-connector)
thanks,
Niv.
01-20-2019 01:53 PM
Yes I'm trying, there are some issues mit maven central
01-20-2019 03:44 PM
Here you go:
https://spark-packages.org/package/neo4j-contrib/neo4j-spark-connector
Please let me know if it works.
01-21-2019 02:04 AM
it works! 🙂
thanks!
01-22-2019 02:45 AM
Something that would help me tremendously would be some other folks describing / documenting how they use the connector. So if you have a few minutes at some time I would very much appreciate a blog post explaining how you use it and also feedback on what could be improved.
01-22-2019 03:54 AM
no problem,
will do it soon 🙂
All the sessions of the conference are now available online