Ferdinand Beyer
Ferdinand Beyer
**Update**: I noticed that I caused this by accessing a closed node from a different thread, when meanwhile a new node has been started. Here is a complete example to...
**Update**: With the same example, but using RocksDB, I get segfaults as well. Just to be clear: This clearly is a programming error, one should not access closed nodes like...
More info: Without starting a second node, with LMDB I do not get segfaults, but exceptions like these: ``` MDB_READERS_FULL: Environment maxreaders limit reached MDB_BAD_RSLOT: Invalid reuse of reader locktable...
Thanks for the explanation @refset! I must have missed the part of the documentation, or shrugged it off on first read as obvious, as I would not expect XTDB to...
Maybe we can implement more of init's core with transformers as well: - `start-fn`: Take a component's config, a partial system map, and a sequence of resolved keys for its...
I've stumbled over this as well, trying to use an executor to set up a thread-local context. On my machine, this snippet constantly yields the REPL thread, so the executor...
Yep, tried the same with `Thread/sleep`. I'm not saying this is necessarily wrong behaviour, but certainly surprising and misleading. I lost two days trying to use custom executors to trace...
> Would you be willing to contribute a PR improving them? For both the docstrings and the markdown files? Sure, happy to give this a try! > Thoughts? Anyone have...
Oh, I think you did mention me in the release notes. My pleasure, thanks for this awesome project!
During development, we might want _some_ components to be started on every request, e.g. ring routes. Partial restart of a system map?