mito2/sst/index/
store.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
// Copyright 2023 Greptime Team
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

use std::io;
use std::ops::Range;
use std::pin::Pin;
use std::task::{Context, Poll};

use async_trait::async_trait;
use bytes::{BufMut, Bytes};
use common_base::range_read::{Metadata, RangeReader, SizeAwareRangeReader};
use futures::{AsyncRead, AsyncSeek, AsyncWrite};
use object_store::ObjectStore;
use pin_project::pin_project;
use prometheus::IntCounter;
use snafu::ResultExt;

use crate::error::{OpenDalSnafu, Result};

/// A wrapper around [`ObjectStore`] that adds instrumentation for monitoring
/// metrics such as bytes read, bytes written, and the number of seek operations.
///
/// TODO: Consider refactor InstrumentedStore to use async in trait instead of AsyncRead.
#[derive(Clone)]
pub(crate) struct InstrumentedStore {
    /// The underlying object store.
    object_store: ObjectStore,
    /// The size of the write buffer.
    write_buffer_size: Option<usize>,
}

impl InstrumentedStore {
    /// Create a new `InstrumentedStore`.
    pub fn new(object_store: ObjectStore) -> Self {
        Self {
            object_store,
            write_buffer_size: None,
        }
    }

    /// Set the size of the write buffer.
    pub fn with_write_buffer_size(mut self, write_buffer_size: Option<usize>) -> Self {
        self.write_buffer_size = write_buffer_size.filter(|&size| size > 0);
        self
    }

    /// Returns an [`InstrumentedRangeReader`] for the given path.
    /// Metrics like the number of bytes read are recorded using the provided `IntCounter`.
    pub async fn range_reader<'a>(
        &self,
        path: &str,
        read_byte_count: &'a IntCounter,
        read_count: &'a IntCounter,
    ) -> Result<InstrumentedRangeReader<'a>> {
        Ok(InstrumentedRangeReader {
            store: self.object_store.clone(),
            path: path.to_string(),
            read_byte_count,
            read_count,
            file_size_hint: None,
        })
    }

    /// Returns an [`InstrumentedAsyncRead`] for the given path.
    /// Metrics like the number of bytes read, read and seek operations
    /// are recorded using the provided `IntCounter`s.
    pub async fn reader<'a>(
        &self,
        path: &str,
        read_byte_count: &'a IntCounter,
        read_count: &'a IntCounter,
        seek_count: &'a IntCounter,
    ) -> Result<InstrumentedAsyncRead<'a, object_store::FuturesAsyncReader>> {
        let meta = self.object_store.stat(path).await.context(OpenDalSnafu)?;
        let reader = self
            .object_store
            .reader(path)
            .await
            .context(OpenDalSnafu)?
            .into_futures_async_read(0..meta.content_length())
            .await
            .context(OpenDalSnafu)?;
        Ok(InstrumentedAsyncRead::new(
            reader,
            read_byte_count,
            read_count,
            seek_count,
        ))
    }

    /// Returns an [`InstrumentedAsyncWrite`] for the given path.
    /// Metrics like the number of bytes written, write and flush operations
    /// are recorded using the provided `IntCounter`s.
    pub async fn writer<'a>(
        &self,
        path: &str,
        write_byte_count: &'a IntCounter,
        write_count: &'a IntCounter,
        flush_count: &'a IntCounter,
    ) -> Result<InstrumentedAsyncWrite<'a, object_store::FuturesAsyncWriter>> {
        let writer = match self.write_buffer_size {
            Some(size) => self
                .object_store
                .writer_with(path)
                .chunk(size)
                .await
                .context(OpenDalSnafu)?
                .into_futures_async_write(),
            None => self
                .object_store
                .writer(path)
                .await
                .context(OpenDalSnafu)?
                .into_futures_async_write(),
        };
        Ok(InstrumentedAsyncWrite::new(
            writer,
            write_byte_count,
            write_count,
            flush_count,
        ))
    }

    /// Proxies to [`ObjectStore::list`].
    pub async fn list(&self, path: &str) -> Result<Vec<object_store::Entry>> {
        let list = self.object_store.list(path).await.context(OpenDalSnafu)?;
        Ok(list)
    }

    /// Proxies to [`ObjectStore::remove_all`].
    pub async fn remove_all(&self, path: &str) -> Result<()> {
        self.object_store
            .remove_all(path)
            .await
            .context(OpenDalSnafu)
    }
}

