-
Notifications
You must be signed in to change notification settings - Fork 349
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ensures the affinity function is the same as in Quickwit 0.8
Closes #5576
- Loading branch information
1 parent
7ec03f9
commit e51b3f4
Showing
4 changed files
with
122 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
// Copyright (C) 2024 Quickwit, Inc. | ||
// | ||
// Quickwit is offered under the AGPL v3.0 and as commercial software. | ||
// For commercial licensing, contact us at [email protected]. | ||
// | ||
// AGPL: | ||
// This program is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU Affero General Public License as | ||
// published by the Free Software Foundation, either version 3 of the | ||
// License, or (at your option) any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU Affero General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU Affero General Public License | ||
// along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
use std::hash::Hasher; | ||
use std::net::SocketAddr; | ||
|
||
/// Computes the hash of socket addr, the way it was done before Rust 1.81 | ||
/// | ||
/// In https://github.com/rust-lang/rust/commit/ba620344301aaa3b2733575a0696cdfd877edbdf | ||
/// rustc change the implementation of Hash for IpAddr v4 and v6. | ||
/// | ||
/// The idea was to not hash an array of bytes but instead interpret it as a register | ||
/// and hash this. | ||
/// | ||
/// This was done for performance reason, but this change the result of the hash function | ||
/// used to compute affinity in quickwit. As a result, the switch would invalidate all | ||
/// existing cache. | ||
/// | ||
/// In order to avoid this, we introduce the following function that reproduces the old | ||
/// behavior. | ||
#[repr(transparent)] | ||
#[derive(Debug, Eq, PartialEq, Copy, Clone)] | ||
pub struct SocketAddrLegacyHash<'a>(pub &'a SocketAddr); | ||
|
||
impl<'a> std::hash::Hash for SocketAddrLegacyHash<'a> { | ||
fn hash<H: Hasher>(&self, state: &mut H) { | ||
std::mem::discriminant(self.0).hash(state); | ||
match self.0 { | ||
SocketAddr::V4(socket_addr_v4) => { | ||
socket_addr_v4.ip().octets().hash(state); | ||
socket_addr_v4.port().hash(state); | ||
} | ||
SocketAddr::V6(socket_addr_v6) => { | ||
socket_addr_v6.ip().octets().hash(state); | ||
socket_addr_v6.port().hash(state); | ||
socket_addr_v6.flowinfo().hash(state); | ||
socket_addr_v6.scope_id().hash(state); | ||
}, | ||
} | ||
} | ||
} | ||
|
||
|
||
|
||
#[cfg(test)] | ||
mod tests { | ||
use std::net::SocketAddrV6; | ||
use super::*; | ||
|
||
fn sample_socket_addr_v4() -> SocketAddr { | ||
"17.12.15.3:1834".parse().unwrap() | ||
} | ||
|
||
fn sample_socket_addr_v6() -> SocketAddr { | ||
let mut socket_addr_v6: SocketAddrV6 = "[fe80::240:63ff:fede:3c19]:8080".parse().unwrap(); | ||
socket_addr_v6.set_scope_id(4047u32); | ||
socket_addr_v6.set_flowinfo(303u32); | ||
socket_addr_v6.into() | ||
} | ||
|
||
fn compute_hash(hashable: impl std::hash::Hash) -> u64 { | ||
// I wish I could have used the sip hasher but we don't have the deps here and I did | ||
// not want to move that code to quickwit-common. | ||
// | ||
// If test break because rust changed its default hasher, we can just update the tests in this | ||
// file with the new values. | ||
let mut hasher = siphasher::sip::SipHasher::default(); | ||
hashable.hash(&mut hasher); | ||
hasher.finish() | ||
} | ||
|
||
#[test] | ||
fn test_legacy_hash_socket_addr_v4() { | ||
let h = compute_hash(SocketAddrLegacyHash(&sample_socket_addr_v4())); | ||
assert_eq!(h, 8725442259486497862); | ||
} | ||
|
||
#[test] | ||
fn test_legacy_hash_socket_addr_v6() { | ||
let h = compute_hash(SocketAddrLegacyHash(&sample_socket_addr_v6())); | ||
assert_eq!(h, 14277248675058176752); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters