#pragma once #include #include #include #include namespace zkutil { /** Implements leader election algorithm described here: http://zookeeper.apache.org/doc/r3.4.5/recipes.html#sc_leaderElection */ class LeaderElection { public: using LeadershipHandler = std::function; /** handler is called when this instance become leader. */ LeaderElection(const std::string & path_, ZooKeeper & zookeeper_, LeadershipHandler handler_, const std::string & identifier_ = "") : path(path_), zookeeper(zookeeper_), handler(handler_), identifier(identifier_) { createNode(); } void yield() { releaseNode(); createNode(); } ~LeaderElection() { releaseNode(); } private: std::string path; ZooKeeper & zookeeper; LeadershipHandler handler; std::string identifier; EphemeralNodeHolderPtr node; std::string node_name; std::thread thread; std::atomic shutdown {false}; zkutil::EventPtr event = std::make_shared(); void createNode() { shutdown = false; node = EphemeralNodeHolder::createSequential(path + "/leader_election-", zookeeper, identifier); std::string node_path = node->getPath(); node_name = node_path.substr(node_path.find_last_of('/') + 1); thread = std::thread(&LeaderElection::threadFunction, this); } void releaseNode() { shutdown = true; event->set(); if (thread.joinable()) thread.join(); node = nullptr; } void threadFunction() { while (!shutdown) { bool success = false; try { Strings children = zookeeper.getChildren(path); std::sort(children.begin(), children.end()); auto it = std::lower_bound(children.begin(), children.end(), node_name); if (it == children.end() || *it != node_name) throw Poco::Exception("Assertion failed in LeaderElection"); if (it == children.begin()) { handler(); return; } if (zookeeper.exists(path + "/" + *(it - 1), nullptr, event)) event->wait(); success = true; } catch (...) { DB::tryLogCurrentException("LeaderElection"); } if (!success) event->tryWait(10 * 1000); } } }; using LeaderElectionPtr = std::shared_ptr; }