Is it reasonable to run xtdb v2 in-process in a small production scenario with s3 storage and kafka log? We are not using k8s and I am looking for a simpler deployment without having to setup a cluster
absolutely, yep 🙂 might not be our go-to these days as most of the feedback we got was actively looking for a client/server model but should still work just fine
Silly n00b question, but is there a function I can call to stop an in-process XTDB node..?
the object you get back from start-node is AutoCloseable - so either with-open (if you're running it in tests) or .close at some point
Thanks!
(I am assuming that this means if I have a local symbol like xt-node I can do this:
(.close xt-node)
??)
Great! Thx 🙏