We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1aa2dda commit fa5645fCopy full SHA for fa5645f
rust/log-service/src/bin/chroma-inspect-log-contents.rs
@@ -23,11 +23,13 @@ async fn main() {
23
.await
24
.expect("could not inspect log state");
25
let scouted = scouted.into_inner();
26
- for i in (scouted.first_uncompacted_record_offset..scouted.first_uninserted_record_offset)
+ println!("Scouted {scouted:?}");
27
+ for i in (scouted.first_uncompacted_record_offset..=scouted.first_uninserted_record_offset)
28
.step_by(100)
29
{
30
let batch_size: i32 =
31
(std::cmp::min(i + 100, scouted.first_uninserted_record_offset) - i) as i32;
32
+ println!("Fetching [{i}:{})", i + batch_size as i64);
33
let pulled = client
34
.pull_logs(PullLogsRequest {
35
collection_id: args[1].clone(),
0 commit comments