/* * Copyright (C) 2015 ScyllaDB */ /* * This file is part of Scylla. * * Scylla is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Scylla is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Scylla. If not, see . */ #include "compaction_manager.hh" #include "sstables/compaction_manager.hh" #include "api/api-doc/compaction_manager.json.hh" #include "db/system_keyspace.hh" #include "column_family.hh" #include namespace api { namespace cm = httpd::compaction_manager_json; using namespace json; static future get_cm_stats(http_context& ctx, int64_t compaction_manager::stats::*f) { return ctx.db.map_reduce0([f](database& db) { return db.get_compaction_manager().get_stats().*f; }, int64_t(0), std::plus()).then([](const int64_t& res) { return make_ready_future(res); }); } static std::unordered_map, uint64_t, utils::tuple_hash> sum_pending_tasks(std::unordered_map, uint64_t, utils::tuple_hash>&& a, const std::unordered_map, uint64_t, utils::tuple_hash>& b) { for (auto&& i : b) { if (i.second) { a[i.first] += i.second; } } return std::move(a); } void set_compaction_manager(http_context& ctx, routes& r) { cm::get_compactions.set(r, [&ctx] (std::unique_ptr req) { return ctx.db.map_reduce0([](database& db) { std::vector summaries; const compaction_manager& cm = db.get_compaction_manager(); for (const auto& c : cm.get_compactions()) { cm::summary s; s.ks = c->ks_name; s.cf = c->cf_name; s.unit = "keys"; s.task_type = sstables::compaction_name(c->type); s.completed = c->total_keys_written; s.total = c->total_partitions; summaries.push_back(std::move(s)); } return summaries; }, std::vector(), concat).then([](const std::vector& res) { return make_ready_future(res); }); }); cm::get_pending_tasks_by_table.set(r, [&ctx] (std::unique_ptr req) { return ctx.db.map_reduce0([&ctx](database& db) { return do_with(std::unordered_map, uint64_t, utils::tuple_hash>(), [&ctx, &db](std::unordered_map, uint64_t, utils::tuple_hash>& tasks) { return do_for_each(db.get_column_families(), [&tasks](const std::pair>& i) { table& cf = *i.second.get(); tasks[std::make_pair(cf.schema()->ks_name(), cf.schema()->cf_name())] = cf.get_compaction_strategy().estimated_pending_compactions(cf); return make_ready_future<>(); }).then([&tasks] { return std::move(tasks); }); }); }, std::unordered_map, uint64_t, utils::tuple_hash>(), sum_pending_tasks).then( [](const std::unordered_map, uint64_t, utils::tuple_hash>& task_map) { std::vector res; res.reserve(task_map.size()); for (auto i : task_map) { cm::pending_compaction task; task.ks = i.first.first; task.cf = i.first.second; task.task = i.second; res.emplace_back(std::move(task)); } return make_ready_future(res); }); }); cm::force_user_defined_compaction.set(r, [] (std::unique_ptr req) { //TBD // FIXME warn(unimplemented::cause::API); return make_ready_future(json_void()); }); cm::stop_compaction.set(r, [&ctx] (std::unique_ptr req) { auto type = req->get_query_param("type"); return ctx.db.invoke_on_all([type] (database& db) { auto& cm = db.get_compaction_manager(); cm.stop_compaction(type); }).then([] { return make_ready_future(json_void()); }); }); cm::get_pending_tasks.set(r, [&ctx] (std::unique_ptr req) { return map_reduce_cf(ctx, int64_t(0), [](column_family& cf) { return cf.get_compaction_strategy().estimated_pending_compactions(cf); }, std::plus()); }); cm::get_completed_tasks.set(r, [&ctx] (std::unique_ptr req) { return get_cm_stats(ctx, &compaction_manager::stats::completed_tasks); }); cm::get_total_compactions_completed.set(r, [] (std::unique_ptr req) { // FIXME // We are currently dont have an API for compaction // so returning a 0 as the number of total compaction is ok return make_ready_future(0); }); cm::get_bytes_compacted.set(r, [] (std::unique_ptr req) { //TBD // FIXME warn(unimplemented::cause::API); return make_ready_future(0); }); cm::get_compaction_history.set(r, [] (std::unique_ptr req) { std::function(output_stream&&)> f = [](output_stream&& s) { return do_with(output_stream(std::move(s)), true, [] (output_stream& s, bool& first){ return s.write("[").then([&s, &first] { return db::system_keyspace::get_compaction_history([&s, &first](const db::system_keyspace::compaction_history_entry& entry) mutable { cm::history h; h.id = entry.id.to_sstring(); h.ks = std::move(entry.ks); h.cf = std::move(entry.cf); h.compacted_at = entry.compacted_at; h.bytes_in = entry.bytes_in; h.bytes_out = entry.bytes_out; for (auto it : entry.rows_merged) { httpd::compaction_manager_json::row_merged e; e.key = it.first; e.value = it.second; h.rows_merged.push(std::move(e)); } auto fut = first ? make_ready_future<>() : s.write(", "); first = false; return fut.then([&s, h = std::move(h)] { return formatter::write(s, h); }); }).then([&s] { return s.write("]").then([&s] { return s.close(); }); }); }); }); }; return make_ready_future(std::move(f)); }); cm::get_compaction_info.set(r, [] (std::unique_ptr req) { //TBD // FIXME warn(unimplemented::cause::API); std::vector res; return make_ready_future(res); }); } }