Jeremy Taylor
Jeremy Taylor
As per the title, would you accept a PR to modify `visit-node` so that `loc` is passed to the visitors i.e. `(v dir loc node state)`? On another note, `(z/node...
I know this is very early on in its inception, but it's important to understand how this can succeed given the current ecosystem of technology. With merits & downsides. The...
I think it would be good to casually list other projects that are in a similar vein, describe their relation and how this is different / more awesome.
Feedback / ideas / possible new requirements: - [ ] 1. document/simplify object store lifecycle policy (bucket policy config example, cleanup workers etc.) - [ ] 2. https://github.com/xtdb/xtdb/issues/1824 tar to...
Documents that are `put` into the future become valid automatically as wall-clock time progresses. Users would like to be able to find out which documents have become valid in the...
The following query will throw a circular dependency error based on the exact logic-var symbols used (i.e. add or remove a few characters to ?search-strin and the test may start...
```clojure (t/deftest test-rules-binding-1569 (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :a-1, :next :a-2}] [:crux.tx/put {:crux.db/id :a-2, :next :a-3}] [:crux.tx/put {:crux.db/id :a-3, :next :a-4}] [:crux.tx/put {:crux.db/id :a-4, :next :a-1}] [:crux.tx/put {:crux.db/id :b-1, :next :b-2}] [:crux.tx/put...
Currently the in-memory Docker build will segfault when attempting to run on an M1 Mac. It looks like extra build configuration is required: https://jitsu.com/blog/multi-platform-docker-builds The workaround is for M1 users...
Currently, if a node is started with a misconfigured Kafka tx-log and an existing index-store (e.g. using a staging checkpoint in a local dev environment for debugging purposes), XT will...
```clojure user> (xt/submit-tx node [[::xt/put {:xt/id "test1" :foo 1}] [::xt/put {:xt/id "test2" :foo nil}] [::xt/put {:xt/id "test3" :foo {:bar 42}}]]) ;; order by will crash if result has maps user>...