/// A wrapper around [`AsyncRead`] that adds instrumentation for monitoring
#[pin_project]
pub(crate) struct InstrumentedAsyncRead<'a, R> {
    #[pin]
    inner: R,
    read_byte_count: CounterGuard<'a>,
    read_count: CounterGuard<'a>,
    seek_count: CounterGuard<'a>,
}

impl<'a, R> InstrumentedAsyncRead<'a, R> {
    /// Create a new `InstrumentedAsyncRead`.
    fn new(
        inner: R,
        read_byte_count: &'a IntCounter,
        read_count: &'a IntCounter,
        seek_count: &'a IntCounter,
    ) -> Self {
        Self {
            inner,
            read_byte_count: CounterGuard::new(read_byte_count),
            read_count: CounterGuard::new(read_count),
            seek_count: CounterGuard::new(seek_count),
        }
    }
}

impl<R: AsyncRead + Unpin + Send> AsyncRead for InstrumentedAsyncRead<'_, R> {
    fn poll_read(
        mut self: Pin<&mut Self>,
        cx: &mut Context<'_>,
        buf: &mut [u8],
    ) -> Poll<io::Result<usize>> {
        let poll = self.as_mut().project().inner.poll_read(cx, buf);
        if let Poll::Ready(Ok(n)) = &poll {
            self.read_count.inc_by(1);
            self.read_byte_count.inc_by(*n);
        }
        poll
    }
}

impl<R: AsyncSeek + Unpin + Send> AsyncSeek for InstrumentedAsyncRead<'_, R> {
    fn poll_seek(
        mut self: Pin<&mut Self>,
        cx: &mut Context<'_>,
        pos: io::SeekFrom,
    ) -> Poll<io::Result<u64>> {
        let poll = self.as_mut().project().inner.poll_seek(cx, pos);
        if let Poll::Ready(Ok(_)) = &poll {
            self.seek_count.inc_by(1);
        }
        poll
    }
}

/// A wrapper around [`AsyncWrite`] that adds instrumentation for monitoring
#[pin_project]
pub(crate) struct InstrumentedAsyncWrite<'a, W> {
    #[pin]
    inner: W,
    write_byte_count: CounterGuard<'a>,
    write_count: CounterGuard<'a>,
    flush_count: CounterGuard<'a>,
}

impl<'a, W> InstrumentedAsyncWrite<'a, W> {
    /// Create a new `InstrumentedAsyncWrite`.
    fn new(
        inner: W,
        write_byte_count: &'a IntCounter,
        write_count: &'a IntCounter,
        flush_count: &'a IntCounter,
    ) -> Self {
        Self {
            inner,
            write_byte_count: CounterGuard::new(write_byte_count),
            write_count: CounterGuard::new(write_count),
            flush_count: CounterGuard::new(flush_count),
        }
    }
}

impl<W: AsyncWrite + Unpin + Send> AsyncWrite for InstrumentedAsyncWrite<'_, W> {
    fn poll_write(
        mut self: Pin<&mut Self>,
        cx: &mut Context<'_>,
        buf: &[u8],
    ) -> Poll<io::Result<usize>> {
        let poll = self.as_mut().project().inner.poll_write(cx, buf);
        if let Poll::Ready(Ok(n)) = &poll {
            self.write_count.inc_by(1);
            self.write_byte_count.inc_by(*n);
        }
        poll
    }

    fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
        let poll = self.as_mut().project().inner.poll_flush(cx);
        if let Poll::Ready(Ok(())) = &poll {
            self.flush_count.inc_by(1);
        }
        poll
    }

    fn poll_close(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
        self.project().inner.poll_close(cx)
    }
}

/// Implements `RangeReader` for `ObjectStore` and record metrics.
pub(crate) struct InstrumentedRangeReader<'a> {
    store: ObjectStore,
    path: String,
    read_byte_count: &'a IntCounter,
    read_count: &'a IntCounter,
    file_size_hint: Option<u64>,
}

