Files
scylladb/locator/simple_snitch.hh
Avi Kivity 0ae22a09d4 LICENSE: Update to version 1.1
Updated terms of non-commercial use (must be a never-customer).
2026-04-12 19:46:33 +03:00

46 lines
977 B
C++

/*
*
* Modified by ScyllaDB
* Copyright (C) 2015-present ScyllaDB
*/
/*
* SPDX-License-Identifier: (LicenseRef-ScyllaDB-Source-Available-1.1 and Apache-2.0)
*/
#pragma once
#include "snitch_base.hh"
namespace locator {
/**
* A simple endpoint snitch implementation that treats Strategy order as
* proximity, allowing non-read-repaired reads to prefer a single endpoint,
* which improves cache locality.
*/
struct simple_snitch : public snitch_base {
simple_snitch(const snitch_config& cfg)
: snitch_base(cfg)
{
_my_dc = get_datacenter();
_my_rack = get_rack();
// This snitch is ready on creation
set_snitch_ready();
}
virtual sstring get_rack() const override {
return "rack1";
}
virtual sstring get_datacenter() const override {
return "datacenter1";
}
virtual sstring get_name() const override {
return "org.apache.cassandra.locator.SimpleSnitch";
}
};
}