Replies: 2 comments 1 reply
-
I did some test with a completely new project and I get an analogous error. clojure.lang.ExceptionInfo: Conflicting data-reader mapping {:url #object[java.net.URL 0x1458ed9c "jar:file:/Users/franz/.m2/repository/juxt/crux-core/20.09-1.12.0-beta/crux-core-20.09-1.12.0-beta.jar!/data_readers.clj"], :conflict crux/id, :mappings {crux/id #'xtdb.codec/id-edn-reader, xtdb/id #'xtdb.codec/id-edn-reader, crux/base64 #'xtdb.codec/base64-reader, xtdb/base64 #'xtdb.codec/base64-reader}} |
Beta Was this translation helpful? Give feedback.
-
Hi @franz65 - this looks like you have both an old Crux artifact and a new XTDB artifact on your classpath, which are both trying to take responsibility for the It seems like Cheers, James |
Beta Was this translation helpful? Give feedback.
-
I'm trying to change the kv store inside a project currently working with RocksDB. I I deleted the database, updated the xtdb version and changed project.clj and edn configuration file.
When I launch the project with the command: lein run
I get this error:
clojure.lang.ExceptionInfo: Conflicting data-reader mapping {:url #object[java.net.URL 0x2b4c1d96 "jar:file:/Users/test/.m2/repository/juxt/crux-core/20.09-1.12.0-beta/crux-core-20.09-1.12.0-beta.jar!/data_readers.clj"], :conflict crux/id, :mappings {xtdb/id #'xtdb.codec/id-edn-reader, light #'cider.nrepl.middleware.enlighten/light-reader, crux/id #'xtdb.codec/id-edn-reader, dbg #'cider.nrepl.middleware.debug/debug-reader, ordered/set #'flatland.ordered.set/into-ordered-set, xtdb/base64 #'xtdb.codec/base64-reader, break #'cider.nrepl.middleware.debug/breakpoint-reader, ordered/map #'flatland.ordered.map/ordered-map, crux/base64 #'xtdb.codec/base64-reader}}
Some idea on what to do?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions