dragonfly/server/engine_shard_set.cc
Roman Gershman d64b4e01ea Implement basic list operations
Fix redis linker dependencies. Bring more redis (BSD-3) code.
Fix bugs related to multi-database redis.
Introduce multiple types for redis values.
2022-01-02 10:40:16 +02:00

175 lines
5 KiB
C++

// Copyright 2021, Roman Gershman. All rights reserved.
// See LICENSE for licensing terms.
//
#include "server/engine_shard_set.h"
#include "base/logging.h"
#include "server/transaction.h"
#include "util/fiber_sched_algo.h"
#include "util/varz.h"
namespace dfly {
using namespace std;
using namespace util;
namespace this_fiber = ::boost::this_fiber;
namespace fibers = ::boost::fibers;
thread_local EngineShard* EngineShard::shard_ = nullptr;
constexpr size_t kQueueLen = 64;
EngineShard::EngineShard(util::ProactorBase* pb)
: queue_(kQueueLen), txq_([](const Transaction* t) { return t->txid(); }), db_slice_(pb->GetIndex(), this) {
fiber_q_ = fibers::fiber([this, index = pb->GetIndex()] {
this_fiber::properties<FiberProps>().set_name(absl::StrCat("shard_queue", index));
queue_.Run();
});
periodic_task_ = pb->AddPeriodic(1, [] {
auto* shard = EngineShard::tlocal();
DCHECK(shard);
// absl::GetCurrentTimeNanos() returns current time since the Unix Epoch.
shard->db_slice().UpdateExpireClock(absl::GetCurrentTimeNanos() / 1000000);
});
tmp_str = sdsempty();
}
EngineShard::~EngineShard() {
queue_.Shutdown();
fiber_q_.join();
sdsfree(tmp_str);
if (periodic_task_) {
ProactorBase::me()->CancelPeriodic(periodic_task_);
}
}
void EngineShard::InitThreadLocal(ProactorBase* pb) {
CHECK(shard_ == nullptr) << pb->GetIndex();
shard_ = new EngineShard(pb);
}
void EngineShard::DestroyThreadLocal() {
if (!shard_)
return;
uint32_t index = shard_->db_slice_.shard_id();
delete shard_;
shard_ = nullptr;
VLOG(1) << "Shard reset " << index;
}
void EngineShard::RunContinuationTransaction() {
auto sid = shard_id();
if (continuation_trans_->IsArmedInShard(sid)) {
bool to_keep = continuation_trans_->RunInShard(sid);
DVLOG(1) << "RunContTransaction " << continuation_trans_->DebugId() << " keep: " << to_keep;
if (!to_keep) {
continuation_trans_ = nullptr;
}
}
}
// Is called by Transaction::ExecuteAsync in order to run transaction tasks.
// Only runs in its own thread.
void EngineShard::Execute(Transaction* trans) {
ShardId sid = shard_id();
if (continuation_trans_) {
if (trans == continuation_trans_)
trans = nullptr;
RunContinuationTransaction();
// Once we start executing transaction we do not continue until it's finished.
// This preserves atomicity property of multi-hop transactions.
if (continuation_trans_)
return;
}
DCHECK(!continuation_trans_);
Transaction* head = nullptr;
string dbg_id;
while (!txq_.Empty()) {
auto val = txq_.Front();
head = absl::get<Transaction*>(val);
bool is_armed = head->IsArmedInShard(sid);
if (!is_armed)
break;
// It could be that head is processed and unblocks multi-hop transaction .
// The transaction will schedule again and will arm another callback.
// Then we will reach invalid state by running trans after this loop,
// which is not what we want.
// This function should not process 2 different callbacks for the same transaction.
// Hence we make sure to reset trans if it has been processed via tx-queue.
if (head == trans)
trans = nullptr;
TxId txid = head->txid();
// Could be equal to ts in case the same transaction had few hops.
DCHECK_LE(committed_txid_, txid);
// We update committed_ts_ before calling Run() to avoid cases where a late transaction might
// try to push back this one.
committed_txid_ = txid;
if (VLOG_IS_ON(2)) {
dbg_id = head->DebugId();
}
bool keep = head->RunInShard(sid);
// We should not access head from this point since RunInShard callback decrements refcount.
DLOG_IF(INFO, !dbg_id.empty()) << "RunHead " << dbg_id << ", keep " << keep;
txq_.PopFront();
if (keep) {
continuation_trans_ = head;
break;
}
}
if (!trans)
return;
if (txq_.Empty())
return;
// If trans is out of order, i.e. locks keys that previous transactions have not locked.
// It may be that there are other transactions that touch those keys but they necessary ordered
// after trans in the queue, hence it's safe to run trans out of order.
if (trans->IsOutOfOrder() && trans->IsArmedInShard(sid)) {
DCHECK(trans != head);
dbg_id.clear();
uint32_t pos = trans->TxQueuePos(sid);
if (VLOG_IS_ON(1)) {
dbg_id = trans->DebugId();
}
bool keep = trans->RunInShard(sid); // resets TxQueuePos, this is why we get it before.
DLOG_IF(INFO, !dbg_id.empty()) << "Eager run " << sid << ", " << dbg_id << ", keep " << keep;
// Should be enforced via Schedule(). TODO: to remove the check once the code is mature.
CHECK(!keep) << "multi-hop transactions can not be OOO.";
txq_.Remove(pos);
}
}
void EngineShardSet::Init(uint32_t sz) {
CHECK_EQ(0u, size());
shard_queue_.resize(sz);
}
void EngineShardSet::InitThreadLocal(ProactorBase* pb) {
EngineShard::InitThreadLocal(pb);
EngineShard* es = EngineShard::tlocal();
shard_queue_[es->shard_id()] = es->GetQueue();
}
} // namespace dfly