mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-23 02:27:40 +08:00
fix get_info
This commit is contained in:
parent
7a27cbcc78
commit
1cc733f801
@ -159,4 +159,8 @@ impl UpdateFileStore {
|
|||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn get_size(&self, uuid: Uuid) -> Result<u64> {
|
||||||
|
Ok(self.get_update(uuid)?.metadata()?.len())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -535,24 +535,27 @@ impl UpdateStore {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let path = path.as_ref().to_owned();
|
let path = path.as_ref().to_owned();
|
||||||
indexes.par_iter().try_for_each(|index| index.snapshot(&path)).unwrap();
|
indexes.par_iter().try_for_each(|index| index.snapshot(path.clone())).unwrap();
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn get_info(&self) -> Result<UpdateStoreInfo> {
|
pub fn get_info(&self) -> Result<UpdateStoreInfo> {
|
||||||
let size = self.env.size();
|
let mut size = self.env.size();
|
||||||
let txn = self.env.read_txn()?;
|
let txn = self.env.read_txn()?;
|
||||||
for entry in self.pending_queue.iter(&txn)? {
|
for entry in self.pending_queue.iter(&txn)? {
|
||||||
let (_, _pending) = entry?;
|
let (_, pending) = entry?;
|
||||||
//if let Enqueued {
|
if let Enqueued {
|
||||||
//content: Some(uuid),
|
meta: store::Update::DocumentAddition {
|
||||||
//..
|
content_uuid,
|
||||||
//} = pending
|
..
|
||||||
//{
|
},
|
||||||
//let path = update_uuid_to_file_path(&self.path, uuid);
|
..
|
||||||
//size += File::open(path)?.metadata()?.len();
|
} = pending
|
||||||
//}
|
{
|
||||||
|
let len = self.update_file_store.get_size(content_uuid)?;
|
||||||
|
size += len;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
let processing = match *self.state.read() {
|
let processing = match *self.state.read() {
|
||||||
State::Processing(uuid, _) => Some(uuid),
|
State::Processing(uuid, _) => Some(uuid),
|
||||||
|
Loading…
Reference in New Issue
Block a user