Constellation, Spacedust, Slingshot, UFOs: atproto crates and services for microcosm

increase queue by 16x

this should give a bunch of seconds of buffer for the writer to get through stuff before we let pressure reach back to the remote jetstream instance. *hopefully* this will lead to fewer reconnects due to getting booted by jetstream for being slow.

Changed files
+1 -1
constellation
src
consumer
+1 -1
constellation/src/consumer/mod.rs
···
thread::spawn(move || consume_jsonl_file(f, sender)),
)
} else {
-
let (sender, receiver) = flume::bounded(2048); // eek
+
let (sender, receiver) = flume::bounded(32_768); // eek
let cursor = store.get_cursor().unwrap();
(
receiver,