Files
scylladb/service/migration_task.cc
Pekka Enberg b912c888f1 service/migration_manager: Fix logging by de-thread-localizing loggers
The migration_manager and migration_task logging is currently not
visible in the logs. Fix that by de-thread-localizing both loggers.

Signed-off-by: Pekka Enberg <penberg@cloudius-systems.com>
2015-07-23 16:16:14 +03:00

60 lines
2.2 KiB
C++

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* Copyright 2015 Cloudius Systems
*
* Modified by Cloudius Systems
*/
#include "service/migration_task.hh"
#include "message/messaging_service.hh"
#include "db/legacy_schema_tables.hh"
#include "gms/failure_detector.hh"
#include "frozen_mutation.hh"
namespace service {
static logging::logger logger("Migration Task");
future<> migration_task::run_may_throw(service::storage_proxy& proxy, const gms::inet_address& endpoint)
{
if (!gms::get_failure_detector().local().is_alive(endpoint)) {
logger.error("Can't send migration request: node {} is down.", endpoint);
return make_ready_future<>();
}
net::messaging_service::shard_id id{endpoint, 0};
auto& ms = net::get_local_messaging_service();
return ms.send_migration_request(std::move(id), endpoint, engine().cpu_id()).then([&proxy](const std::vector<frozen_mutation>& mutations) {
try {
std::vector<mutation> schema;
for (auto& m : mutations) {
schema_ptr s = proxy.get_db().local().find_schema(m.column_family_id());
schema.emplace_back(m.unfreeze(s));
}
return db::legacy_schema_tables::merge_schema(proxy, schema);
} catch (const exceptions::configuration_exception& e) {
logger.error("Configuration exception merging remote schema: {}", e.what());
}
return make_ready_future<>();
});
}
}