2018-03-25 04:20:31 +00:00
|
|
|
#include <list>
|
2015-09-23 01:21:47 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <boost/program_options.hpp>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Common/Exception.h>
|
2018-03-25 04:20:31 +00:00
|
|
|
#include <Common/ZooKeeper/ZooKeeper.h>
|
2018-04-03 17:35:48 +00:00
|
|
|
#include <Common/ZooKeeper/KeeperException.h>
|
2015-09-23 01:21:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char ** argv)
|
|
|
|
{
|
2020-10-09 19:15:51 +00:00
|
|
|
try
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2020-10-09 19:15:51 +00:00
|
|
|
boost::program_options::options_description desc("Allowed options");
|
|
|
|
desc.add_options()
|
|
|
|
("help,h", "produce help message")
|
|
|
|
("address,a", boost::program_options::value<std::string>()->required(),
|
|
|
|
"addresses of ZooKeeper instances, comma separated. Example: example01e.yandex.ru:2181")
|
|
|
|
("path,p", boost::program_options::value<std::string>()->default_value("/"),
|
|
|
|
"where to start")
|
2021-03-17 17:38:49 +00:00
|
|
|
("ctime,c", "print node ctime")
|
2020-10-09 19:15:51 +00:00
|
|
|
;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2020-10-09 19:15:51 +00:00
|
|
|
boost::program_options::variables_map options;
|
|
|
|
boost::program_options::store(boost::program_options::parse_command_line(argc, argv, desc), options);
|
2018-03-25 04:20:31 +00:00
|
|
|
|
2020-10-09 19:15:51 +00:00
|
|
|
if (options.count("help"))
|
|
|
|
{
|
|
|
|
std::cout << "Dump paths of all nodes in ZooKeeper." << std::endl;
|
|
|
|
std::cout << "Usage: " << argv[0] << " [options]" << std::endl;
|
|
|
|
std::cout << desc << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2021-03-17 19:12:10 +00:00
|
|
|
bool dump_ctime = options.count("ctime");
|
2021-03-17 18:10:51 +00:00
|
|
|
|
2020-10-09 19:15:51 +00:00
|
|
|
zkutil::ZooKeeperPtr zookeeper = std::make_shared<zkutil::ZooKeeper>(options.at("address").as<std::string>());
|
2020-10-07 08:41:27 +00:00
|
|
|
|
2020-10-09 19:15:51 +00:00
|
|
|
std::string initial_path = options.at("path").as<std::string>();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2020-10-09 19:15:51 +00:00
|
|
|
std::list<std::pair<std::string, std::future<Coordination::ListResponse>>> list_futures;
|
|
|
|
list_futures.emplace_back(initial_path, zookeeper->asyncGetChildren(initial_path));
|
2020-10-07 08:41:27 +00:00
|
|
|
|
2020-10-09 19:15:51 +00:00
|
|
|
size_t num_reconnects = 0;
|
|
|
|
constexpr size_t max_reconnects = 100;
|
|
|
|
|
2020-11-16 21:37:38 +00:00
|
|
|
auto ensure_session = [&]
|
2018-03-25 04:20:31 +00:00
|
|
|
{
|
2020-10-09 19:15:51 +00:00
|
|
|
if (zookeeper->expired())
|
|
|
|
{
|
|
|
|
if (num_reconnects == max_reconnects)
|
|
|
|
return false;
|
|
|
|
++num_reconnects;
|
|
|
|
std::cerr << "num_reconnects: " << num_reconnects << "\n";
|
|
|
|
zookeeper = zookeeper->startNewSession();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
|
|
|
for (auto it = list_futures.begin(); it != list_futures.end(); ++it)
|
2018-03-25 04:20:31 +00:00
|
|
|
{
|
2020-10-09 19:15:51 +00:00
|
|
|
Coordination::ListResponse response;
|
|
|
|
|
|
|
|
try
|
2020-10-07 08:41:27 +00:00
|
|
|
{
|
2020-10-09 19:15:51 +00:00
|
|
|
response = it->second.get();
|
2020-10-07 08:41:27 +00:00
|
|
|
}
|
2020-10-09 19:15:51 +00:00
|
|
|
catch (const Coordination::Exception & e)
|
2020-10-07 08:41:27 +00:00
|
|
|
{
|
2020-10-09 19:15:51 +00:00
|
|
|
if (e.code == Coordination::Error::ZNONODE)
|
2020-10-07 08:41:27 +00:00
|
|
|
{
|
2020-10-09 19:15:51 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else if (Coordination::isHardwareError(e.code))
|
|
|
|
{
|
|
|
|
/// Reinitialize the session and move the node to the end of the queue for later retry.
|
2020-11-16 21:37:38 +00:00
|
|
|
if (!ensure_session())
|
2020-10-07 08:41:27 +00:00
|
|
|
throw;
|
2020-10-09 19:15:51 +00:00
|
|
|
list_futures.emplace_back(it->first, zookeeper->asyncGetChildren(it->first));
|
|
|
|
continue;
|
2020-10-07 08:41:27 +00:00
|
|
|
}
|
2020-10-09 19:15:51 +00:00
|
|
|
else
|
|
|
|
throw;
|
2020-10-07 08:41:27 +00:00
|
|
|
}
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2021-03-17 17:38:49 +00:00
|
|
|
std::cout << it->first << '\t' << response.stat.numChildren << '\t' << response.stat.dataLength;
|
2021-03-17 19:12:10 +00:00
|
|
|
if (dump_ctime)
|
2021-03-17 17:38:49 +00:00
|
|
|
std::cout << '\t' << response.stat.ctime;
|
|
|
|
std::cout << '\n';
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2020-10-09 19:15:51 +00:00
|
|
|
for (const auto & name : response.names)
|
|
|
|
{
|
|
|
|
std::string child_path = it->first == "/" ? it->first + name : it->first + '/' + name;
|
|
|
|
|
2020-11-16 21:37:38 +00:00
|
|
|
ensure_session();
|
2020-10-09 19:15:51 +00:00
|
|
|
list_futures.emplace_back(child_path, zookeeper->asyncGetChildren(child_path));
|
|
|
|
}
|
2018-03-25 04:20:31 +00:00
|
|
|
}
|
2020-10-09 19:15:51 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
std::cerr << DB::getCurrentExceptionMessage(true) << '\n';
|
|
|
|
return 1;
|
2018-03-25 04:20:31 +00:00
|
|
|
}
|
2015-09-23 01:21:47 +00:00
|
|
|
}
|