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

didn't work (not surprising)

Changed files
-14
ufos
-14
ufos/src/storage_fjall.rs
···
"how many items are in the fjall batch for batched inserts"
);
describe_histogram!(
-
"storage_insert_batch_db_batch_size",
-
Unit::Count,
-
"in-memory size of the fjall batch for batched inserts"
-
);
-
describe_histogram!(
"storage_rollup_counts_db_batch_items",
Unit::Count,
"how many items are in the fjall batch for a timlies rollup"
-
);
-
describe_histogram!(
-
"storage_rollup_counts_db_batch_size",
-
Unit::Count,
-
"in-memory size of the fjall batch for a timelies rollup"
);
describe_counter!(
"storage_delete_account_partial_commits",
···
insert_batch_static_neu::<NewRollupCursorKey>(&mut batch, &self.global, last_cursor)?;
histogram!("storage_rollup_counts_db_batch_items").record(batch.len() as f64);
-
histogram!("storage_rollup_counts_db_batch_size")
-
.record(std::mem::size_of_val(&batch) as f64);
batch.commit()?;
Ok((cursors_advanced, dirty_nsids))
···
);
histogram!("storage_insert_batch_db_batch_items").record(batch.len() as f64);
-
histogram!("storage_insert_batch_db_batch_size")
-
.record(std::mem::size_of_val(&batch) as f64);
batch.commit()?;
Ok(())