Spaces:
Build error
Build error
File size: 33,077 Bytes
84d2a97 |
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 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 |
mod immutable_numeric_index;
mod mmap_numeric_index;
mod mutable_numeric_index;
#[cfg(test)]
mod tests;
use std::cmp::{max, min};
use std::marker::PhantomData;
use std::ops::Bound;
use std::ops::Bound::{Excluded, Included, Unbounded};
use std::path::{Path, PathBuf};
use std::str::FromStr;
use std::sync::Arc;
use chrono::DateTime;
use common::types::PointOffsetType;
use delegate::delegate;
use mmap_numeric_index::MmapNumericIndex;
use mutable_numeric_index::{InMemoryNumericIndex, MutableNumericIndex};
use parking_lot::RwLock;
use rocksdb::DB;
use serde::de::DeserializeOwned;
use serde::Serialize;
use serde_json::Value;
use uuid::Uuid;
use self::immutable_numeric_index::ImmutableNumericIndex;
use super::histogram::Point;
use super::mmap_point_to_values::MmapValue;
use super::utils::check_boundaries;
use super::FieldIndexBuilderTrait;
use crate::common::operation_error::{OperationError, OperationResult};
use crate::common::Flusher;
use crate::index::field_index::histogram::{Histogram, Numericable};
use crate::index::field_index::stat_tools::estimate_multi_value_selection_cardinality;
use crate::index::field_index::{
CardinalityEstimation, PayloadBlockCondition, PayloadFieldIndex, PrimaryCondition, ValueIndexer,
};
use crate::index::key_encoding::{
decode_f64_key_ascending, decode_i64_key_ascending, decode_u128_key_ascending,
encode_f64_key_ascending, encode_i64_key_ascending, encode_u128_key_ascending,
};
use crate::telemetry::PayloadIndexTelemetry;
use crate::types::{
DateTimePayloadType, FieldCondition, FloatPayloadType, IntPayloadType, Match, MatchValue,
PayloadKeyType, Range, RangeInterface, UuidIntType, UuidPayloadType, ValueVariants,
};
const HISTOGRAM_MAX_BUCKET_SIZE: usize = 10_000;
const HISTOGRAM_PRECISION: f64 = 0.01;
pub trait StreamRange<T> {
fn stream_range(
&self,
range: &RangeInterface,
) -> Box<dyn DoubleEndedIterator<Item = (T, PointOffsetType)> + '_>;
}
pub trait Encodable: Copy + Serialize + DeserializeOwned + 'static {
fn encode_key(&self, id: PointOffsetType) -> Vec<u8>;
fn decode_key(key: &[u8]) -> (PointOffsetType, Self);
fn cmp_encoded(&self, other: &Self) -> std::cmp::Ordering;
}
impl Encodable for IntPayloadType {
fn encode_key(&self, id: PointOffsetType) -> Vec<u8> {
encode_i64_key_ascending(*self, id)
}
fn decode_key(key: &[u8]) -> (PointOffsetType, Self) {
decode_i64_key_ascending(key)
}
fn cmp_encoded(&self, other: &Self) -> std::cmp::Ordering {
self.cmp(other)
}
}
impl Encodable for u128 {
fn encode_key(&self, id: PointOffsetType) -> Vec<u8> {
encode_u128_key_ascending(*self, id)
}
fn decode_key(key: &[u8]) -> (PointOffsetType, Self) {
decode_u128_key_ascending(key)
}
fn cmp_encoded(&self, other: &Self) -> std::cmp::Ordering {
self.cmp(other)
}
}
impl Encodable for FloatPayloadType {
fn encode_key(&self, id: PointOffsetType) -> Vec<u8> {
encode_f64_key_ascending(*self, id)
}
fn decode_key(key: &[u8]) -> (PointOffsetType, Self) {
decode_f64_key_ascending(key)
}
fn cmp_encoded(&self, other: &Self) -> std::cmp::Ordering {
if self.is_nan() && other.is_nan() {
return std::cmp::Ordering::Equal;
}
if self.is_nan() {
return std::cmp::Ordering::Less;
}
if other.is_nan() {
return std::cmp::Ordering::Greater;
}
self.partial_cmp(other).unwrap()
}
}
/// Encodes timestamps as i64 in microseconds
impl Encodable for DateTimePayloadType {
fn encode_key(&self, id: PointOffsetType) -> Vec<u8> {
encode_i64_key_ascending(self.timestamp(), id)
}
fn decode_key(key: &[u8]) -> (PointOffsetType, Self) {
let (id, timestamp) = decode_i64_key_ascending(key);
let datetime =
DateTime::from_timestamp(timestamp / 1000, (timestamp % 1000) as u32 * 1_000_000)
.unwrap_or_else(|| {
log::warn!("Failed to decode timestamp {timestamp}, fallback to UNIX_EPOCH");
DateTime::UNIX_EPOCH
});
(id, datetime.into())
}
fn cmp_encoded(&self, other: &Self) -> std::cmp::Ordering {
self.timestamp().cmp(&other.timestamp())
}
}
impl<T: Encodable + Numericable> Range<T> {
pub(in crate::index::field_index::numeric_index) fn as_index_key_bounds(
&self,
) -> (Bound<Point<T>>, Bound<Point<T>>) {
let start_bound = match self {
Range { gt: Some(gt), .. } => Excluded(Point::new(*gt, PointOffsetType::MAX)),
Range { gte: Some(gte), .. } => Included(Point::new(*gte, PointOffsetType::MIN)),
_ => Unbounded,
};
let end_bound = match self {
Range { lt: Some(lt), .. } => Excluded(Point::new(*lt, PointOffsetType::MIN)),
Range { lte: Some(lte), .. } => Included(Point::new(*lte, PointOffsetType::MAX)),
_ => Unbounded,
};
(start_bound, end_bound)
}
}
pub enum NumericIndexInner<T: Encodable + Numericable + MmapValue + Default> {
Mutable(MutableNumericIndex<T>),
Immutable(ImmutableNumericIndex<T>),
Mmap(MmapNumericIndex<T>),
}
impl<T: Encodable + Numericable + MmapValue + Default> NumericIndexInner<T> {
pub fn new_memory(db: Arc<RwLock<DB>>, field: &str, is_appendable: bool) -> Self {
if is_appendable {
NumericIndexInner::Mutable(MutableNumericIndex::new(db, field))
} else {
NumericIndexInner::Immutable(ImmutableNumericIndex::new(db, field))
}
}
pub fn new_mmap(path: &Path) -> OperationResult<Self> {
Ok(NumericIndexInner::Mmap(MmapNumericIndex::load(path)?))
}
fn get_histogram(&self) -> &Histogram<T> {
match self {
NumericIndexInner::Mutable(index) => index.get_histogram(),
NumericIndexInner::Immutable(index) => index.get_histogram(),
NumericIndexInner::Mmap(index) => index.get_histogram(),
}
}
fn get_points_count(&self) -> usize {
match self {
NumericIndexInner::Mutable(index) => index.get_points_count(),
NumericIndexInner::Immutable(index) => index.get_points_count(),
NumericIndexInner::Mmap(index) => index.get_points_count(),
}
}
fn total_unique_values_count(&self) -> usize {
match self {
NumericIndexInner::Mutable(index) => index.total_unique_values_count(),
NumericIndexInner::Immutable(index) => index.total_unique_values_count(),
NumericIndexInner::Mmap(index) => index.total_unique_values_count(),
}
}
pub fn load(&mut self) -> OperationResult<bool> {
match self {
NumericIndexInner::Mutable(index) => index.load(),
NumericIndexInner::Immutable(index) => index.load(),
NumericIndexInner::Mmap(_) => {
// Mmap index is always loaded
Ok(true)
}
}
}
pub fn flusher(&self) -> Flusher {
match self {
NumericIndexInner::Mutable(index) => index.get_db_wrapper().flusher(),
NumericIndexInner::Immutable(index) => index.get_db_wrapper().flusher(),
NumericIndexInner::Mmap(index) => index.flusher(),
}
}
pub fn files(&self) -> Vec<PathBuf> {
match self {
NumericIndexInner::Mutable(_) => vec![],
NumericIndexInner::Immutable(_) => vec![],
NumericIndexInner::Mmap(index) => index.files(),
}
}
pub fn remove_point(&mut self, idx: PointOffsetType) -> OperationResult<()> {
match self {
NumericIndexInner::Mutable(index) => index.remove_point(idx),
NumericIndexInner::Immutable(index) => index.remove_point(idx),
NumericIndexInner::Mmap(index) => {
index.remove_point(idx);
Ok(())
}
}
}
pub fn check_values_any(&self, idx: PointOffsetType, check_fn: impl Fn(&T) -> bool) -> bool {
match self {
NumericIndexInner::Mutable(index) => index.check_values_any(idx, check_fn),
NumericIndexInner::Immutable(index) => index.check_values_any(idx, check_fn),
NumericIndexInner::Mmap(index) => index.check_values_any(idx, check_fn),
}
}
pub fn get_values(&self, idx: PointOffsetType) -> Option<Box<dyn Iterator<Item = T> + '_>> {
match self {
NumericIndexInner::Mutable(index) => index.get_values(idx),
NumericIndexInner::Immutable(index) => index.get_values(idx),
NumericIndexInner::Mmap(index) => index.get_values(idx),
}
}
pub fn values_count(&self, idx: PointOffsetType) -> usize {
match self {
NumericIndexInner::Mutable(index) => index.values_count(idx).unwrap_or_default(),
NumericIndexInner::Immutable(index) => index.values_count(idx).unwrap_or_default(),
NumericIndexInner::Mmap(index) => index.values_count(idx).unwrap_or_default(),
}
}
/// Maximum number of values per point
///
/// # Warning
///
/// Zero if the index is empty.
pub fn max_values_per_point(&self) -> usize {
match self {
NumericIndexInner::Mutable(index) => index.get_max_values_per_point(),
NumericIndexInner::Immutable(index) => index.get_max_values_per_point(),
NumericIndexInner::Mmap(index) => index.get_max_values_per_point(),
}
}
fn range_cardinality(&self, range: &RangeInterface) -> CardinalityEstimation {
let max_values_per_point = self.max_values_per_point();
if max_values_per_point == 0 {
return CardinalityEstimation::exact(0);
}
let range = match range {
RangeInterface::Float(float_range) => float_range.map(T::from_f64),
RangeInterface::DateTime(datetime_range) => {
datetime_range.map(|dt| T::from_u128(dt.timestamp() as u128))
}
};
let lbound = if let Some(lte) = range.lte {
Included(lte)
} else if let Some(lt) = range.lt {
Excluded(lt)
} else {
Unbounded
};
let gbound = if let Some(gte) = range.gte {
Included(gte)
} else if let Some(gt) = range.gt {
Excluded(gt)
} else {
Unbounded
};
let histogram_estimation = self.get_histogram().estimate(gbound, lbound);
let min_estimation = histogram_estimation.0;
let max_estimation = histogram_estimation.2;
let total_values = self.total_unique_values_count();
// Example: points_count = 1000, total values = 2000, values_count = 500
// min = max(1, 500 - (2000 - 1000)) = 1
// exp = 500 / (2000 / 1000) = 250
// max = min(1000, 500) = 500
// Example: points_count = 1000, total values = 1200, values_count = 500
// min = max(1, 500 - (1200 - 1000)) = 300
// exp = 500 / (1200 / 1000) = 416
// max = min(1000, 500) = 500
// Note: max_values_per_point is never zero here because we check it above
let expected_min = max(
min_estimation / max_values_per_point,
max(
min(1, min_estimation),
min_estimation.saturating_sub(total_values - self.get_points_count()),
),
);
let expected_max = min(self.get_points_count(), max_estimation);
let estimation = estimate_multi_value_selection_cardinality(
self.get_points_count(),
total_values,
histogram_estimation.1,
)
.round() as usize;
CardinalityEstimation {
primary_clauses: vec![],
min: expected_min,
exp: min(expected_max, max(estimation, expected_min)),
max: expected_max,
}
}
pub fn get_telemetry_data(&self) -> PayloadIndexTelemetry {
PayloadIndexTelemetry {
field_name: None,
points_count: self.get_points_count(),
points_values_count: self.get_histogram().get_total_count(),
histogram_bucket_size: Some(self.get_histogram().current_bucket_size()),
}
}
pub fn values_is_empty(&self, idx: PointOffsetType) -> bool {
self.values_count(idx) == 0
}
pub fn point_ids_by_value(&self, value: &T) -> Box<dyn Iterator<Item = PointOffsetType> + '_> {
let start = Bound::Included(Point::new(*value, PointOffsetType::MIN));
let end = Bound::Included(Point::new(*value, PointOffsetType::MAX));
match &self {
NumericIndexInner::Mutable(mutable) => Box::new(mutable.values_range(start, end)),
NumericIndexInner::Immutable(immutable) => Box::new(immutable.values_range(start, end)),
NumericIndexInner::Mmap(mmap) => Box::new(mmap.values_range(start, end)),
}
}
/// Tries to estimate the amount of points for a given key.
pub fn estimate_points(&self, value: &T) -> usize {
let start = Bound::Included(Point::new(*value, PointOffsetType::MIN));
let end = Bound::Included(Point::new(*value, PointOffsetType::MAX));
match &self {
NumericIndexInner::Mutable(mutable) => {
let mut iter = mutable.map().range((start, end));
let first = iter.next();
let last = iter.next_back();
match (first, last) {
(Some(_), None) => 1,
(Some(start), Some(end)) => (start.idx..end.idx).len(),
(None, _) => 0,
}
}
NumericIndexInner::Immutable(immutable) => {
let range_size = immutable.values_range_size(start, end);
if range_size == 0 {
return 0;
}
let avg_values_per_point =
self.total_unique_values_count() as f32 / self.get_points_count() as f32;
(range_size as f32 / avg_values_per_point).max(1.0).round() as usize
}
NumericIndexInner::Mmap(mmap) => {
let range_size = mmap.values_range_size(start, end);
if range_size == 0 {
return 0;
}
let avg_values_per_point =
self.total_unique_values_count() as f32 / self.get_points_count() as f32;
(range_size as f32 / avg_values_per_point).max(1.0).round() as usize
}
}
}
}
pub struct NumericIndex<T: Encodable + Numericable + MmapValue + Default, P> {
inner: NumericIndexInner<T>,
_phantom: PhantomData<P>,
}
pub trait NumericIndexIntoInnerValue<T, P> {
fn into_inner_value(value: P) -> T;
}
impl<T: Encodable + Numericable + MmapValue + Default, P> NumericIndex<T, P> {
pub fn new(db: Arc<RwLock<DB>>, field: &str, is_appendable: bool) -> Self {
Self {
inner: NumericIndexInner::new_memory(db, field, is_appendable),
_phantom: PhantomData,
}
}
pub fn new_mmap(path: &Path) -> OperationResult<Self> {
Ok(Self {
inner: NumericIndexInner::new_mmap(path)?,
_phantom: PhantomData,
})
}
pub fn builder(db: Arc<RwLock<DB>>, field: &str) -> NumericIndexBuilder<T, P>
where
Self: ValueIndexer<ValueType = P>,
{
NumericIndexBuilder(Self::new(db, field, true))
}
#[cfg(test)]
pub fn builder_immutable(db: Arc<RwLock<DB>>, field: &str) -> NumericIndexImmutableBuilder<T, P>
where
Self: ValueIndexer<ValueType = P>,
{
NumericIndexImmutableBuilder {
index: Self::new(db.clone(), field, true),
field: field.to_owned(),
db,
}
}
pub fn builder_mmap(path: &Path) -> NumericIndexMmapBuilder<T, P>
where
Self: ValueIndexer<ValueType = P> + NumericIndexIntoInnerValue<T, P>,
{
NumericIndexMmapBuilder {
path: path.to_owned(),
in_memory_index: InMemoryNumericIndex::default(),
_phantom: PhantomData,
}
}
pub fn inner(&self) -> &NumericIndexInner<T> {
&self.inner
}
pub fn mut_inner(&mut self) -> &mut NumericIndexInner<T> {
&mut self.inner
}
delegate! {
to self.inner {
pub fn check_values_any(&self, idx: PointOffsetType, check_fn: impl Fn(&T) -> bool) -> bool;
pub fn clear(self) -> OperationResult<()>;
pub fn get_telemetry_data(&self) -> PayloadIndexTelemetry;
pub fn load(&mut self) -> OperationResult<bool>;
pub fn values_count(&self, idx: PointOffsetType) -> usize;
pub fn get_values(&self, idx: PointOffsetType) -> Option<Box<dyn Iterator<Item = T> + '_>>;
pub fn values_is_empty(&self, idx: PointOffsetType) -> bool;
}
}
}
pub struct NumericIndexBuilder<T: Encodable + Numericable + MmapValue + Default, P>(
NumericIndex<T, P>,
)
where
NumericIndex<T, P>: ValueIndexer<ValueType = P>;
impl<T: Encodable + Numericable + MmapValue + Default, P> FieldIndexBuilderTrait
for NumericIndexBuilder<T, P>
where
NumericIndex<T, P>: ValueIndexer<ValueType = P>,
{
type FieldIndexType = NumericIndex<T, P>;
fn init(&mut self) -> OperationResult<()> {
match &mut self.0.inner {
NumericIndexInner::Mutable(index) => index.get_db_wrapper().recreate_column_family(),
NumericIndexInner::Immutable(_) => unreachable!(),
NumericIndexInner::Mmap(_) => unreachable!(),
}
}
fn add_point(&mut self, id: PointOffsetType, payload: &[&Value]) -> OperationResult<()> {
self.0.add_point(id, payload)
}
fn finalize(self) -> OperationResult<Self::FieldIndexType> {
self.0.inner.flusher()()?;
Ok(self.0)
}
}
#[cfg(test)]
pub struct NumericIndexImmutableBuilder<T: Encodable + Numericable + MmapValue + Default, P>
where
NumericIndex<T, P>: ValueIndexer<ValueType = P>,
{
index: NumericIndex<T, P>,
field: String,
db: Arc<RwLock<DB>>,
}
#[cfg(test)]
impl<T: Encodable + Numericable + MmapValue + Default, P> FieldIndexBuilderTrait
for NumericIndexImmutableBuilder<T, P>
where
NumericIndex<T, P>: ValueIndexer<ValueType = P>,
{
type FieldIndexType = NumericIndex<T, P>;
fn init(&mut self) -> OperationResult<()> {
match &mut self.index.inner {
NumericIndexInner::Mutable(index) => index.get_db_wrapper().recreate_column_family(),
NumericIndexInner::Immutable(_) => unreachable!(),
NumericIndexInner::Mmap(_) => unreachable!(),
}
}
fn add_point(&mut self, id: PointOffsetType, payload: &[&Value]) -> OperationResult<()> {
self.index.add_point(id, payload)
}
fn finalize(self) -> OperationResult<Self::FieldIndexType> {
self.index.inner.flusher()()?;
drop(self.index);
let mut inner: NumericIndexInner<T> =
NumericIndexInner::new_memory(self.db, &self.field, false);
inner.load()?;
Ok(NumericIndex {
inner,
_phantom: PhantomData,
})
}
}
pub struct NumericIndexMmapBuilder<T, P>
where
T: Encodable + Numericable + MmapValue + Default,
NumericIndex<T, P>: ValueIndexer<ValueType = P> + NumericIndexIntoInnerValue<T, P>,
{
path: PathBuf,
in_memory_index: InMemoryNumericIndex<T>,
_phantom: PhantomData<P>,
}
impl<T: Encodable + Numericable + MmapValue + Default, P> FieldIndexBuilderTrait
for NumericIndexMmapBuilder<T, P>
where
NumericIndex<T, P>: ValueIndexer<ValueType = P> + NumericIndexIntoInnerValue<T, P>,
{
type FieldIndexType = NumericIndex<T, P>;
fn init(&mut self) -> OperationResult<()> {
Ok(())
}
fn add_point(&mut self, id: PointOffsetType, payload: &[&Value]) -> OperationResult<()> {
self.in_memory_index.remove_point(id);
let mut flatten_values: Vec<_> = vec![];
for value in payload.iter() {
let payload_values = <NumericIndex<T, P> as ValueIndexer>::get_values(value);
flatten_values.extend(payload_values);
}
let flatten_values = flatten_values
.into_iter()
.map(NumericIndex::into_inner_value)
.collect();
self.in_memory_index.add_many_to_list(id, flatten_values);
Ok(())
}
fn finalize(self) -> OperationResult<Self::FieldIndexType> {
let inner = MmapNumericIndex::build(self.in_memory_index, &self.path)?;
Ok(NumericIndex {
inner: NumericIndexInner::Mmap(inner),
_phantom: PhantomData,
})
}
}
impl<T: Encodable + Numericable + MmapValue + Default> PayloadFieldIndex for NumericIndexInner<T> {
fn count_indexed_points(&self) -> usize {
self.get_points_count()
}
fn load(&mut self) -> OperationResult<bool> {
NumericIndexInner::load(self)
}
fn clear(self) -> OperationResult<()> {
match self {
NumericIndexInner::Mutable(index) => index.get_db_wrapper().recreate_column_family(),
NumericIndexInner::Immutable(index) => index.get_db_wrapper().recreate_column_family(),
NumericIndexInner::Mmap(index) => index.clear(),
}
}
fn flusher(&self) -> Flusher {
NumericIndexInner::flusher(self)
}
fn files(&self) -> Vec<PathBuf> {
NumericIndexInner::files(self)
}
fn filter(
&self,
condition: &FieldCondition,
) -> Option<Box<dyn Iterator<Item = PointOffsetType> + '_>> {
if let Some(Match::Value(MatchValue {
value: ValueVariants::String(keyword),
})) = &condition.r#match
{
let keyword = keyword.as_str();
if let Ok(uuid) = Uuid::from_str(keyword) {
let value = T::from_u128(uuid.as_u128());
return Some(self.point_ids_by_value(&value));
}
}
let range_cond = condition.range.as_ref()?;
let (start_bound, end_bound) = match range_cond {
RangeInterface::Float(float_range) => float_range.map(T::from_f64),
RangeInterface::DateTime(datetime_range) => {
datetime_range.map(|dt| T::from_u128(dt.timestamp() as u128))
}
}
.as_index_key_bounds();
// map.range
// Panics if range start > end. Panics if range start == end and both bounds are Excluded.
if !check_boundaries(&start_bound, &end_bound) {
return Some(Box::new(std::iter::empty()));
}
Some(match self {
NumericIndexInner::Mutable(index) => {
Box::new(index.values_range(start_bound, end_bound))
}
NumericIndexInner::Immutable(index) => {
Box::new(index.values_range(start_bound, end_bound))
}
NumericIndexInner::Mmap(index) => Box::new(index.values_range(start_bound, end_bound)),
})
}
fn estimate_cardinality(&self, condition: &FieldCondition) -> Option<CardinalityEstimation> {
if let Some(Match::Value(MatchValue {
value: ValueVariants::String(keyword),
})) = &condition.r#match
{
let keyword = keyword.as_str();
if let Ok(uuid) = Uuid::from_str(keyword) {
let key = T::from_u128(uuid.as_u128());
let estimated_count = self.estimate_points(&key);
return Some(
CardinalityEstimation::exact(estimated_count)
.with_primary_clause(PrimaryCondition::Condition(condition.clone())),
);
}
}
condition.range.as_ref().map(|range| {
let mut cardinality = self.range_cardinality(range);
cardinality
.primary_clauses
.push(PrimaryCondition::Condition(condition.clone()));
cardinality
})
}
fn payload_blocks(
&self,
threshold: usize,
key: PayloadKeyType,
) -> Box<dyn Iterator<Item = PayloadBlockCondition> + '_> {
let mut lower_bound = Unbounded;
let mut pre_lower_bound: Option<Bound<T>> = None;
let mut payload_conditions = Vec::new();
let value_per_point =
self.total_unique_values_count() as f64 / self.get_points_count() as f64;
let effective_threshold = (threshold as f64 * value_per_point) as usize;
loop {
let upper_bound = self
.get_histogram()
.get_range_by_size(lower_bound, effective_threshold / 2);
if let Some(pre_lower_bound) = pre_lower_bound {
let range = Range {
lt: match upper_bound {
Excluded(val) => Some(val.to_f64()),
_ => None,
},
gt: match pre_lower_bound {
Excluded(val) => Some(val.to_f64()),
_ => None,
},
gte: match pre_lower_bound {
Included(val) => Some(val.to_f64()),
_ => None,
},
lte: match upper_bound {
Included(val) => Some(val.to_f64()),
_ => None,
},
};
let cardinality = self.range_cardinality(&RangeInterface::Float(range.clone()));
let condition = PayloadBlockCondition {
condition: FieldCondition::new_range(key.clone(), range),
cardinality: cardinality.exp,
};
payload_conditions.push(condition);
} else if upper_bound == Unbounded {
// One block covers all points
payload_conditions.push(PayloadBlockCondition {
condition: FieldCondition::new_range(
key.clone(),
Range {
gte: None,
lte: None,
lt: None,
gt: None,
},
),
cardinality: self.get_points_count(),
});
}
pre_lower_bound = Some(lower_bound);
lower_bound = match upper_bound {
Included(val) => Excluded(val),
Excluded(val) => Excluded(val),
Unbounded => break,
};
}
Box::new(payload_conditions.into_iter())
}
}
impl ValueIndexer for NumericIndex<IntPayloadType, IntPayloadType> {
type ValueType = IntPayloadType;
fn add_many(
&mut self,
id: PointOffsetType,
values: Vec<IntPayloadType>,
) -> OperationResult<()> {
match &mut self.inner {
NumericIndexInner::Mutable(index) => index.add_many_to_list(id, values),
NumericIndexInner::Immutable(_) => Err(OperationError::service_error(
"Can't add values to immutable numeric index",
)),
NumericIndexInner::Mmap(_) => Err(OperationError::service_error(
"Can't add values to mmap numeric index",
)),
}
}
fn get_value(value: &Value) -> Option<IntPayloadType> {
value.as_i64()
}
fn remove_point(&mut self, id: PointOffsetType) -> OperationResult<()> {
self.inner.remove_point(id)
}
}
impl NumericIndexIntoInnerValue<IntPayloadType, IntPayloadType>
for NumericIndex<IntPayloadType, IntPayloadType>
{
fn into_inner_value(value: IntPayloadType) -> IntPayloadType {
value
}
}
impl ValueIndexer for NumericIndex<IntPayloadType, DateTimePayloadType> {
type ValueType = DateTimePayloadType;
fn add_many(
&mut self,
id: PointOffsetType,
values: Vec<DateTimePayloadType>,
) -> OperationResult<()> {
match &mut self.inner {
NumericIndexInner::Mutable(index) => {
index.add_many_to_list(id, values.into_iter().map(Self::into_inner_value).collect())
}
NumericIndexInner::Immutable(_) => Err(OperationError::service_error(
"Can't add values to immutable numeric index",
)),
NumericIndexInner::Mmap(_) => Err(OperationError::service_error(
"Can't add values to mmap numeric index",
)),
}
}
fn get_value(value: &Value) -> Option<DateTimePayloadType> {
DateTimePayloadType::from_str(value.as_str()?).ok()
}
fn remove_point(&mut self, id: PointOffsetType) -> OperationResult<()> {
self.inner.remove_point(id)
}
}
impl NumericIndexIntoInnerValue<IntPayloadType, DateTimePayloadType>
for NumericIndex<IntPayloadType, DateTimePayloadType>
{
fn into_inner_value(value: DateTimePayloadType) -> IntPayloadType {
value.timestamp()
}
}
impl ValueIndexer for NumericIndex<FloatPayloadType, FloatPayloadType> {
type ValueType = FloatPayloadType;
fn add_many(
&mut self,
id: PointOffsetType,
values: Vec<FloatPayloadType>,
) -> OperationResult<()> {
match &mut self.inner {
NumericIndexInner::Mutable(index) => index.add_many_to_list(id, values),
NumericIndexInner::Immutable(_) => Err(OperationError::service_error(
"Can't add values to immutable numeric index",
)),
NumericIndexInner::Mmap(_) => Err(OperationError::service_error(
"Can't add values to mmap numeric index",
)),
}
}
fn get_value(value: &Value) -> Option<FloatPayloadType> {
value.as_f64()
}
fn remove_point(&mut self, id: PointOffsetType) -> OperationResult<()> {
self.inner.remove_point(id)
}
}
impl NumericIndexIntoInnerValue<FloatPayloadType, FloatPayloadType>
for NumericIndex<FloatPayloadType, FloatPayloadType>
{
fn into_inner_value(value: FloatPayloadType) -> FloatPayloadType {
value
}
}
impl ValueIndexer for NumericIndex<UuidIntType, UuidPayloadType> {
type ValueType = UuidPayloadType;
fn add_many(
&mut self,
id: PointOffsetType,
values: Vec<Self::ValueType>,
) -> OperationResult<()> {
match &mut self.inner {
NumericIndexInner::Mutable(index) => {
let values: Vec<u128> = values.iter().map(|i| i.as_u128()).collect();
index.add_many_to_list(id, values)
}
NumericIndexInner::Immutable(_) => Err(OperationError::service_error(
"Can't add values to immutable numeric index",
)),
NumericIndexInner::Mmap(_) => Err(OperationError::service_error(
"Can't add values to mmap numeric index",
)),
}
}
fn get_value(value: &Value) -> Option<Self::ValueType> {
Uuid::parse_str(value.as_str()?).ok()
}
fn remove_point(&mut self, id: PointOffsetType) -> OperationResult<()> {
self.inner.remove_point(id)
}
}
impl NumericIndexIntoInnerValue<UuidIntType, UuidPayloadType>
for NumericIndex<UuidIntType, UuidPayloadType>
{
fn into_inner_value(value: UuidPayloadType) -> UuidIntType {
value.as_u128()
}
}
impl<T> StreamRange<T> for NumericIndexInner<T>
where
T: Encodable + Numericable + MmapValue + Default,
{
fn stream_range(
&self,
range: &RangeInterface,
) -> Box<dyn DoubleEndedIterator<Item = (T, PointOffsetType)> + '_> {
let range = match range {
RangeInterface::Float(float_range) => float_range.map(T::from_f64),
RangeInterface::DateTime(datetime_range) => {
datetime_range.map(|dt| T::from_u128(dt.timestamp() as u128))
}
};
let (start_bound, end_bound) = range.as_index_key_bounds();
// map.range
// Panics if range start > end. Panics if range start == end and both bounds are Excluded.
if !check_boundaries(&start_bound, &end_bound) {
return Box::new(std::iter::empty());
}
match self {
NumericIndexInner::Mutable(index) => {
Box::new(index.orderable_values_range(start_bound, end_bound))
}
NumericIndexInner::Immutable(index) => {
Box::new(index.orderable_values_range(start_bound, end_bound))
}
NumericIndexInner::Mmap(index) => {
Box::new(index.orderable_values_range(start_bound, end_bound))
}
}
}
}
fn numeric_index_storage_cf_name(field: &str) -> String {
format!("{field}_numeric")
}
|