impl SizeAwareRangeReader for InstrumentedRangeReader<'_> {
    fn with_file_size_hint(&mut self, file_size_hint: u64) {
        self.file_size_hint = Some(file_size_hint);
    }
}

#[async_trait]
impl RangeReader for InstrumentedRangeReader<'_> {
    async fn metadata(&self) -> io::Result<Metadata> {
        match self.file_size_hint {
            Some(file_size_hint) => Ok(Metadata {
                content_length: file_size_hint,
            }),
            None => {
                let stat = self.store.stat(&self.path).await?;
                Ok(Metadata {
                    content_length: stat.content_length(),
                })
            }
        }
    }

    async fn read(&self, range: Range<u64>) -> io::Result<Bytes> {
        let buf = self.store.reader(&self.path).await?.read(range).await?;
        self.read_byte_count.inc_by(buf.len() as _);
        self.read_count.inc_by(1);
        Ok(buf.to_bytes())
    }

    async fn read_into(&self, range: Range<u64>, buf: &mut (impl BufMut + Send)) -> io::Result<()> {
        let reader = self.store.reader(&self.path).await?;
        let size = reader.read_into(buf, range).await?;
        self.read_byte_count.inc_by(size as _);
        self.read_count.inc_by(1);
        Ok(())
    }

    async fn read_vec(&self, ranges: &[Range<u64>]) -> io::Result<Vec<Bytes>> {
        let bufs = self
            .store
            .reader(&self.path)
            .await?
            .fetch(ranges.to_owned())
            .await?;
        let total_size: usize = bufs.iter().map(|buf| buf.len()).sum();
        self.read_byte_count.inc_by(total_size as _);
        self.read_count.inc_by(1);
        Ok(bufs.into_iter().map(|buf| buf.to_bytes()).collect())
    }
}

/// A guard that increments a counter when dropped.
struct CounterGuard<'a> {
    count: usize,
    counter: &'a IntCounter,
}

impl<'a> CounterGuard<'a> {
    /// Create a new `CounterGuard`.
    fn new(counter: &'a IntCounter) -> Self {
        Self { count: 0, counter }
    }

    /// Increment the counter by `n`.
    fn inc_by(&mut self, n: usize) {
        self.count += n;
    }
}

impl Drop for CounterGuard<'_> {
    fn drop(&mut self) {
        if self.count > 0 {
            self.counter.inc_by(self.count as _);
        }
    }
}

#[cfg(test)]
mod tests {
    use futures::{AsyncReadExt, AsyncSeekExt, AsyncWriteExt};
    use object_store::services::Memory;

    use super::*;

    #[tokio::test]
    async fn test_instrumented_store_read_write() {
        let instrumented_store =
            InstrumentedStore::new(ObjectStore::new(Memory::default()).unwrap().finish());

        let read_byte_count = IntCounter::new("read_byte_count", "read_byte_count").unwrap();
        let read_count = IntCounter::new("read_count", "read_count").unwrap();
        let seek_count = IntCounter::new("seek_count", "seek_count").unwrap();
        let write_byte_count = IntCounter::new("write_byte_count", "write_byte_count").unwrap();
        let write_count = IntCounter::new("write_count", "write_count").unwrap();
        let flush_count = IntCounter::new("flush_count", "flush_count").unwrap();

        let mut writer = instrumented_store
            .writer("my_file", &write_byte_count, &write_count, &flush_count)
            .await
            .unwrap();
        writer.write_all(b"hello").await.unwrap();
        writer.flush().await.unwrap();
        writer.close().await.unwrap();
        drop(writer);

        let mut reader = instrumented_store
            .reader("my_file", &read_byte_count, &read_count, &seek_count)
            .await
            .unwrap();
        let mut buf = vec![0; 5];
        reader.read_exact(&mut buf).await.unwrap();
        reader.seek(io::SeekFrom::Start(0)).await.unwrap();
        reader.read_exact(&mut buf).await.unwrap();
        drop(reader);

        assert_eq!(read_byte_count.get(), 10);
        assert_eq!(read_count.get(), 2);
        assert_eq!(seek_count.get(), 1);
        assert_eq!(write_byte_count.get(), 5);
        assert_eq!(write_count.get(), 1);
        assert_eq!(flush_count.get(), 1);
    }
}