mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-22 07:42:16 +00:00
46 lines
977 B
C++
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";
|
|
}
|
|
};
|
|
|
|
}
|