1
0
Fork 0
arangodb/arangod/RestHandler/RestReplicationHandler.cpp

5004 lines
173 KiB
C++

////////////////////////////////////////////////////////////////////////////////
//
/// @brief replication request handler
///
/// @file
///
/// DISCLAIMER
///
/// Copyright 2014 ArangoDB GmbH, Cologne, Germany
/// Copyright 2004-2014 triAGENS GmbH, Cologne, Germany
///
/// Licensed 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 holder is ArangoDB GmbH, Cologne, Germany
///
/// @author Jan Steemann
/// @author Copyright 2014, ArangoDB GmbH, Cologne, Germany
/// @author Copyright 2012-2014, triAGENS GmbH, Cologne, Germany
////////////////////////////////////////////////////////////////////////////////
#include "RestReplicationHandler.h"
#include "Basics/conversions.h"
#include "Basics/files.h"
#include "Basics/JsonHelper.h"
#include "Basics/logging.h"
#include "Basics/ReadLocker.h"
#include "Basics/VelocyPackHelper.h"
#include "Cluster/ClusterMethods.h"
#include "Cluster/ClusterComm.h"
#include "HttpServer/HttpServer.h"
#include "Indexes/EdgeIndex.h"
#include "Indexes/Index.h"
#include "Indexes/PrimaryIndex.h"
#include "Replication/InitialSyncer.h"
#include "Rest/HttpRequest.h"
#include "Utils/CollectionGuard.h"
#include "Utils/CollectionKeys.h"
#include "Utils/CollectionKeysRepository.h"
#include "Utils/transactions.h"
#include "VocBase/compactor.h"
#include "VocBase/replication-applier.h"
#include "VocBase/replication-dump.h"
#include "VocBase/server.h"
#include "VocBase/update-policy.h"
#include "Wal/LogfileManager.h"
#include <velocypack/Collection.h>
#include <velocypack/Iterator.h>
#include <velocypack/Parser.h>
#include <velocypack/velocypack-aliases.h>
using namespace std;
using namespace triagens::basics;
using namespace triagens::rest;
using namespace triagens::arango;
// -----------------------------------------------------------------------------
// --SECTION-- initialize static variables
// -----------------------------------------------------------------------------
uint64_t const RestReplicationHandler::defaultChunkSize = 128 * 1024;
uint64_t const RestReplicationHandler::maxChunkSize = 128 * 1024 * 1024;
// -----------------------------------------------------------------------------
// --SECTION-- constructors and destructors
// -----------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////
/// @brief constructor
////////////////////////////////////////////////////////////////////////////////
RestReplicationHandler::RestReplicationHandler (HttpRequest* request)
: RestVocbaseBaseHandler(request) {
}
////////////////////////////////////////////////////////////////////////////////
/// @brief destructor
////////////////////////////////////////////////////////////////////////////////
RestReplicationHandler::~RestReplicationHandler () {
}
// -----------------------------------------------------------------------------
// --SECTION-- HttpHandler methods
// -----------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////
/// {@inheritDoc}
////////////////////////////////////////////////////////////////////////////////
HttpHandler::status_t RestReplicationHandler::execute () {
// extract the request type
HttpRequest::HttpRequestType const type = _request->requestType();
vector<string> const& suffix = _request->suffix();
const size_t len = suffix.size();
if (len >= 1) {
const string& command = suffix[0];
if (command == "logger-state") {
if (type != HttpRequest::HTTP_REQUEST_GET) {
goto BAD_CALL;
}
handleCommandLoggerState();
}
else if (command == "logger-tick-ranges") {
if (type != HttpRequest::HTTP_REQUEST_GET) {
goto BAD_CALL;
}
if (isCoordinatorError()) {
return status_t(HttpHandler::HANDLER_DONE);
}
handleCommandLoggerTickRanges();
}
else if (command == "logger-first-tick") {
if (type != HttpRequest::HTTP_REQUEST_GET) {
goto BAD_CALL;
}
if (isCoordinatorError()) {
return status_t(HttpHandler::HANDLER_DONE);
}
handleCommandLoggerFirstTick();
}
else if (command == "logger-follow") {
if (type != HttpRequest::HTTP_REQUEST_GET &&
type != HttpRequest::HTTP_REQUEST_PUT) {
goto BAD_CALL;
}
if (isCoordinatorError()) {
return status_t(HttpHandler::HANDLER_DONE);
}
handleCommandLoggerFollow();
}
else if (command == "determine-open-transactions") {
if (type != HttpRequest::HTTP_REQUEST_GET) {
goto BAD_CALL;
}
handleCommandDetermineOpenTransactions();
}
else if (command == "batch") {
if (ServerState::instance()->isCoordinator()) {
handleTrampolineCoordinator();
}
else {
handleCommandBatch();
}
}
else if (command == "inventory") {
if (type != HttpRequest::HTTP_REQUEST_GET) {
goto BAD_CALL;
}
if (ServerState::instance()->isCoordinator()) {
handleTrampolineCoordinator();
}
else {
handleCommandInventory();
}
}
else if (command == "keys") {
if (type != HttpRequest::HTTP_REQUEST_GET &&
type != HttpRequest::HTTP_REQUEST_POST &&
type != HttpRequest::HTTP_REQUEST_PUT &&
type != HttpRequest::HTTP_REQUEST_DELETE) {
goto BAD_CALL;
}
if (isCoordinatorError()) {
return status_t(HttpHandler::HANDLER_DONE);
}
if (type == HttpRequest::HTTP_REQUEST_POST) {
handleCommandCreateKeys();
}
else if (type == HttpRequest::HTTP_REQUEST_GET) {
handleCommandGetKeys();
}
else if (type == HttpRequest::HTTP_REQUEST_PUT) {
handleCommandFetchKeys();
}
else if (type == HttpRequest::HTTP_REQUEST_DELETE) {
handleCommandRemoveKeys();
}
}
else if (command == "dump") {
if (type != HttpRequest::HTTP_REQUEST_GET) {
goto BAD_CALL;
}
if (ServerState::instance()->isCoordinator()) {
handleTrampolineCoordinator();
}
else {
handleCommandDump();
}
}
else if (command == "restore-collection") {
if (type != HttpRequest::HTTP_REQUEST_PUT) {
goto BAD_CALL;
}
handleCommandRestoreCollection();
}
else if (command == "restore-indexes") {
if (type != HttpRequest::HTTP_REQUEST_PUT) {
goto BAD_CALL;
}
handleCommandRestoreIndexes();
}
else if (command == "restore-data") {
if (type != HttpRequest::HTTP_REQUEST_PUT) {
goto BAD_CALL;
}
if (ServerState::instance()->isCoordinator()) {
handleCommandRestoreDataCoordinator();
}
else {
handleCommandRestoreData();
}
}
else if (command == "sync") {
if (type != HttpRequest::HTTP_REQUEST_PUT) {
goto BAD_CALL;
}
if (isCoordinatorError()) {
return status_t(HttpHandler::HANDLER_DONE);
}
handleCommandSync();
}
else if (command == "make-slave") {
if (type != HttpRequest::HTTP_REQUEST_PUT) {
goto BAD_CALL;
}
if (isCoordinatorError()) {
return status_t(HttpHandler::HANDLER_DONE);
}
handleCommandMakeSlave();
}
else if (command == "server-id") {
if (type != HttpRequest::HTTP_REQUEST_GET) {
goto BAD_CALL;
}
handleCommandServerId();
}
else if (command == "applier-config") {
if (type == HttpRequest::HTTP_REQUEST_GET) {
handleCommandApplierGetConfig();
}
else {
if (type != HttpRequest::HTTP_REQUEST_PUT) {
goto BAD_CALL;
}
handleCommandApplierSetConfig();
}
}
else if (command == "applier-start") {
if (type != HttpRequest::HTTP_REQUEST_PUT) {
goto BAD_CALL;
}
if (isCoordinatorError()) {
return status_t(HttpHandler::HANDLER_DONE);
}
handleCommandApplierStart();
}
else if (command == "applier-stop") {
if (type != HttpRequest::HTTP_REQUEST_PUT) {
goto BAD_CALL;
}
if (isCoordinatorError()) {
return status_t(HttpHandler::HANDLER_DONE);
}
handleCommandApplierStop();
}
else if (command == "applier-state") {
if (type == HttpRequest::HTTP_REQUEST_DELETE) {
handleCommandApplierDeleteState();
}
else {
if (type != HttpRequest::HTTP_REQUEST_GET) {
goto BAD_CALL;
}
handleCommandApplierGetState();
}
}
else if (command == "clusterInventory") {
if (type != HttpRequest::HTTP_REQUEST_GET) {
goto BAD_CALL;
}
if (! ServerState::instance()->isCoordinator()) {
generateError(HttpResponse::FORBIDDEN,
TRI_ERROR_CLUSTER_ONLY_ON_COORDINATOR);
}
else {
handleCommandClusterInventory();
}
}
else {
generateError(HttpResponse::BAD,
TRI_ERROR_HTTP_BAD_PARAMETER,
"invalid command");
}
return status_t(HttpHandler::HANDLER_DONE);
}
BAD_CALL:
if (len != 1) {
generateError(HttpResponse::BAD,
TRI_ERROR_HTTP_SUPERFLUOUS_SUFFICES,
"expecting URL /_api/replication/<command>");
}
else {
generateError(HttpResponse::METHOD_NOT_ALLOWED, TRI_ERROR_HTTP_METHOD_NOT_ALLOWED);
}
return status_t(HttpHandler::HANDLER_DONE);
}
// -----------------------------------------------------------------------------
// --SECTION-- public static methods
// -----------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////
/// @brief comparator to sort collections
/// sort order is by collection type first (vertices before edges, this is
/// because edges depend on vertices being there), then name
////////////////////////////////////////////////////////////////////////////////
bool RestReplicationHandler::sortCollections (TRI_vocbase_col_t const* l,
TRI_vocbase_col_t const* r) {
if (l->_type != r->_type) {
return l->_type < r->_type;
}
return strcasecmp(l->_name, r->_name) < 0;
}
////////////////////////////////////////////////////////////////////////////////
/// @brief filter a collection based on collection attributes
////////////////////////////////////////////////////////////////////////////////
bool RestReplicationHandler::filterCollection (TRI_vocbase_col_t* collection,
void* data) {
if (collection->_type != (TRI_col_type_t) TRI_COL_TYPE_DOCUMENT &&
collection->_type != (TRI_col_type_t) TRI_COL_TYPE_EDGE) {
// invalid type
return false;
}
bool includeSystem = *((bool*) data);
if (! includeSystem && collection->_name[0] == '_') {
// exclude all system collections
return false;
}
if (TRI_ExcludeCollectionReplication(collection->_name, includeSystem)) {
// collection is excluded from replication
return false;
}
// all other cases should be included
return true;
}
// -----------------------------------------------------------------------------
// --SECTION-- private methods
// -----------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////
/// @brief creates an error if called on a coordinator server
////////////////////////////////////////////////////////////////////////////////
bool RestReplicationHandler::isCoordinatorError () {
if (_vocbase->_type == TRI_VOCBASE_TYPE_COORDINATOR) {
generateError(HttpResponse::NOT_IMPLEMENTED,
TRI_ERROR_CLUSTER_UNSUPPORTED,
"replication API is not supported on a coordinator");
return true;
}
return false;
}
////////////////////////////////////////////////////////////////////////////////
/// @brief insert the applier action into an action list
////////////////////////////////////////////////////////////////////////////////
void RestReplicationHandler::insertClient (TRI_voc_tick_t lastServedTick) {
bool found;
char const* value = _request->value("serverId", found);
if (found) {
TRI_server_id_t serverId = (TRI_server_id_t) StringUtils::uint64(value);
if (serverId > 0) {
_vocbase->updateReplicationClient(serverId, lastServedTick);
}
}
}
////////////////////////////////////////////////////////////////////////////////
/// @brief determine the chunk size
////////////////////////////////////////////////////////////////////////////////
uint64_t RestReplicationHandler::determineChunkSize () const {
// determine chunk size
uint64_t chunkSize = defaultChunkSize;
bool found;
const char* value = _request->value("chunkSize", found);
if (found) {
// query parameter "chunkSize" was specified
chunkSize = StringUtils::uint64(value);
// don't allow overly big allocations
if (chunkSize > maxChunkSize) {
chunkSize = maxChunkSize;
}
}
return chunkSize;
}
////////////////////////////////////////////////////////////////////////////////
/// @startDocuBlock JSF_get_api_replication_logger_return_state
/// @brief returns the state of the replication logger
///
/// @RESTHEADER{GET /_api/replication/logger-state, Return replication logger state}
///
/// @RESTDESCRIPTION
/// Returns the current state of the server's replication logger. The state will
/// include information about whether the logger is running and about the last
/// logged tick value. This tick value is important for incremental fetching of
/// data.
///
/// The body of the response contains a JSON object with the following
/// attributes:
///
/// - *state*: the current logger state as a JSON object with the following
/// sub-attributes:
///
/// - *running*: whether or not the logger is running
///
/// - *lastLogTick*: the tick value of the latest tick the logger has logged.
/// This value can be used for incremental fetching of log data.
///
/// - *totalEvents*: total number of events logged since the server was started.
/// The value is not reset between multiple stops and re-starts of the logger.
///
/// - *time*: the current date and time on the logger server
///
/// - *server*: a JSON object with the following sub-attributes:
///
/// - *version*: the logger server's version
///
/// - *serverId*: the logger server's id
///
/// - *clients*: returns the last fetch status by replication clients connected to
/// the logger. Each client is returned as a JSON object with the following attributes:
///
/// - *serverId*: server id of client
///
/// - *lastServedTick*: last tick value served to this client via the *logger-follow* API
///
/// - *time*: date and time when this client last called the *logger-follow* API
///
/// @RESTRETURNCODES
///
/// @RESTRETURNCODE{200}
/// is returned if the logger state could be determined successfully.
///
/// @RESTRETURNCODE{405}
/// is returned when an invalid HTTP method is used.
///
/// @RESTRETURNCODE{500}
/// is returned if the logger state could not be determined.
///
/// @EXAMPLES
///
/// Returns the state of the replication logger.
///
/// @EXAMPLE_ARANGOSH_RUN{RestReplicationLoggerStateActive}
/// var re = require("@arangodb/replication");
///
/// var url = "/_api/replication/logger-state";
///
/// var response = logCurlRequest('GET', url);
///
/// assert(response.code === 200);
///
/// logJsonResponse(response);
/// @END_EXAMPLE_ARANGOSH_RUN
/// @endDocuBlock
////////////////////////////////////////////////////////////////////////////////
void RestReplicationHandler::handleCommandLoggerState () {
try {
VPackBuilder json;
json.add(VPackValue(VPackValueType::Object)); // Base
triagens::wal::LogfileManagerState const&& s = triagens::wal::LogfileManager::instance()->state();
std::string const lastTickString(StringUtils::itoa(s.lastTick));
// "state" part
json.add("state", VPackValue(VPackValueType::Object));
json.add("running", VPackValue(true));
json.add("lastLogTick", VPackValue(lastTickString));
json.add("totalEvents", VPackValue(s.numEvents));
json.add("time", VPackValue(s.timeString));
json.close();
// "server" part
char* serverIdString = TRI_StringUInt64(TRI_GetIdServer());
json.add("server", VPackValue(VPackValueType::Object));
json.add("version", VPackValue(TRI_VERSION));
json.add("serverId", VPackValue(serverIdString));
TRI_FreeString(TRI_CORE_MEM_ZONE, serverIdString);
json.close();
// "clients" part
json.add("clients", VPackValue(VPackValueType::Array));
auto allClients = _vocbase->getReplicationClients();
for (auto& it : allClients) {
// One client
json.add(VPackValue(VPackValueType::Object));
serverIdString = TRI_StringUInt64(std::get<0>(it));
json.add("serverId", VPackValue(serverIdString));
TRI_FreeString(TRI_CORE_MEM_ZONE, serverIdString);
char buffer[21];
TRI_GetTimeStampReplication(std::get<1>(it), &buffer[0], sizeof(buffer));
json.add("time", VPackValue(buffer));
char* tickString = TRI_StringUInt64(std::get<2>(it));
json.add("lastServedTick", VPackValue(tickString));
TRI_FreeString(TRI_CORE_MEM_ZONE, tickString);
json.close();
}
json.close(); // clients
json.close(); // base
VPackSlice slice = json.slice();
generateResult(slice);
} catch (...) {
generateError(HttpResponse::SERVER_ERROR, TRI_ERROR_OUT_OF_MEMORY);
}
}
////////////////////////////////////////////////////////////////////////////////
/// @startDocuBlock JSF_get_api_replication_logger_tick_ranges
/// @brief returns the tick value ranges available in the logfiles
///
/// @RESTHEADER{GET /_api/replication/logger-tick-ranges, Return the tick ranges available in the WAL logfiles}
///
/// @RESTDESCRIPTION
/// Returns the currently available ranges of tick values for all currently
/// available WAL logfiles. The tick values can be used to determine if certain
/// data (identified by tick value) are still available for replication.
///
/// The body of the response contains a JSON array. Each array member is an object
/// that describes a single logfile. Each object has the following attributes:
///
/// * *datafile*: name of the logfile
///
/// * *status*: status of the datafile, in textual form (e.g. "sealed", "open")
///
/// * *tickMin*: minimum tick value contained in logfile
///
/// * *tickMax*: maximum tick value contained in logfile
///
/// @RESTRETURNCODES
///
/// @RESTRETURNCODE{200}
/// is returned if the tick ranges could be determined successfully.
///
/// @RESTRETURNCODE{405}
/// is returned when an invalid HTTP method is used.
///
/// @RESTRETURNCODE{500}
/// is returned if the logger state could not be determined.
///
/// @RESTRETURNCODE{501}
/// is returned when this operation is called on a coordinator in a cluster.
///
/// @EXAMPLES
///
/// Returns the available tick ranges.
///
/// @EXAMPLE_ARANGOSH_RUN{RestReplicationLoggerTickRanges}
/// var url = "/_api/replication/logger-tick-ranges";
///
/// var response = logCurlRequest('GET', url);
///
/// assert(response.code === 200);
///
/// logJsonResponse(response);
/// @END_EXAMPLE_ARANGOSH_RUN
/// @endDocuBlock
////////////////////////////////////////////////////////////////////////////////
void RestReplicationHandler::handleCommandLoggerTickRanges () {
auto const& ranges = triagens::wal::LogfileManager::instance()->ranges();
try {
VPackBuilder b;
b.add(VPackValue(VPackValueType::Array));
for (auto& it : ranges) {
b.add(VPackValue(VPackValueType::Object));
b.add("datafile", VPackValue(it.filename));
b.add("status", VPackValue(it.state));
char buffer[21];
size_t len;
len = TRI_StringUInt64InPlace(it.tickMin, (char*) &buffer);
b.add("tickMin", VPackValue(std::string(&buffer[0], len)));
len = TRI_StringUInt64InPlace(it.tickMax, (char*) &buffer);
b.add("tickMax", VPackValue(std::string(&buffer[0], len)));
b.close();
}
b.close();
generateResult(b.slice());
}
catch (...) {
generateError(HttpResponse::SERVER_ERROR, TRI_ERROR_OUT_OF_MEMORY);
return;
}
}
////////////////////////////////////////////////////////////////////////////////
/// @startDocuBlock JSF_get_api_replication_logger_first_tick
/// @brief Return the first available tick value from the server
///
/// @RESTHEADER{GET /_api/replication/logger-first-tick, Returns the first available tick value}
///
/// @RESTDESCRIPTION
/// Returns the first available tick value that can be served from the server's
/// replication log. This method can be called by replication clients after to
/// determine if certain data (identified by a tick value) is still available
/// for replication.
///
/// The result is a JSON object containing the attribute *firstTick*. This
/// attribute contains the minimum tick value available in the server's replication
/// log.
///
/// **Note**: this method is not supported on a coordinator in a cluster.
///
/// @RESTRETURNCODES
///
/// @RESTRETURNCODE{200}
/// is returned if the request was executed successfully.
///
/// @RESTRETURNCODE{405}
/// is returned when an invalid HTTP method is used.
///
/// @RESTRETURNCODE{500}
/// is returned if an error occurred while assembling the response.
///
/// @RESTRETURNCODE{501}
/// is returned when this operation is called on a coordinator in a cluster.
///
/// @EXAMPLES
///
/// Returning the first available tick
///
/// @EXAMPLE_ARANGOSH_RUN{RestReplicationLoggerFirstTick}
/// var url = "/_api/replication/logger-first-tick";
/// var response = logCurlRequest('GET', url);
///
/// assert(response.code === 200);
///
/// logRawResponse(response);
/// @END_EXAMPLE_ARANGOSH_RUN
/// @endDocuBlock
////////////////////////////////////////////////////////////////////////////////
void RestReplicationHandler::handleCommandLoggerFirstTick () {
auto const& ranges = triagens::wal::LogfileManager::instance()->ranges();
try {
VPackBuilder b;
b.add(VPackValue(VPackValueType::Object));
TRI_voc_tick_t tick = UINT64_MAX;
for (auto& it : ranges) {
if (it.tickMin == 0) {
continue;
}
if (it.tickMin < tick) {
tick = it.tickMin;
}
}
if (tick == UINT64_MAX) {
b.add("firstTick", VPackValue(VPackValueType::Null));
}
else {
auto tickString = std::to_string(tick);
b.add("firstTick", VPackValue(tickString));
}
b.close();
generateResult(b.slice());
}
catch (...) {
generateError(HttpResponse::SERVER_ERROR, TRI_ERROR_OUT_OF_MEMORY);
}
}
////////////////////////////////////////////////////////////////////////////////
/// @startDocuBlock JSF_post_batch_replication
/// @brief handle a dump batch command
///
/// @RESTHEADER{POST /_api/replication/batch, Create new dump batch}
///
/// **Note**: These calls are uninteresting to users.
///
/// @RESTBODYPARAM{ttl,integer,required,int64}
/// the time-to-live for the new batch (in seconds)
///
/// A JSON object with the batch configuration.
///
/// @RESTDESCRIPTION
/// Creates a new dump batch and returns the batch's id.
///
/// The response is a JSON object with the following attributes:
///
/// - *id*: the id of the batch
///
/// **Note**: on a coordinator, this request must have the query parameter
/// *DBserver* which must be an ID of a DBserver.
/// The very same request is forwarded synchronously to that DBserver.
/// It is an error if this attribute is not bound in the coordinator case.
///
/// @RESTRETURNCODES
///
/// @RESTRETURNCODE{204}
/// is returned if the batch was created successfully.
///
/// @RESTRETURNCODE{400}
/// is returned if the ttl value is invalid or if *DBserver* attribute
/// is not specified or illegal on a coordinator.
///
/// @RESTRETURNCODE{405}
/// is returned when an invalid HTTP method is used.
/// @endDocuBlock
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
/// @startDocuBlock JSF_put_batch_replication
/// @brief handle a dump batch command
///
/// @RESTHEADER{PUT /_api/replication/batch/{id}, Prolong existing dump batch}
///
/// **Note**: These calls are uninteresting to users.
///
/// @RESTBODYPARAM{ttl,integer,required,int64}
/// the time-to-live for the new batch (in seconds)
///
/// @RESTURLPARAMETERS
///
/// @RESTURLPARAM{id,string,required}
/// The id of the batch.
///
/// @RESTDESCRIPTION
/// Extends the ttl of an existing dump batch, using the batch's id and
/// the provided ttl value.
///
/// If the batch's ttl can be extended successfully, the response is empty.
///
/// **Note**: on a coordinator, this request must have the query parameter
/// *DBserver* which must be an ID of a DBserver.
/// The very same request is forwarded synchronously to that DBserver.
/// It is an error if this attribute is not bound in the coordinator case.
///
/// @RESTRETURNCODES
///
/// @RESTRETURNCODE{204}
/// is returned if the batch's ttl was extended successfully.
///
/// @RESTRETURNCODE{400}
/// is returned if the ttl value is invalid or the batch was not found.
///
/// @RESTRETURNCODE{405}
/// is returned when an invalid HTTP method is used.
/// @endDocuBlock
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
/// @startDocuBlock JSF_delete_batch_replication
/// @brief handle a dump batch command
///
/// @RESTHEADER{DELETE /_api/replication/batch/{id}, Deletes an existing dump batch}
///
/// **Note**: These calls are uninteresting to users.
///
/// @RESTURLPARAMETERS
///
/// @RESTURLPARAM{id,string,required}
/// The id of the batch.
///
/// @RESTDESCRIPTION
/// Deletes the existing dump batch, allowing compaction and cleanup to resume.
///
/// **Note**: on a coordinator, this request must have the query parameter
/// *DBserver* which must be an ID of a DBserver.
/// The very same request is forwarded synchronously to that DBserver.
/// It is an error if this attribute is not bound in the coordinator case.
///
/// @RESTRETURNCODES
///
/// @RESTRETURNCODE{204}
/// is returned if the batch was deleted successfully.
///
/// @RESTRETURNCODE{400}
/// is returned if the batch was not found.
///
/// @RESTRETURNCODE{405}
/// is returned when an invalid HTTP method is used.
/// @endDocuBlock
////////////////////////////////////////////////////////////////////////////////
void RestReplicationHandler::handleCommandBatch () {
// extract the request type
HttpRequest::HttpRequestType const type = _request->requestType();
vector<string> const& suffix = _request->suffix();
size_t const len = suffix.size();
TRI_ASSERT(len >= 1);
if (type == HttpRequest::HTTP_REQUEST_POST) {
// create a new blocker
std::unique_ptr<TRI_json_t> input(_request->toJson(nullptr));
if (input == nullptr) {
generateError(HttpResponse::BAD,
TRI_ERROR_HTTP_BAD_PARAMETER,
"invalid JSON");
return;
}
// extract ttl
double expires = JsonHelper::getNumericValue<double>(input.get(), "ttl", 0);
TRI_voc_tick_t id;
int res = TRI_InsertBlockerCompactorVocBase(_vocbase, expires, &id);
if (res != TRI_ERROR_NO_ERROR) {
generateError(HttpResponse::responseCode(res), res);
return;
}
try {
VPackBuilder b;
b.add(VPackValue(VPackValueType::Object));
std::string const idString(std::to_string(id));
b.add("id", VPackValue(idString));
b.close();
VPackSlice s = b.slice();
generateResult(s);
}
catch (...) {
generateError(HttpResponse::SERVER_ERROR, TRI_ERROR_OUT_OF_MEMORY);
}
return;
}
if (type == HttpRequest::HTTP_REQUEST_PUT && len >= 2) {
// extend an existing blocker
TRI_voc_tick_t id = (TRI_voc_tick_t) StringUtils::uint64(suffix[1]);
std::unique_ptr<TRI_json_t> input(_request->toJson(nullptr));
if (input == nullptr) {
generateError(HttpResponse::BAD,
TRI_ERROR_HTTP_BAD_PARAMETER,
"invalid JSON");
return;
}
// extract ttl
double expires = JsonHelper::getNumericValue<double>(input.get(), "ttl", 0);
// now extend the blocker
int res = TRI_TouchBlockerCompactorVocBase(_vocbase, id, expires);
if (res == TRI_ERROR_NO_ERROR) {
createResponse(HttpResponse::NO_CONTENT);
}
else {
generateError(HttpResponse::responseCode(res), res);
}
return;
}
if (type == HttpRequest::HTTP_REQUEST_DELETE && len >= 2) {
// delete an existing blocker
TRI_voc_tick_t id = (TRI_voc_tick_t) StringUtils::uint64(suffix[1]);
int res = TRI_RemoveBlockerCompactorVocBase(_vocbase, id);
if (res == TRI_ERROR_NO_ERROR) {
createResponse(HttpResponse::NO_CONTENT);
}
else {
generateError(HttpResponse::responseCode(res), res);
}
return;
}
// we get here if anything above is invalid
generateError(HttpResponse::METHOD_NOT_ALLOWED, TRI_ERROR_HTTP_METHOD_NOT_ALLOWED);
}
////////////////////////////////////////////////////////////////////////////////
/// @brief forward a command in the coordinator case
////////////////////////////////////////////////////////////////////////////////
void RestReplicationHandler::handleTrampolineCoordinator () {
// First check the DBserver component of the body json:
ServerID DBserver = _request->value("DBserver");
if (DBserver.empty()) {
generateError(HttpResponse::BAD, TRI_ERROR_HTTP_BAD_PARAMETER,
"need \"DBserver\" parameter");
return;
}
string const& dbname = _request->databaseName();
auto headers = std::make_shared<std::map<std::string, std::string>>
(triagens::arango::getForwardableRequestHeaders(_request));
map<string, string> values = _request->values();
string params;
for (auto const& i : values) {
if (i.first != "DBserver") {
if (params.empty()) {
params.push_back('?');
}
else {
params.push_back('&');
}
params.append(StringUtils::urlEncode(i.first));
params.push_back('=');
params.append(StringUtils::urlEncode(i.second));
}
}
// Set a few variables needed for our work:
ClusterComm* cc = ClusterComm::instance();
// Send a synchronous request to that shard using ClusterComm:
auto res = cc->syncRequest("", TRI_NewTickServer(), "server:" + DBserver,
_request->requestType(),
"/_db/" + StringUtils::urlEncode(dbname) +
_request->requestPath() + params,
string(_request->body(),_request->bodySize()),
*headers, 300.0);
if (res->status == CL_COMM_TIMEOUT) {
// No reply, we give up:
generateError(HttpResponse::BAD, TRI_ERROR_CLUSTER_TIMEOUT,
"timeout within cluster");
return;
}
if (res->status == CL_COMM_ERROR) {
// This could be a broken connection or an Http error:
if (res->result == nullptr || !res->result->isComplete()) {
// there is no result
generateError(HttpResponse::BAD, TRI_ERROR_CLUSTER_CONNECTION_LOST,
"lost connection within cluster");
return;
}
// In this case a proper HTTP error was reported by the DBserver,
// we simply forward the result.
// We intentionally fall through here.
}
bool dummy;
createResponse(static_cast<HttpResponse::HttpResponseCode>
(res->result->getHttpReturnCode()));
_response->setContentType(res->result->getHeaderField("content-type",dummy));
_response->body().swap(& (res->result->getBody()));
auto const& resultHeaders = res->result->getHeaderFields();
for (auto const& it : resultHeaders) {
_response->setHeader(it.first, it.second);
}
}
////////////////////////////////////////////////////////////////////////////////
/// @startDocuBlock JSF_get_api_replication_logger_returns
/// @brief Fetch log lines from the server
///
/// @RESTHEADER{GET /_api/replication/logger-follow, Returns log entries}
///
/// @RESTQUERYPARAMETERS
///
/// @RESTQUERYPARAM{from,number,optional}
/// Lower bound tick value for results.
///
/// @RESTQUERYPARAM{to,number,optional}
/// Upper bound tick value for results.
///
/// @RESTQUERYPARAM{chunkSize,number,optional}
/// Approximate maximum size of the returned result.
///
/// @RESTQUERYPARAM{includeSystem,boolean,optional}
/// Include system collections in the result. The default value is *true*.
///
/// @RESTDESCRIPTION
/// Returns data from the server's replication log. This method can be called
/// by replication clients after an initial synchronization of data. The method
/// will return all "recent" log entries from the logger server, and the clients
/// can replay and apply these entries locally so they get to the same data
/// state as the logger server.
///
/// Clients can call this method repeatedly to incrementally fetch all changes
/// from the logger server. In this case, they should provide the *from* value so
/// they will only get returned the log events since their last fetch.
///
/// When the *from* query parameter is not used, the logger server will return log
/// entries starting at the beginning of its replication log. When the *from*
/// parameter is used, the logger server will only return log entries which have
/// higher tick values than the specified *from* value (note: the log entry with a
/// tick value equal to *from* will be excluded). Use the *from* value when
/// incrementally fetching log data.
///
/// The *to* query parameter can be used to optionally restrict the upper bound of
/// the result to a certain tick value. If used, the result will contain only log events
/// with tick values up to (including) *to*. In incremental fetching, there is no
/// need to use the *to* parameter. It only makes sense in special situations,
/// when only parts of the change log are required.
///
/// The *chunkSize* query parameter can be used to control the size of the result.
/// It must be specified in bytes. The *chunkSize* value will only be honored
/// approximately. Otherwise a too low *chunkSize* value could cause the server
/// to not be able to put just one log entry into the result and return it.
/// Therefore, the *chunkSize* value will only be consulted after a log entry has
/// been written into the result. If the result size is then bigger than
/// *chunkSize*, the server will respond with as many log entries as there are
/// in the response already. If the result size is still smaller than *chunkSize*,
/// the server will try to return more data if there's more data left to return.
///
/// If *chunkSize* is not specified, some server-side default value will be used.
///
/// The *Content-Type* of the result is *application/x-arango-dump*. This is an
/// easy-to-process format, with all log events going onto separate lines in the
/// response body. Each log event itself is a JSON object, with at least the
/// following attributes:
///
/// - *tick*: the log event tick value
///
/// - *type*: the log event type
///
/// Individual log events will also have additional attributes, depending on the
/// event type. A few common attributes which are used for multiple events types
/// are:
///
/// - *cid*: id of the collection the event was for
///
/// - *tid*: id of the transaction the event was contained in
///
/// - *key*: document key
///
/// - *rev*: document revision id
///
/// - *data*: the original document data
///
/// A more detailed description of the individual replication event types and their
/// data structures can be found in @ref RefManualReplicationEventTypes.
///
/// The response will also contain the following HTTP headers:
///
/// - *x-arango-replication-active*: whether or not the logger is active. Clients
/// can use this flag as an indication for their polling frequency. If the
/// logger is not active and there are no more replication events available, it
/// might be sensible for a client to abort, or to go to sleep for a long time
/// and try again later to check whether the logger has been activated.
///
/// - *x-arango-replication-lastincluded*: the tick value of the last included
/// value in the result. In incremental log fetching, this value can be used
/// as the *from* value for the following request. **Note** that if the result is
/// empty, the value will be *0*. This value should not be used as *from* value
/// by clients in the next request (otherwise the server would return the log
/// events from the start of the log again).
///
/// - *x-arango-replication-lasttick*: the last tick value the logger server has
/// logged (not necessarily included in the result). By comparing the the last
/// tick and last included tick values, clients have an approximate indication of
/// how many events there are still left to fetch.
///
/// - *x-arango-replication-checkmore*: whether or not there already exists more
/// log data which the client could fetch immediately. If there is more log data
/// available, the client could call *logger-follow* again with an adjusted *from*
/// value to fetch remaining log entries until there are no more.
///
/// If there isn't any more log data to fetch, the client might decide to go
/// to sleep for a while before calling the logger again.
///
/// **Note**: this method is not supported on a coordinator in a cluster.
///
/// @RESTRETURNCODES
///
/// @RESTRETURNCODE{200}
/// is returned if the request was executed successfully, and there are log
/// events available for the requested range. The response body will not be empty
/// in this case.
///
/// @RESTRETURNCODE{204}
/// is returned if the request was executed successfully, but there are no log
/// events available for the requested range. The response body will be empty
/// in this case.
///
/// @RESTRETURNCODE{400}
/// is returned if either the *from* or *to* values are invalid.
///
/// @RESTRETURNCODE{405}
/// is returned when an invalid HTTP method is used.
///
/// @RESTRETURNCODE{500}
/// is returned if an error occurred while assembling the response.
///
/// @RESTRETURNCODE{501}
/// is returned when this operation is called on a coordinator in a cluster.
///
/// @EXAMPLES
///
/// No log events available
///
/// @EXAMPLE_ARANGOSH_RUN{RestReplicationLoggerFollowEmpty}
/// var re = require("@arangodb/replication");
/// var lastTick = re.logger.state().state.lastLogTick;
///
/// var url = "/_api/replication/logger-follow?from=" + lastTick;
/// var response = logCurlRequest('GET', url);
///
/// assert(response.code === 204);
///
/// logRawResponse(response);
/// @END_EXAMPLE_ARANGOSH_RUN
///
/// A few log events
///
/// @EXAMPLE_ARANGOSH_RUN{RestReplicationLoggerFollowSome}
/// var re = require("@arangodb/replication");
/// db._drop("products");
///
/// var lastTick = re.logger.state().state.lastLogTick;
///
/// db._create("products");
/// db.products.save({ "_key": "p1", "name" : "flux compensator" });
/// db.products.save({ "_key": "p2", "name" : "hybrid hovercraft", "hp" : 5100 });
/// db.products.remove("p1");
/// db.products.update("p2", { "name" : "broken hovercraft" });
/// db.products.drop();
///
/// require("internal").wait(1);
/// var url = "/_api/replication/logger-follow?from=" + lastTick;
/// var response = logCurlRequest('GET', url);
///
/// assert(response.code === 200);
///
/// logRawResponse(response);
/// @END_EXAMPLE_ARANGOSH_RUN
///
/// More events than would fit into the response
///
/// @EXAMPLE_ARANGOSH_RUN{RestReplicationLoggerFollowBufferLimit}
/// var re = require("@arangodb/replication");
/// db._drop("products");
///
/// var lastTick = re.logger.state().state.lastLogTick;
///
/// db._create("products");
/// db.products.save({ "_key": "p1", "name" : "flux compensator" });
/// db.products.save({ "_key": "p2", "name" : "hybrid hovercraft", "hp" : 5100 });
/// db.products.remove("p1");
/// db.products.update("p2", { "name" : "broken hovercraft" });
/// db.products.drop();
///
/// require("internal").wait(1);
/// var url = "/_api/replication/logger-follow?from=" + lastTick + "&chunkSize=400";
/// var response = logCurlRequest('GET', url);
///
/// assert(response.code === 200);
///
/// logRawResponse(response);
/// @END_EXAMPLE_ARANGOSH_RUN
/// @endDocuBlock
////////////////////////////////////////////////////////////////////////////////
void RestReplicationHandler::handleCommandLoggerFollow () {
// determine start and end tick
triagens::wal::LogfileManagerState state = triagens::wal::LogfileManager::instance()->state();
TRI_voc_tick_t tickStart = 0;
TRI_voc_tick_t tickEnd = state.lastDataTick;
TRI_voc_tick_t firstRegularTick = 0;
bool found;
char const* value;
value = _request->value("from", found);
if (found) {
tickStart = static_cast<TRI_voc_tick_t>(StringUtils::uint64(value));
}
// determine end tick for dump
value = _request->value("to", found);
if (found) {
tickEnd = static_cast<TRI_voc_tick_t>(StringUtils::uint64(value));
}
if (found && (tickStart > tickEnd || tickEnd == 0)) {
generateError(HttpResponse::BAD,
TRI_ERROR_HTTP_BAD_PARAMETER,
"invalid from/to values");
return;
}
bool includeSystem = true;
value = _request->value("includeSystem", found);
if (found) {
includeSystem = StringUtils::boolean(value);
}
// grab list of transactions from the body value
std::unordered_set<TRI_voc_tid_t> transactionIds;
if (_request->requestType() == triagens::rest::HttpRequest::HTTP_REQUEST_PUT) {
value = _request->value("firstRegularTick", found);
if (found) {
firstRegularTick = static_cast<TRI_voc_tick_t>(StringUtils::uint64(value));
}
VPackOptions options;
options.checkAttributeUniqueness = true;
std::shared_ptr<VPackBuilder> parsedRequest;
try {
parsedRequest = _request->toVelocyPack(&options);
}
catch (...) {
generateError(HttpResponse::BAD,
TRI_ERROR_HTTP_BAD_PARAMETER,
"invalid body value. expecting array");
return;
}
VPackSlice const slice = parsedRequest->slice();
if (! slice.isArray()) {
generateError(HttpResponse::BAD,
TRI_ERROR_HTTP_BAD_PARAMETER,
"invalid body value. expecting array");
return;
}
for (auto const& id : VPackArrayIterator(slice)) {
if (id.isString()) {
generateError(HttpResponse::BAD,
TRI_ERROR_HTTP_BAD_PARAMETER,
"invalid body value. expecting array of ids");
return;
}
transactionIds.emplace(StringUtils::uint64(id.copyString()));
}
}
int res = TRI_ERROR_NO_ERROR;
try {
// initialize the dump container
TRI_replication_dump_t dump(_vocbase, (size_t) determineChunkSize(), includeSystem);
// and dump
res = TRI_DumpLogReplication(&dump, transactionIds, firstRegularTick, tickStart, tickEnd, false);
if (res == TRI_ERROR_NO_ERROR) {
bool const checkMore = (dump._lastFoundTick > 0 && dump._lastFoundTick != state.lastDataTick);
// generate the result
size_t const length = TRI_LengthStringBuffer(dump._buffer);
if (length == 0) {
createResponse(HttpResponse::NO_CONTENT);
}
else {
createResponse(HttpResponse::OK);
}
_response->setContentType("application/x-arango-dump; charset=utf-8");
// set headers
_response->setHeader(TRI_REPLICATION_HEADER_CHECKMORE,
strlen(TRI_REPLICATION_HEADER_CHECKMORE),
checkMore ? "true" : "false");
_response->setHeader(TRI_REPLICATION_HEADER_LASTINCLUDED,
strlen(TRI_REPLICATION_HEADER_LASTINCLUDED),
StringUtils::itoa(dump._lastFoundTick));
_response->setHeader(TRI_REPLICATION_HEADER_LASTTICK,
strlen(TRI_REPLICATION_HEADER_LASTTICK),
StringUtils::itoa(state.lastTick));
_response->setHeader(TRI_REPLICATION_HEADER_ACTIVE,
strlen(TRI_REPLICATION_HEADER_ACTIVE),
"true");
_response->setHeader(TRI_REPLICATION_HEADER_FROMPRESENT,
strlen(TRI_REPLICATION_HEADER_FROMPRESENT),
dump._fromTickIncluded ? "true" : "false");
if (length > 0) {
// transfer ownership of the buffer contents
_response->body().set(dump._buffer);
// to avoid double freeing
TRI_StealStringBuffer(dump._buffer);
}
insertClient(dump._lastFoundTick);
}
}
catch (triagens::basics::Exception const& ex) {
res = ex.code();
}
catch (...) {
res = TRI_ERROR_INTERNAL;
}
if (res != TRI_ERROR_NO_ERROR) {
generateError(HttpResponse::responseCode(res), res);
}
}
////////////////////////////////////////////////////////////////////////////////
/// @brief run the command that determines which transactions were open at
/// a given tick value
/// this is an internal method use by ArangoDB's replication that should not
/// be called by client drivers directly
////////////////////////////////////////////////////////////////////////////////
void RestReplicationHandler::handleCommandDetermineOpenTransactions () {
// determine start and end tick
triagens::wal::LogfileManagerState state = triagens::wal::LogfileManager::instance()->state();
TRI_voc_tick_t tickStart = 0;
TRI_voc_tick_t tickEnd = state.lastDataTick;
bool found;
char const* value;
value = _request->value("from", found);
if (found) {
tickStart = static_cast<TRI_voc_tick_t>(StringUtils::uint64(value));
}
// determine end tick for dump
value = _request->value("to", found);
if (found) {
tickEnd = static_cast<TRI_voc_tick_t>(StringUtils::uint64(value));
}
if (found && (tickStart > tickEnd || tickEnd == 0)) {
generateError(HttpResponse::BAD,
TRI_ERROR_HTTP_BAD_PARAMETER,
"invalid from/to values");
return;
}
int res = TRI_ERROR_NO_ERROR;
try {
// initialize the dump container
TRI_replication_dump_t dump(_vocbase, (size_t) determineChunkSize(), false);
// and dump
res = TRI_DetermineOpenTransactionsReplication(&dump, tickStart, tickEnd);
if (res == TRI_ERROR_NO_ERROR) {
// generate the result
size_t const length = TRI_LengthStringBuffer(dump._buffer);
if (length == 0) {
createResponse(HttpResponse::NO_CONTENT);
}
else {
createResponse(HttpResponse::OK);
}
_response->setContentType("application/x-arango-dump; charset=utf-8");
_response->setHeader(TRI_CHAR_LENGTH_PAIR(TRI_REPLICATION_HEADER_FROMPRESENT), dump._fromTickIncluded ? "true" : "false");
_response->setHeader(TRI_CHAR_LENGTH_PAIR(TRI_REPLICATION_HEADER_LASTTICK), StringUtils::itoa(dump._lastFoundTick));
if (length > 0) {
// transfer ownership of the buffer contents
_response->body().set(dump._buffer);
// to avoid double freeing
TRI_StealStringBuffer(dump._buffer);
}
}
}
catch (triagens::basics::Exception const& ex) {
res = ex.code();
}
catch (...) {
res = TRI_ERROR_INTERNAL;
}
if (res != TRI_ERROR_NO_ERROR) {
generateError(HttpResponse::responseCode(res), res);
}
}
////////////////////////////////////////////////////////////////////////////////
/// @startDocuBlock JSF_put_api_replication_inventory
/// @brief Returns an overview of collections and their indexes
///
/// @RESTHEADER{GET /_api/replication/inventory, Return inventory of collections and indexes}
///
/// @RESTQUERYPARAMETERS
///
/// @RESTQUERYPARAM{includeSystem,boolean,optional}
/// Include system collections in the result. The default value is *true*.
///
/// @RESTDESCRIPTION
/// Returns the array of collections and indexes available on the server. This
/// array can be used by replication clients to initiate an initial sync with the
/// server.
///
/// The response will contain a JSON object with the *collection* and *state* and
/// *tick* attributes.
///
/// *collections* is a array of collections with the following sub-attributes:
///
/// - *parameters*: the collection properties
///
/// - *indexes*: a array of the indexes of a the collection. Primary indexes and edges indexes
/// are not included in this array.
///
/// The *state* attribute contains the current state of the replication logger. It
/// contains the following sub-attributes:
///
/// - *running*: whether or not the replication logger is currently active. Note:
/// since ArangoDB 2.2, the value will always be *true*
///
/// - *lastLogTick*: the value of the last tick the replication logger has written
///
/// - *time*: the current time on the server
///
/// Replication clients should note the *lastLogTick* value returned. They can then
/// fetch collections' data using the dump method up to the value of lastLogTick, and
/// query the continuous replication log for log events after this tick value.
///
/// To create a full copy of the collections on the server, a replication client
/// can execute these steps:
///
/// - call the */inventory* API method. This returns the *lastLogTick* value and the
/// array of collections and indexes from the server.
///
/// - for each collection returned by */inventory*, create the collection locally and
/// call */dump* to stream the collection data to the client, up to the value of
/// *lastLogTick*.
/// After that, the client can create the indexes on the collections as they were
/// reported by */inventory*.
///
/// If the clients wants to continuously stream replication log events from the logger
/// server, the following additional steps need to be carried out:
///
/// - the client should call */logger-follow* initially to fetch the first batch of
/// replication events that were logged after the client's call to */inventory*.
///
/// The call to */logger-follow* should use a *from* parameter with the value of the
/// *lastLogTick* as reported by */inventory*. The call to */logger-follow* will return the
/// *x-arango-replication-lastincluded* which will contain the last tick value included
/// in the response.
///
/// - the client can then continuously call */logger-follow* to incrementally fetch new
/// replication events that occurred after the last transfer.
///
/// Calls should use a *from* parameter with the value of the *x-arango-replication-lastincluded*
/// header of the previous response. If there are no more replication events, the
/// response will be empty and clients can go to sleep for a while and try again
/// later.
///
/// **Note**: on a coordinator, this request must have the query parameter
/// *DBserver* which must be an ID of a DBserver.
/// The very same request is forwarded synchronously to that DBserver.
/// It is an error if this attribute is not bound in the coordinator case.
///
/// @RESTRETURNCODES
///
/// @RESTRETURNCODE{200}
/// is returned if the request was executed successfully.
///
/// @RESTRETURNCODE{405}
/// is returned when an invalid HTTP method is used.
///
/// @RESTRETURNCODE{500}
/// is returned if an error occurred while assembling the response.
///
/// @EXAMPLES
///
/// @EXAMPLE_ARANGOSH_RUN{RestReplicationInventory}
/// var url = "/_api/replication/inventory";
/// var response = logCurlRequest('GET', url);
///
/// assert(response.code === 200);
///
/// logJsonResponse(response);
/// @END_EXAMPLE_ARANGOSH_RUN
///
/// With some additional indexes:
///
/// @EXAMPLE_ARANGOSH_RUN{RestReplicationInventoryIndexes}
/// db._drop("IndexedCollection1");
/// var c1 = db._create("IndexedCollection1");
/// c1.ensureHashIndex("name");
/// c1.ensureUniqueSkiplist("a", "b");
/// c1.ensureCapConstraint(500);
///
/// db._drop("IndexedCollection2");
/// var c2 = db._create("IndexedCollection2");
/// c2.ensureFulltextIndex("text", 10);
/// c2.ensureSkiplist("a");
/// c2.ensureCapConstraint(0, 1048576);
///
/// var url = "/_api/replication/inventory";
/// var response = logCurlRequest('GET', url);
///
/// assert(response.code === 200);
/// logJsonResponse(response);
///
/// db._flushCache();
/// db._drop("IndexedCollection1");
/// db._drop("IndexedCollection2");
/// @END_EXAMPLE_ARANGOSH_RUN
/// @endDocuBlock
////////////////////////////////////////////////////////////////////////////////
void RestReplicationHandler::handleCommandInventory () {
TRI_voc_tick_t tick = TRI_CurrentTickServer();
// include system collections?
bool includeSystem = true;
bool found;
const char* value = _request->value("includeSystem", found);
if (found) {
includeSystem = StringUtils::boolean(value);
}
// collections and indexes
std::shared_ptr<VPackBuilder> collectionsBuilder;
try {
collectionsBuilder = TRI_InventoryCollectionsVocBase(_vocbase, tick, &filterCollection, (void*) &includeSystem, true, RestReplicationHandler::sortCollections);
VPackSlice const collections = collectionsBuilder->slice();
TRI_ASSERT(collections.isArray());
VPackBuilder builder;
builder.openObject();
// add collections data
builder.add("collections", collections);
// "state"
builder.add("state", VPackValue(VPackValueType::Object));
triagens::wal::LogfileManagerState const&& s = triagens::wal::LogfileManager::instance()->state();
builder.add("running", VPackValue(true));
char* logTickString = TRI_StringUInt64(s.lastTick);
builder.add("lastLogTick", VPackValue(logTickString));
builder.add("totalEvents", VPackValue(s.numEvents));
builder.add("time", VPackValue(s.timeString));
builder.close(); // state
std::string const tickString(std::to_string(tick));
builder.add("tick", VPackValue(tickString));
builder.close(); // Toplevel
generateResult(builder.slice());
}
catch (std::bad_alloc& ) {
generateError(HttpResponse::SERVER_ERROR, TRI_ERROR_OUT_OF_MEMORY);
return;
}
}
////////////////////////////////////////////////////////////////////////////////
/// @startDocuBlock JSF_get_api_replication_cluster_inventory
/// @brief returs an overview of collections and indexes in a cluster
///
/// @RESTHEADER{GET /_api/replication/clusterInventory, Return cluster inventory of collections and indexes}
///
/// @RESTQUERYPARAMETERS
///
/// @RESTQUERYPARAM{includeSystem,boolean,optional}
/// Include system collections in the result. The default value is *true*.
///
/// @RESTDESCRIPTION
/// Returns the array of collections and indexes available on the cluster.
///
/// The response will be an array of JSON objects, one for each collection.
/// Each collection containscontains exactly two keys "parameters" and "indexes". This
/// information comes from Plan/Collections/{DB-Name}/* in the agency,
/// just that the *indexes* attribute there is relocated to adjust it to
/// the data format of arangodump.
///
/// @RESTRETURNCODES
///
/// @RESTRETURNCODE{200}
/// is returned if the request was executed successfully.
///
/// @RESTRETURNCODE{405}
/// is returned when an invalid HTTP method is used.
///
/// @RESTRETURNCODE{500}
/// is returned if an error occurred while assembling the response.
/// @endDocuBlock
////////////////////////////////////////////////////////////////////////////////
void RestReplicationHandler::handleCommandClusterInventory () {
string const& dbName = _request->databaseName();
string value;
bool found;
bool includeSystem = true;
value = _request->value("includeSystem", found);
if (found) {
includeSystem = StringUtils::boolean(value);
}
AgencyComm _agency;
AgencyCommResult result;
{
string prefix("Plan/Collections/");
prefix.append(dbName);
AgencyCommLocker locker("Plan", "READ");
if (! locker.successful()) {
generateError(HttpResponse::SERVER_ERROR,
TRI_ERROR_CLUSTER_COULD_NOT_LOCK_PLAN);
}
else {
result = _agency.getValues(prefix, false);
if (! result.successful()) {
generateError(HttpResponse::SERVER_ERROR,
TRI_ERROR_CLUSTER_READING_PLAN_AGENCY);
}
else {
if (! result.parse(prefix + "/", false)) {
generateError(HttpResponse::SERVER_ERROR,
TRI_ERROR_CLUSTER_READING_PLAN_AGENCY);
}
else {
VPackBuilder resultBuilder;
{
VPackObjectBuilder b1(&resultBuilder);
resultBuilder.add(VPackValue("collections"));
{
VPackArrayBuilder b2(&resultBuilder);
for (auto const& it : result._values) {
// Only temporary until AgencyResult has _velocy
std::shared_ptr<VPackBuilder> parsedSubResult = JsonHelper::toVelocyPack(it.second._json);
VPackSlice const subResultSlice = parsedSubResult->slice();
if (subResultSlice.isObject()) {
if (includeSystem ||
! triagens::basics::VelocyPackHelper::getBooleanValue(subResultSlice, "isSystem", true)) {
VPackObjectBuilder b3(&resultBuilder);
resultBuilder.add("indexes", subResultSlice.get("indexes"));
resultBuilder.add("parameters", subResultSlice);
}
}
}
}
TRI_voc_tick_t tick = TRI_CurrentTickServer();
char* tickString = TRI_StringUInt64(tick);
resultBuilder.add("tick", VPackValue(tickString));
resultBuilder.add("state", VPackValue("unused"));
}
generateResult(HttpResponse::OK, resultBuilder.slice());
}
}
}
}
}
////////////////////////////////////////////////////////////////////////////////
/// @brief extract the collection id from VelocyPack TODO: MOVE
////////////////////////////////////////////////////////////////////////////////
TRI_voc_cid_t RestReplicationHandler::getCid (VPackSlice const& slice) const {
if (! slice.isObject()) {
return 0;
}
VPackSlice const id = slice.get("cid");
if (id.isString()) {
return StringUtils::uint64(id.copyString());
}
else if (id.isNumber()) {
return static_cast<TRI_voc_cid_t>(id.getNumericValue<uint64_t>());
}
return 0;
}
////////////////////////////////////////////////////////////////////////////////
/// @brief creates a collection, based on the VelocyPack provided TODO: MOVE
////////////////////////////////////////////////////////////////////////////////
int RestReplicationHandler::createCollection (VPackSlice const& slice,
TRI_vocbase_col_t** dst,
bool reuseId) {
if (dst != nullptr) {
*dst = nullptr;
}
if (! slice.isObject()) {
return TRI_ERROR_HTTP_BAD_PARAMETER;
}
const string name = triagens::basics::VelocyPackHelper::getStringValue(slice, "name", "");
if (name.empty()) {
return TRI_ERROR_HTTP_BAD_PARAMETER;
}
TRI_voc_cid_t cid = 0;
if (reuseId) {
cid = getCid(slice);
if (cid == 0) {
return TRI_ERROR_HTTP_BAD_PARAMETER;
}
}
const TRI_col_type_e type = static_cast<TRI_col_type_e>(triagens::basics::VelocyPackHelper::getNumericValue<int>(slice, "type", (int) TRI_COL_TYPE_DOCUMENT));
TRI_vocbase_col_t* col = nullptr;
if (cid > 0) {
col = TRI_LookupCollectionByIdVocBase(_vocbase, cid);
}
if (col != nullptr &&
(TRI_col_type_t) col->_type == (TRI_col_type_t) type) {
// collection already exists. TODO: compare attributes
return TRI_ERROR_NO_ERROR;
}
VocbaseCollectionInfo params (_vocbase,
name.c_str(),
slice);
/* Temporary ASSERTS to prove correctness of new constructor */
TRI_ASSERT(params.doCompact() == triagens::basics::VelocyPackHelper::getBooleanValue(slice, "doCompact", true));
TRI_ASSERT(params.waitForSync() == triagens::basics::VelocyPackHelper::getBooleanValue(slice, "waitForSync", _vocbase->_settings.defaultWaitForSync));
TRI_ASSERT(params.isVolatile() == triagens::basics::VelocyPackHelper::getBooleanValue(slice, "isVolatile", false));
TRI_ASSERT(params.isSystem() == (name[0] == '_'));
TRI_ASSERT(params.indexBuckets() == triagens::basics::VelocyPackHelper::getNumericValue<uint32_t>(slice, "indexBuckets", TRI_DEFAULT_INDEX_BUCKETS));
TRI_voc_cid_t planId = 0;
VPackSlice const planIdSlice = slice.get("planId");
if (planIdSlice.isNumber()) {
planId = static_cast<TRI_voc_cid_t>(planIdSlice.getNumericValue<uint64_t>());
}
else if (planIdSlice.isString()) {
std::string tmp = planIdSlice.copyString();
planId = static_cast<TRI_voc_cid_t>(TRI_UInt64String2(tmp.c_str(), tmp.length()));
}
if (planId > 0) {
TRI_ASSERT(params.planId() == planId);
}
else {
TRI_ASSERT(params.planId() == 0);
}
if (cid > 0) {
// wait for "old" collection to be dropped
char* dirName = TRI_GetDirectoryCollection(_vocbase->_path,
name.c_str(),
type,
cid);
if (dirName != nullptr) {
char* parameterName = TRI_Concatenate2File(dirName, TRI_VOC_PARAMETER_FILE);
if (parameterName != nullptr) {
int iterations = 0;
// TODO: adjust sleep timer & maxiterations
while (TRI_IsDirectory(dirName) && TRI_ExistsFile(parameterName) && iterations++ < 1200) {
usleep(100 * 1000);
}
TRI_FreeString(TRI_CORE_MEM_ZONE, parameterName);
}
TRI_FreeString(TRI_CORE_MEM_ZONE, dirName);
}
}
col = TRI_CreateCollectionVocBase(_vocbase, params, cid, true);
if (col == nullptr) {
return TRI_errno();
}
if (dst != nullptr) {
*dst = col;
}
return TRI_ERROR_NO_ERROR;
}
////////////////////////////////////////////////////////////////////////////////
/// @brief restores the structure of a collection TODO MOVE
////////////////////////////////////////////////////////////////////////////////
void RestReplicationHandler::handleCommandRestoreCollection () {
std::shared_ptr<VPackBuilder> parsedRequest;
VPackOptions options;
options.checkAttributeUniqueness = true;
try {
parsedRequest = _request->toVelocyPack(&options);
}
catch (...) {
generateError(HttpResponse::BAD,
TRI_ERROR_HTTP_BAD_PARAMETER,
"invalid JSON");
return;
}
VPackSlice const slice = parsedRequest->slice();
bool found;
char const* value;
bool overwrite = false;
value = _request->value("overwrite", found);
if (found) {
overwrite = StringUtils::boolean(value);
}
bool recycleIds = false;
value = _request->value("recycleIds", found);
if (found) {
recycleIds = StringUtils::boolean(value);
}
bool force = false;
value = _request->value("force", found);
if (found) {
force = StringUtils::boolean(value);
}
string errorMsg;
int res;
if (ServerState::instance()->isCoordinator()) {
res = processRestoreCollectionCoordinator(slice, overwrite, recycleIds,
force, errorMsg);
}
else {
res = processRestoreCollection(slice, overwrite, recycleIds, force, errorMsg);
}
if (res != TRI_ERROR_NO_ERROR) {
generateError(HttpResponse::responseCode(res), res);
}
else {
try {
VPackBuilder result;
result.add(VPackValue(VPackValueType::Object));
result.add("result", VPackValue(true));
result.close();
VPackSlice s = result.slice();
generateResult(s);
}
catch (...) {
generateOOMError();
}
}
}
////////////////////////////////////////////////////////////////////////////////
/// @brief restores the indexes of a collection TODO MOVE
////////////////////////////////////////////////////////////////////////////////
void RestReplicationHandler::handleCommandRestoreIndexes () {
std::shared_ptr<VPackBuilder> parsedRequest;
VPackOptions options;
options.checkAttributeUniqueness = true;
try {
parsedRequest = _request->toVelocyPack(&options);
}
catch (...) {
generateError(HttpResponse::BAD,
TRI_ERROR_HTTP_BAD_PARAMETER,
"invalid JSON");
return;
}
VPackSlice const slice = parsedRequest->slice();
bool found;
bool force = false;
char const* value = _request->value("force", found);
if (found) {
force = StringUtils::boolean(value);
}
string errorMsg;
int res;
if (ServerState::instance()->isCoordinator()) {
res = processRestoreIndexesCoordinator(slice, force, errorMsg);
}
else {
res = processRestoreIndexes(slice, force, errorMsg);
}
if (res != TRI_ERROR_NO_ERROR) {
generateError(HttpResponse::responseCode(res), res);
}
else {
try {
VPackBuilder result;
result.openObject();
result.add("result", VPackValue(true));
result.close();
VPackSlice s = result.slice();
generateResult(s);
}
catch (...) {
generateOOMError();
}
}
}
////////////////////////////////////////////////////////////////////////////////
/// @brief restores the structure of a collection TODO MOVE
////////////////////////////////////////////////////////////////////////////////
int RestReplicationHandler::processRestoreCollection (VPackSlice const& collection,
bool dropExisting,
bool reuseId,
bool force,
string& errorMsg) {
if (! collection.isObject()) {
errorMsg = "collection declaration is invalid";
return TRI_ERROR_HTTP_BAD_PARAMETER;
}
VPackSlice const parameters = collection.get("parameters");
if (! parameters.isObject()) {
errorMsg = "collection parameters declaration is invalid";
return TRI_ERROR_HTTP_BAD_PARAMETER;
}
VPackSlice const indexes = collection.get("indexes");
if (! indexes.isArray()) {
errorMsg = "collection indexes declaration is invalid";
return TRI_ERROR_HTTP_BAD_PARAMETER;
}
const string name = triagens::basics::VelocyPackHelper::getStringValue(parameters, "name", "");
if (name.empty()) {
errorMsg = "collection name is missing";
return TRI_ERROR_HTTP_BAD_PARAMETER;
}
if (triagens::basics::VelocyPackHelper::getBooleanValue(parameters, "deleted", false)) {
// we don't care about deleted collections
return TRI_ERROR_NO_ERROR;
}
TRI_vocbase_col_t* col = nullptr;
if (reuseId) {
VPackSlice const idString = parameters.get("cid");
if (! idString.isString()) {
errorMsg = "collection id is missing";
return TRI_ERROR_HTTP_BAD_PARAMETER;
}
std::string tmp = idString.copyString();
TRI_voc_cid_t cid = StringUtils::uint64(tmp.c_str(), tmp.length());
// first look up the collection by the cid
col = TRI_LookupCollectionByIdVocBase(_vocbase, cid);
}
if (col == nullptr) {
// not found, try name next
col = TRI_LookupCollectionByNameVocBase(_vocbase, name.c_str());
}
// drop an existing collection if it exists
if (col != nullptr) {
if (dropExisting) {
int res = TRI_DropCollectionVocBase(_vocbase, col, true);
if (res == TRI_ERROR_FORBIDDEN) {
// some collections must not be dropped
// instead, truncate them
SingleCollectionWriteTransaction<UINT64_MAX> trx(new StandaloneTransactionContext(), _vocbase, col->_cid);
res = trx.begin();
if (res != TRI_ERROR_NO_ERROR) {
return res;
}
res = trx.truncate(false);
res = trx.finish(res);
return res;
}
if (res != TRI_ERROR_NO_ERROR) {
errorMsg = "unable to drop collection '" + name + "': " + string(TRI_errno_string(res));
return res;
}
}
else {
int res = TRI_ERROR_ARANGO_DUPLICATE_NAME;
errorMsg = "unable to create collection '" + name + "': " + string(TRI_errno_string(res));
return res;
}
}
// now re-create the collection
int res = createCollection(parameters, &col, reuseId);
if (res != TRI_ERROR_NO_ERROR) {
errorMsg = "unable to create collection: " + string(TRI_errno_string(res));
return res;
}
return TRI_ERROR_NO_ERROR;
}
////////////////////////////////////////////////////////////////////////////////
/// @brief restores the structure of a collection, coordinator case
////////////////////////////////////////////////////////////////////////////////
int RestReplicationHandler::processRestoreCollectionCoordinator (
VPackSlice const& collection,
bool dropExisting,
bool reuseId,
bool force,
string& errorMsg) {
if (! collection.isObject()) {
errorMsg = "collection declaration is invalid";
return TRI_ERROR_HTTP_BAD_PARAMETER;
}
VPackSlice const parameters = collection.get("parameters");
if (! parameters.isObject()) {
errorMsg = "collection parameters declaration is invalid";
return TRI_ERROR_HTTP_BAD_PARAMETER;
}
string const name = triagens::basics::VelocyPackHelper::getStringValue(parameters, "name", "");
if (name.empty()) {
errorMsg = "collection name is missing";
return TRI_ERROR_HTTP_BAD_PARAMETER;
}
if (triagens::basics::VelocyPackHelper::getBooleanValue(parameters, "deleted", false)) {
// we don't care about deleted collections
return TRI_ERROR_NO_ERROR;
}
std::string dbName = _vocbase->_name;
// in a cluster, we only look up by name:
ClusterInfo* ci = ClusterInfo::instance();
std::shared_ptr<CollectionInfo> col = ci->getCollection(dbName, name);
// drop an existing collection if it exists
if (! col->empty()) {
if (dropExisting) {
int res = ci->dropCollectionCoordinator(dbName, col->id_as_string(),
errorMsg, 0.0);
if (res == TRI_ERROR_FORBIDDEN) {
// some collections must not be dropped
res = truncateCollectionOnCoordinator(dbName, name);
if (res != TRI_ERROR_NO_ERROR) {
errorMsg = "unable to truncate collection (dropping is forbidden): "+
name;
return res;
}
}
if (res != TRI_ERROR_NO_ERROR) {
errorMsg = "unable to drop collection '" + name + "': " + string(TRI_errno_string(res));
return res;
}
}
else {
int res = TRI_ERROR_ARANGO_DUPLICATE_NAME;
errorMsg = "unable to create collection '" + name + "': " + string(TRI_errno_string(res));
return res;
}
}
// now re-create the collection
// dig out number of shards:
uint64_t numberOfShards = 1;
VPackSlice const shards = parameters.get("shards");
if (shards.isObject()) {
numberOfShards = static_cast<uint64_t>(shards.length());
}
// We take one shard if "shards" was not given
try {
TRI_voc_tick_t new_id_tick = ci->uniqid(1);
VPackBuilder toMerge;
std::string new_id = StringUtils::itoa(new_id_tick);
toMerge.openObject();
toMerge.add("id", VPackValue(new_id));
// Now put in the primary and an edge index if needed:
toMerge.add("indexes", VPackValue(VPackValueType::Array));
// create a dummy primary index
{
TRI_document_collection_t* doc = nullptr;
std::unique_ptr<triagens::arango::PrimaryIndex> primaryIndex(new triagens::arango::PrimaryIndex(doc));
std::shared_ptr<VPackBuilder> idxVPack = primaryIndex->toVelocyPack(false, true);
toMerge.add(idxVPack->slice());
}
VPackSlice const type = parameters.get("type");
TRI_col_type_e collectionType;
if (type.isNumber()) {
collectionType = static_cast<TRI_col_type_e>(type.getNumericValue<int>());
}
else {
errorMsg = "collection type not given or wrong";
return TRI_ERROR_HTTP_BAD_PARAMETER;
}
if (collectionType == TRI_COL_TYPE_EDGE) {
// create a dummy edge index
std::unique_ptr<triagens::arango::EdgeIndex> edgeIndex(new triagens::arango::EdgeIndex(new_id_tick, nullptr));
std::shared_ptr<VPackBuilder> idxVPack = edgeIndex->toVelocyPack(false, true);
toMerge.add(idxVPack->slice());
}
toMerge.close(); // indexes
toMerge.close(); // TopLevel
VPackSlice const sliceToMerge = toMerge.slice();
VPackBuilder mergedBuilder = VPackCollection::merge(parameters, sliceToMerge, false);
VPackSlice const merged = mergedBuilder.slice();
int res = ci->createCollectionCoordinator(dbName, new_id, numberOfShards,
merged, errorMsg, 0.0);
if (res != TRI_ERROR_NO_ERROR) {
errorMsg = "unable to create collection: " + string(TRI_errno_string(res));
return res;
}
}
catch (std::bad_alloc const&) {
errorMsg = "out of memory";
return TRI_ERROR_OUT_OF_MEMORY;
}
return TRI_ERROR_NO_ERROR;
}
////////////////////////////////////////////////////////////////////////////////
/// @brief restores the indexes of a collection TODO MOVE
////////////////////////////////////////////////////////////////////////////////
int RestReplicationHandler::processRestoreIndexes (VPackSlice const& collection,
bool force,
string& errorMsg) {
if (! collection.isObject()) {
errorMsg = "collection declaration is invalid";
return TRI_ERROR_HTTP_BAD_PARAMETER;
}
VPackSlice const parameters = collection.get("parameters");
if (! parameters.isObject()) {
errorMsg = "collection parameters declaration is invalid";
return TRI_ERROR_HTTP_BAD_PARAMETER;
}
VPackSlice const indexes = collection.get("indexes");
if (! indexes.isArray()) {
errorMsg = "collection indexes declaration is invalid";
return TRI_ERROR_HTTP_BAD_PARAMETER;
}
VPackValueLength const n = indexes.length();
if (n == 0) {
// nothing to do
return TRI_ERROR_NO_ERROR;
}
string const name = triagens::basics::VelocyPackHelper::getStringValue(parameters, "name", "");
if (name.empty()) {
errorMsg = "collection name is missing";
return TRI_ERROR_HTTP_BAD_PARAMETER;
}
if (triagens::basics::VelocyPackHelper::getBooleanValue(parameters, "deleted", false)) {
// we don't care about deleted collections
return TRI_ERROR_NO_ERROR;
}
READ_LOCKER(_vocbase->_inventoryLock);
// look up the collection
try {
CollectionGuard guard(_vocbase, name.c_str());
TRI_document_collection_t* document = guard.collection()->_collection;
SingleCollectionWriteTransaction<UINT64_MAX> trx(new StandaloneTransactionContext(), _vocbase, document->_info.id());
int res = trx.begin();
if (res != TRI_ERROR_NO_ERROR) {
errorMsg = "unable to start transaction: " + string(TRI_errno_string(res));
THROW_ARANGO_EXCEPTION(res);
}
for (VPackSlice const& idxDef : VPackArrayIterator(indexes)) {
triagens::arango::Index* idx = nullptr;
// {"id":"229907440927234","type":"hash","unique":false,"fields":["x","Y"]}
res = TRI_FromVelocyPackIndexDocumentCollection(&trx, document, idxDef, &idx);
if (res != TRI_ERROR_NO_ERROR) {
errorMsg = "could not create index: " + string(TRI_errno_string(res));
break;
}
else {
TRI_ASSERT(idx != nullptr);
res = TRI_SaveIndex(document, idx, true);
if (res != TRI_ERROR_NO_ERROR) {
errorMsg = "could not save index: " + string(TRI_errno_string(res));
break;
}
}
}
}
catch (triagens::basics::Exception const& ex) {
errorMsg = "could not create index: " + string(TRI_errno_string(ex.code()));
}
catch (...) {
errorMsg = "could not create index: unknown error";
}
return TRI_ERROR_NO_ERROR;
}
////////////////////////////////////////////////////////////////////////////////
/// @brief restores the indexes of a collection, coordinator case
////////////////////////////////////////////////////////////////////////////////
int RestReplicationHandler::processRestoreIndexesCoordinator (
VPackSlice const& collection,
bool force,
string& errorMsg) {
if (! collection.isObject()) {
errorMsg = "collection declaration is invalid";
return TRI_ERROR_HTTP_BAD_PARAMETER;
}
VPackSlice const parameters = collection.get("parameters");
if (! parameters.isObject()) {
errorMsg = "collection parameters declaration is invalid";
return TRI_ERROR_HTTP_BAD_PARAMETER;
}
VPackSlice indexes = collection.get("indexes");
if (! indexes.isArray()) {
errorMsg = "collection indexes declaration is invalid";
return TRI_ERROR_HTTP_BAD_PARAMETER;
}
size_t const n = indexes.length();
if (n == 0) {
// nothing to do
return TRI_ERROR_NO_ERROR;
}
std::string name = triagens::basics::VelocyPackHelper::getStringValue(parameters, "name", "");
if (name.empty()) {
errorMsg = "collection name is missing";
return TRI_ERROR_HTTP_BAD_PARAMETER;
}
if (triagens::basics::VelocyPackHelper::getBooleanValue(parameters, "deleted", false)) {
// we don't care about deleted collections
return TRI_ERROR_NO_ERROR;
}
std::string dbName = _vocbase->_name;
// in a cluster, we only look up by name:
ClusterInfo* ci = ClusterInfo::instance();
std::shared_ptr<CollectionInfo> col = ci->getCollection(dbName, name);
if (col->empty()) {
errorMsg = "could not find collection '" + name + "'";
return TRI_ERROR_ARANGO_COLLECTION_NOT_FOUND;
}
int res = TRI_ERROR_NO_ERROR;
for (VPackSlice const& idxDef : VPackArrayIterator(indexes)) {
TRI_json_t* res_json = nullptr;
res = ci->ensureIndexCoordinator(dbName, col->id_as_string(), idxDef,
true, triagens::arango::Index::Compare, res_json, errorMsg, 3600.0);
if (res_json != nullptr) {
TRI_FreeJson(TRI_UNKNOWN_MEM_ZONE, res_json);
}
if (res != TRI_ERROR_NO_ERROR) {
errorMsg = "could not create index: " + string(TRI_errno_string(res));
break;
}
}
return res;
}
////////////////////////////////////////////////////////////////////////////////
/// @brief apply the data from a collection dump or the continuous log
////////////////////////////////////////////////////////////////////////////////
int RestReplicationHandler::applyCollectionDumpMarker (triagens::arango::Transaction* trx,
CollectionNameResolver const& resolver,
TRI_transaction_collection_t* trxCollection,
TRI_replication_operation_e type,
const TRI_voc_key_t key,
const TRI_voc_rid_t rid,
VPackSlice const& slice,
std::string& errorMsg) {
if (type == REPLICATION_MARKER_DOCUMENT ||
type == REPLICATION_MARKER_EDGE) {
// {"type":2400,"key":"230274209405676","data":{"_key":"230274209405676","_rev":"230274209405676","foo":"bar"}}
TRI_ASSERT(! slice.isNone());
TRI_ASSERT(slice.isObject());
TRI_document_collection_t* document = trxCollection->_collection->_collection;
TRI_memory_zone_t* zone = document->getShaper()->memoryZone(); // PROTECTED by trx in trxCollection
TRI_shaped_json_t* shaped = TRI_ShapedJsonVelocyPack(document->getShaper(), slice, true); // PROTECTED by trx in trxCollection
if (shaped == nullptr) {
return TRI_ERROR_OUT_OF_MEMORY;
}
try {
TRI_doc_mptr_copy_t mptr;
int res = TRI_ReadShapedJsonDocumentCollection(trx, trxCollection, key, &mptr, false);
if (res == TRI_ERROR_ARANGO_DOCUMENT_NOT_FOUND) {
// insert
if (type == REPLICATION_MARKER_EDGE) {
// edge
if (document->_info.type() != TRI_COL_TYPE_EDGE) {
res = TRI_ERROR_ARANGO_COLLECTION_TYPE_INVALID;
errorMsg = "expecting edge collection, got document collection";
}
else {
res = TRI_ERROR_NO_ERROR;
string const from = triagens::basics::VelocyPackHelper::getStringValue(slice, TRI_VOC_ATTRIBUTE_FROM, "");
string const to = triagens::basics::VelocyPackHelper::getStringValue(slice, TRI_VOC_ATTRIBUTE_TO, "");
// parse _from
TRI_document_edge_t edge;
if (! DocumentHelper::parseDocumentId(resolver, from.c_str(), edge._fromCid, &edge._fromKey)) {
res = TRI_ERROR_ARANGO_DOCUMENT_HANDLE_BAD;
errorMsg = std::string("handle bad or collection unknown '") + from.c_str() + "'";
}
// parse _to
if (! DocumentHelper::parseDocumentId(resolver, to.c_str(), edge._toCid, &edge._toKey)) {
res = TRI_ERROR_ARANGO_DOCUMENT_HANDLE_BAD;
errorMsg = std::string("handle bad or collection unknown '") + to.c_str() + "'";
}
if (res == TRI_ERROR_NO_ERROR) {
res = TRI_InsertShapedJsonDocumentCollection(trx, trxCollection, key, rid, nullptr, &mptr, shaped, &edge, false, false, true);
}
}
}
else {
// document
if (document->_info.type() != TRI_COL_TYPE_DOCUMENT) {
res = TRI_ERROR_ARANGO_COLLECTION_TYPE_INVALID;
errorMsg = std::string(TRI_errno_string(res)) + ": expecting document collection, got edge collection";
}
else {
res = TRI_InsertShapedJsonDocumentCollection(trx, trxCollection, key, rid, nullptr, &mptr, shaped, nullptr, false, false, true);
}
}
}
else {
// update
// init the update policy
TRI_doc_update_policy_t policy(TRI_DOC_UPDATE_LAST_WRITE, 0, nullptr);
res = TRI_UpdateShapedJsonDocumentCollection(trx, trxCollection, key, rid, nullptr, &mptr, shaped, &policy, false, false);
}
TRI_FreeShapedJson(zone, shaped);
return res;
}
catch (triagens::basics::Exception const& ex) {
TRI_FreeShapedJson(zone, shaped);
return ex.code();
}
catch (...) {
TRI_FreeShapedJson(zone, shaped);
return TRI_ERROR_INTERNAL;
}
}
else if (type == REPLICATION_MARKER_REMOVE) {
// {"type":2402,"key":"592063"}
// init the update policy
TRI_doc_update_policy_t policy(TRI_DOC_UPDATE_LAST_WRITE, 0, nullptr);
int res = TRI_ERROR_INTERNAL;
try {
res = TRI_RemoveShapedJsonDocumentCollection(trx, trxCollection, key, rid, nullptr, &policy, false, false);
if (res != TRI_ERROR_NO_ERROR && res == TRI_ERROR_ARANGO_DOCUMENT_NOT_FOUND) {
// ignore this error
res = TRI_ERROR_NO_ERROR;
}
}
catch (triagens::basics::Exception const& ex) {
res = ex.code();
}
catch (...) {
res = TRI_ERROR_INTERNAL;
}
if (res != TRI_ERROR_NO_ERROR) {
errorMsg = "document removal operation failed: " + string(TRI_errno_string(res));
}
return res;
}
errorMsg = "unexpected marker type " + StringUtils::itoa(type);
return TRI_ERROR_REPLICATION_UNEXPECTED_MARKER;
}
static int restoreDataParser (char const* ptr,
char const* pos,
std::string const& invalidMsg,
bool useRevision,
std::string& errorMsg,
std::string& key,
VPackBuilder& builder,
VPackSlice& doc,
TRI_voc_rid_t& rid,
TRI_replication_operation_e& type) {
builder.clear();
try {
std::string line(ptr, pos);
VPackParser parser(builder);
parser.parse(line);
}
catch (VPackException const&) {
// Could not parse the given string
errorMsg = invalidMsg;
return TRI_ERROR_HTTP_CORRUPTED_JSON;
}
catch (std::exception const&) {
// Could not even build the string
errorMsg = invalidMsg;
return TRI_ERROR_HTTP_CORRUPTED_JSON;
}
catch (...) {
return TRI_ERROR_HTTP_CORRUPTED_JSON;
}
VPackSlice const slice = builder.slice();
if (! slice.isObject()) {
errorMsg = invalidMsg;
return TRI_ERROR_HTTP_CORRUPTED_JSON;
}
type = REPLICATION_INVALID;
for (auto const& pair : VPackObjectIterator(slice)) {
if (! pair.key.isString()) {
errorMsg = invalidMsg;
return TRI_ERROR_HTTP_CORRUPTED_JSON;
}
std::string const attributeName = pair.key.copyString();
if (attributeName == "type") {
if (pair.value.isNumber()) {
type = static_cast<TRI_replication_operation_e>(pair.value.getNumericValue<int>());
}
}
else if (attributeName == "key") {
if (pair.value.isString()) {
key = pair.value.copyString();
}
}
else if (useRevision && attributeName == "rev") {
if (pair.value.isString()) {
rid = StringUtils::uint64(pair.value.copyString());
}
}
else if (attributeName == "data") {
if (pair.value.isObject()) {
doc = pair.value;
}
}
}
if (key.empty()) {
errorMsg = invalidMsg;
return TRI_ERROR_HTTP_BAD_PARAMETER;
}
return TRI_ERROR_NO_ERROR;
}
////////////////////////////////////////////////////////////////////////////////
/// @brief restores the data of a collection TODO MOVE
////////////////////////////////////////////////////////////////////////////////
int RestReplicationHandler::processRestoreDataBatch (triagens::arango::Transaction* trx,
CollectionNameResolver const& resolver,
TRI_transaction_collection_t* trxCollection,
bool useRevision,
bool force,
std::string& errorMsg) {
string const invalidMsg = "received invalid JSON data for collection " +
StringUtils::itoa(trxCollection->_cid);
VPackBuilder builder;
char const* ptr = _request->body();
char const* end = ptr + _request->bodySize();
while (ptr < end) {
char const* pos = strchr(ptr, '\n');
if (pos == nullptr) {
pos = end;
}
else {
*((char*) pos) = '\0';
}
if (pos - ptr > 1) {
// found something
std::string key;
VPackSlice doc;
TRI_voc_rid_t rid;
TRI_replication_operation_e type;
int res = restoreDataParser(ptr, pos, invalidMsg, useRevision,
errorMsg, key, builder, doc, rid, type);
if (res != TRI_ERROR_NO_ERROR) {
return res;
}
res = applyCollectionDumpMarker(trx, resolver, trxCollection, type, (const TRI_voc_key_t) key.c_str(), rid, doc, errorMsg);
if (res != TRI_ERROR_NO_ERROR && ! force) {
return res;
}
}
ptr = pos + 1;
}
return TRI_ERROR_NO_ERROR;
}
////////////////////////////////////////////////////////////////////////////////
/// @brief restores the data of a collection TODO MOVE
////////////////////////////////////////////////////////////////////////////////
int RestReplicationHandler::processRestoreData (CollectionNameResolver const& resolver,
TRI_voc_cid_t cid,
bool useRevision,
bool force,
std::string& errorMsg) {
SingleCollectionWriteTransaction<UINT64_MAX> trx(new StandaloneTransactionContext(), _vocbase, cid);
int res = trx.begin();
if (res != TRI_ERROR_NO_ERROR) {
errorMsg = "unable to start transaction: " + string(TRI_errno_string(res));
return res;
}
TRI_transaction_collection_t* trxCollection = trx.trxCollection();
if (trxCollection == nullptr) {
res = TRI_ERROR_INTERNAL;
errorMsg = "unable to start transaction: " + string(TRI_errno_string(res));
}
else {
// waitForSync disabled here. use for initial replication, too
// TODO: sync at end of trx
trxCollection->_waitForSync = false;
res = processRestoreDataBatch(&trx, resolver, trxCollection, useRevision, force, errorMsg);
}
res = trx.finish(res);
return res;
}
////////////////////////////////////////////////////////////////////////////////
/// @brief restores the data of a collection TODO MOVE
////////////////////////////////////////////////////////////////////////////////
void RestReplicationHandler::handleCommandRestoreData () {
char const* value = _request->value("collection");
if (value == nullptr) {
generateError(HttpResponse::BAD,
TRI_ERROR_HTTP_BAD_PARAMETER,
"invalid collection parameter, not given");
return;
}
CollectionNameResolver resolver(_vocbase);
TRI_voc_cid_t cid = resolver.getCollectionId(value);
if (cid == 0) {
std::string msg = "invalid collection parameter: '";
msg += value;
msg += "', cid is 0";
generateError(HttpResponse::BAD, TRI_ERROR_HTTP_BAD_PARAMETER, msg);
return;
}
bool recycleIds = false;
value = _request->value("recycleIds");
if (value != nullptr) {
recycleIds = StringUtils::boolean(value);
}
bool force = false;
value = _request->value("force");
if (value != nullptr) {
force = StringUtils::boolean(value);
}
std::string errorMsg;
int res = processRestoreData(resolver, cid, recycleIds, force, errorMsg);
if (res != TRI_ERROR_NO_ERROR) {
if (errorMsg.empty()) {
generateError(HttpResponse::responseCode(res), res);
}
else {
generateError(HttpResponse::responseCode(res), res, std::string(TRI_errno_string(res)) + ": " + errorMsg);
}
}
else {
try {
VPackBuilder result;
result.add(VPackValue(VPackValueType::Object));
result.add("result", VPackValue(true));
result.close();
VPackSlice s = result.slice();
generateResult(s);
}
catch (...) {
generateOOMError();
}
}
}
////////////////////////////////////////////////////////////////////////////////
/// @brief restores the data of a collection, coordinator case
////////////////////////////////////////////////////////////////////////////////
void RestReplicationHandler::handleCommandRestoreDataCoordinator () {
char const* name = _request->value("collection");
if (name == nullptr) {
generateError(HttpResponse::BAD,
TRI_ERROR_HTTP_BAD_PARAMETER,
"invalid collection parameter");
return;
}
string dbName = _vocbase->_name;
string errorMsg;
// in a cluster, we only look up by name:
ClusterInfo* ci = ClusterInfo::instance();
std::shared_ptr<CollectionInfo> col = ci->getCollection(dbName, name);
if (col->empty()) {
generateError(HttpResponse::BAD, TRI_ERROR_ARANGO_COLLECTION_NOT_FOUND);
return;
}
// We need to distribute the documents we get over the shards:
auto shardIdsMap = col->shardIds();
std::unordered_map<std::string, size_t> shardTab;
std::vector<std::string> shardIds;
for (auto const& p : *shardIdsMap) {
shardTab.emplace(p.first, shardIds.size());
shardIds.push_back(p.first);
}
std::vector<StringBuffer*> bufs;
for (size_t j = 0; j < shardIds.size(); j++) {
auto b = std::make_unique<StringBuffer>(TRI_UNKNOWN_MEM_ZONE);
bufs.push_back(b.get());
b.release();
}
std::string const invalidMsg = std::string("received invalid JSON data for collection ") + name;
VPackBuilder builder;
char const* ptr = _request->body();
char const* end = ptr + _request->bodySize();
int res = TRI_ERROR_NO_ERROR;
while (ptr < end) {
char const* pos = strchr(ptr, '\n');
if (pos == 0) {
pos = end;
}
else {
*((char*) pos) = '\0';
}
if (pos - ptr > 1) {
// found something
//
std::string key;
VPackSlice doc;
TRI_voc_rid_t rid;
TRI_replication_operation_e type;
res = restoreDataParser(ptr, pos, invalidMsg, false,
errorMsg, key, builder, doc, rid, type);
if (res != TRI_ERROR_NO_ERROR) {
// We might need to clean up buffers
break;
}
if (! doc.isNone() && type != REPLICATION_MARKER_REMOVE) {
ShardID responsibleShard;
bool usesDefaultSharding;
std::unique_ptr<TRI_json_t> tmp(triagens::basics::VelocyPackHelper::velocyPackToJson(doc));
res = ci->getResponsibleShard(col->id_as_string(), tmp.get(), true,
responsibleShard, usesDefaultSharding);
if (res != TRI_ERROR_NO_ERROR) {
errorMsg = "error during determining responsible shard";
res = TRI_ERROR_INTERNAL;
break;
}
else {
auto it2 = shardTab.find(responsibleShard);
if (it2 == shardTab.end()) {
errorMsg = "cannot find responsible shard";
res = TRI_ERROR_INTERNAL;
break;
}
else {
bufs[it2->second]->appendText(ptr, pos-ptr);
bufs[it2->second]->appendText("\n");
}
}
}
else if (type == REPLICATION_MARKER_REMOVE) {
// A remove marker, this has to be appended to all!
for (size_t j = 0; j < bufs.size(); j++) {
bufs[j]->appendText(ptr, pos-ptr);
bufs[j]->appendText("\n");
}
}
else {
// How very strange!
errorMsg = invalidMsg;
res = TRI_ERROR_HTTP_BAD_PARAMETER;
break;
}
}
ptr = pos + 1;
}
if (res == TRI_ERROR_NO_ERROR) {
// Set a few variables needed for our work:
ClusterComm* cc = ClusterComm::instance();
// Send a synchronous request to that shard using ClusterComm:
CoordTransactionID coordTransactionID = TRI_NewTickServer();
char const* value;
string forceopt;
value = _request->value("force");
if (value != nullptr) {
bool force = StringUtils::boolean(value);
if (force) {
forceopt = "&force=true";
}
}
for (auto const& p : *shardIdsMap) {
auto it = shardTab.find(p.first);
if (it == shardTab.end()) {
errorMsg = "cannot find shard";
res = TRI_ERROR_INTERNAL;
}
else {
auto headers = std::make_unique<std::map<std::string, std::string>>();
size_t j = it->second;
auto body = make_shared<std::string const>
(bufs[j]->c_str(), bufs[j]->length());
cc->asyncRequest("", coordTransactionID, "shard:" + p.first,
triagens::rest::HttpRequest::HTTP_REQUEST_PUT,
"/_db/" + StringUtils::urlEncode(dbName) +
"/_api/replication/restore-data?collection=" +
p.first + forceopt, body,
headers, nullptr, 300.0);
}
}
// Now listen to the results:
unsigned int count;
unsigned int nrok = 0;
for (count = (int) (*shardIdsMap).size(); count > 0; count--) {
auto result = cc->wait( "", coordTransactionID, 0, "", 0.0);
if (result.status == CL_COMM_RECEIVED) {
if (result.answer_code == triagens::rest::HttpResponse::OK ||
result.answer_code == triagens::rest::HttpResponse::CREATED) {
VPackOptions options;
options.checkAttributeUniqueness = true;
std::shared_ptr<VPackBuilder> parsedAnswer;
try {
parsedAnswer = result.answer->toVelocyPack(&options);
}
catch (VPackException const& e) {
// Only log this error and try the next doc
LOG_DEBUG("failed to parse json object: '%s'", e.what());
continue;
}
VPackSlice const answer = parsedAnswer->slice();
if (answer.isObject()) {
VPackSlice const result = answer.get("result");
if (result.isBoolean()) {
if (result.getBoolean()) {
nrok++;
}
else {
LOG_ERROR("some shard result not OK");
}
}
else {
VPackSlice const errorMessage = answer.get("errorMessage");
if (errorMessage.isString()) {
errorMsg.append(errorMessage.copyString());
errorMsg.push_back(':');
}
}
}
else {
LOG_ERROR("result body is no object");
}
}
else if (result.answer_code == triagens::rest::HttpResponse::SERVER_ERROR) {
VPackOptions options;
options.checkAttributeUniqueness = true;
std::shared_ptr<VPackBuilder> parsedAnswer;
try {
parsedAnswer = result.answer->toVelocyPack(&options);
}
catch (VPackException const& e) {
// Only log this error and try the next doc
LOG_DEBUG("failed to parse json object: '%s'", e.what());
continue;
}
VPackSlice const answer = parsedAnswer->slice();
if (answer.isObject()) {
VPackSlice const errorMessage = answer.get("errorMessage");
if (errorMessage.isString()) {
errorMsg.append(errorMessage.copyString());
errorMsg.push_back(':');
}
}
}
else {
LOG_ERROR("Bad answer code from shard: %d", result.answer_code);
}
}
else {
LOG_ERROR("Bad status from DBServer: %d, msg: %s, shard: %s",
result.status, result.errorMessage.c_str(),
result.shardID.c_str());
if (result.status >= CL_COMM_SENT) {
if (result.result.get() == nullptr) {
LOG_ERROR("result.result is nullptr");
}
else {
auto msg = result.result->getResultTypeMessage();
LOG_ERROR("Bad HTTP return code: %d, msg: %s",
result.result->getHttpReturnCode(), msg.c_str());
auto body = result.result->getBodyVelocyPack();
msg = body->toString();
LOG_ERROR("Body: %s", msg.c_str());
}
}
}
}
if (nrok != shardIdsMap->size()) {
errorMsg.append("some shard(s) produced error(s)");
res = TRI_ERROR_INTERNAL;
}
}
// Free all the string buffers:
for (size_t j = 0; j < shardIds.size(); j++) {
delete bufs[j];
}
if (res != TRI_ERROR_NO_ERROR) {
generateError(HttpResponse::responseCode(res), res, errorMsg);
return;
}
try {
VPackBuilder result;
result.openObject();
result.add("result", VPackValue(true));
result.close();
generateResult(result.slice());
}
catch (...) {
generateOOMError();
}
}
////////////////////////////////////////////////////////////////////////////////
/// @brief produce list of keys for a specific collection
////////////////////////////////////////////////////////////////////////////////
void RestReplicationHandler::handleCommandCreateKeys () {
char const* collection = _request->value("collection");
if (collection == nullptr) {
generateError(HttpResponse::BAD,
TRI_ERROR_HTTP_BAD_PARAMETER,
"invalid collection parameter");
return;
}
TRI_voc_tick_t tickEnd = UINT64_MAX;
// determine end tick for keys
bool found;
char const* value = _request->value("to", found);
if (found) {
tickEnd = static_cast<TRI_voc_tick_t>(StringUtils::uint64(value));
}
TRI_vocbase_col_t* c = TRI_LookupCollectionByNameVocBase(_vocbase, collection);
if (c == nullptr) {
generateError(HttpResponse::NOT_FOUND, TRI_ERROR_ARANGO_COLLECTION_NOT_FOUND);
return;
}
int res = TRI_ERROR_NO_ERROR;
try {
triagens::arango::CollectionGuard guard(_vocbase, c->_cid, false);
TRI_vocbase_col_t* col = guard.collection();
TRI_ASSERT(col != nullptr);
// turn off the compaction for the collection
TRI_voc_tick_t id;
res = TRI_InsertBlockerCompactorVocBase(_vocbase, 1200.0, &id);
if (res != TRI_ERROR_NO_ERROR) {
THROW_ARANGO_EXCEPTION(res);
}
// initialize a container with the keys
auto keys = std::make_unique<CollectionKeys>(_vocbase, col->_name, id, 300.0);
std::string const idString(std::to_string(keys->id()));
keys->create(tickEnd);
size_t const count = keys->count();
auto keysRepository = static_cast<triagens::arango::CollectionKeysRepository*>(_vocbase->_collectionKeys);
try {
keysRepository->store(keys.get());
keys.release();
}
catch (...) {
throw;
}
VPackBuilder result;
result.add(VPackValue(VPackValueType::Object));
result.add("id", VPackValue(idString));
result.add("count", VPackValue(count));
result.close();
VPackSlice s = result.slice();
generateResult(s);
}
catch (triagens::basics::Exception const& ex) {
res = ex.code();
}
catch (...) {
res = TRI_ERROR_INTERNAL;
}
if (res != TRI_ERROR_NO_ERROR) {
generateError(HttpResponse::responseCode(res), res);
}
}
////////////////////////////////////////////////////////////////////////////////
/// @brief returns all key ranges
////////////////////////////////////////////////////////////////////////////////
void RestReplicationHandler::handleCommandGetKeys () {
std::vector<std::string> const& suffix = _request->suffix();
if (suffix.size() != 2) {
generateError(HttpResponse::BAD,
TRI_ERROR_HTTP_BAD_PARAMETER,
"expecting GET /_api/replication/keys/<keys-id>");
return;
}
static TRI_voc_tick_t const DefaultChunkSize = 5000;
TRI_voc_tick_t chunkSize = DefaultChunkSize;
// determine chunk size
bool found;
char const* value = _request->value("chunkSize", found);
if (found) {
chunkSize = static_cast<TRI_voc_tick_t>(StringUtils::uint64(value));
if (chunkSize < 100) {
chunkSize = DefaultChunkSize;
}
else if (chunkSize > 20000) {
chunkSize = 20000;
}
}
std::string const& id = suffix[1];
int res = TRI_ERROR_NO_ERROR;
try {
auto keysRepository = static_cast<triagens::arango::CollectionKeysRepository*>(_vocbase->_collectionKeys);
TRI_ASSERT(keysRepository != nullptr);
auto collectionKeysId = static_cast<triagens::arango::CollectionKeysId>(triagens::basics::StringUtils::uint64(id));
auto collectionKeys = keysRepository->find(collectionKeysId);
if (collectionKeys == nullptr) {
generateError(HttpResponse::responseCode(TRI_ERROR_CURSOR_NOT_FOUND), TRI_ERROR_CURSOR_NOT_FOUND);
return;
}
try {
VPackBuilder b;
b.add(VPackValue(VPackValueType::Array));
TRI_voc_tick_t max = static_cast<TRI_voc_tick_t>(collectionKeys->count());
for (TRI_voc_tick_t from = 0; from < max; from += chunkSize) {
TRI_voc_tick_t to = from + chunkSize;
if (to > max) {
to = max;
}
auto result = collectionKeys->hashChunk(from, to);
// Add a chunk
b.add(VPackValue(VPackValueType::Object));
b.add("low", VPackValue(std::get<0>(result)));
b.add("high", VPackValue(std::get<1>(result)));
b.add("hash", VPackValue(std::to_string(std::get<2>(result))));
b.close();
}
b.close();
collectionKeys->release();
VPackSlice s = b.slice();
generateResult(s);
}
catch (...) {
collectionKeys->release();
throw;
}
}
catch (triagens::basics::Exception const& ex) {
res = ex.code();
}
catch (...) {
res = TRI_ERROR_INTERNAL;
}
if (res != TRI_ERROR_NO_ERROR) {
generateError(HttpResponse::responseCode(res), res);
}
}
////////////////////////////////////////////////////////////////////////////////
/// @brief returns date for a key range
////////////////////////////////////////////////////////////////////////////////
void RestReplicationHandler::handleCommandFetchKeys () {
std::vector<std::string> const& suffix = _request->suffix();
if (suffix.size() != 2) {
generateError(HttpResponse::BAD,
TRI_ERROR_HTTP_BAD_PARAMETER,
"expecting PUT /_api/replication/keys/<keys-id>");
return;
}
static TRI_voc_tick_t const DefaultChunkSize = 5000;
TRI_voc_tick_t chunkSize = DefaultChunkSize;
// determine chunk size
bool found;
char const* value = _request->value("chunkSize", found);
if (found) {
chunkSize = static_cast<TRI_voc_tick_t>(StringUtils::uint64(value));
if (chunkSize < 100) {
chunkSize = DefaultChunkSize;
}
else if (chunkSize > 20000) {
chunkSize = 20000;
}
}
value = _request->value("chunk", found);
size_t chunk = 0;
if (found) {
chunk = static_cast<size_t>(StringUtils::uint64(value));
}
value = _request->value("type", found);
bool keys = true;
if (strcmp(value, "keys") == 0) {
keys = true;
}
else if (strcmp(value, "docs") == 0) {
keys = false;
}
else {
generateError(HttpResponse::BAD,
TRI_ERROR_HTTP_BAD_PARAMETER,
"invalid 'type' value");
return;
}
std::string const& id = suffix[1];
int res = TRI_ERROR_NO_ERROR;
try {
auto keysRepository = static_cast<triagens::arango::CollectionKeysRepository*>(_vocbase->_collectionKeys);
TRI_ASSERT(keysRepository != nullptr);
auto collectionKeysId = static_cast<triagens::arango::CollectionKeysId>(triagens::basics::StringUtils::uint64(id));
auto collectionKeys = keysRepository->find(collectionKeysId);
if (collectionKeys == nullptr) {
generateError(HttpResponse::responseCode(TRI_ERROR_CURSOR_NOT_FOUND), TRI_ERROR_CURSOR_NOT_FOUND);
return;
}
try {
triagens::basics::Json json(triagens::basics::Json::Array, chunkSize);
if (keys) {
collectionKeys->dumpKeys(json, chunk, chunkSize);
}
else {
bool success;
VPackOptions options;
std::shared_ptr<VPackBuilder> parsedIds = parseVelocyPackBody(&options, success);
if (! success) {
collectionKeys->release();
return;
}
collectionKeys->dumpDocs(json, chunk, chunkSize, parsedIds->slice());
}
collectionKeys->release();
generateResult(HttpResponse::OK, json.json());
}
catch (...) {
collectionKeys->release();
throw;
}
}
catch (triagens::basics::Exception const& ex) {
res = ex.code();
}
catch (...) {
res = TRI_ERROR_INTERNAL;
}
if (res != TRI_ERROR_NO_ERROR) {
generateError(HttpResponse::responseCode(res), res);
}
}
void RestReplicationHandler::handleCommandRemoveKeys () {
std::vector<std::string> const& suffix = _request->suffix();
if (suffix.size() != 2) {
generateError(HttpResponse::BAD,
TRI_ERROR_HTTP_BAD_PARAMETER,
"expecting DELETE /_api/replication/keys/<keys-id>");
return;
}
std::string const& id = suffix[1];
auto keys = static_cast<triagens::arango::CollectionKeysRepository*>(_vocbase->_collectionKeys);
TRI_ASSERT(keys != nullptr);
auto collectionKeysId = static_cast<triagens::arango::CollectionKeysId>(triagens::basics::StringUtils::uint64(id));
bool found = keys->remove(collectionKeysId);
if (! found) {
generateError(HttpResponse::NOT_FOUND, TRI_ERROR_CURSOR_NOT_FOUND);
return;
}
createResponse(HttpResponse::ACCEPTED);
_response->setContentType("application/json; charset=utf-8");
triagens::basics::Json json(triagens::basics::Json::Object);
json.set("id", triagens::basics::Json(id)); // id as a string!
json.set("error", triagens::basics::Json(false));
json.set("code", triagens::basics::Json(static_cast<double>(_response->responseCode())));
json.dump(_response->body());
}
////////////////////////////////////////////////////////////////////////////////
/// @startDocuBlock JSF_get_api_replication_dump
/// @brief returns the whole content of one collection
///
/// @RESTHEADER{GET /_api/replication/dump, Return data of a collection}
///
/// @RESTQUERYPARAMETERS
///
/// @RESTQUERYPARAM{collection,string,required}
/// The name or id of the collection to dump.
///
/// @RESTQUERYPARAM{from,number,optional}
/// Lower bound tick value for results.
///
/// @RESTQUERYPARAM{to,number,optional}
/// Upper bound tick value for results.
///
/// @RESTQUERYPARAM{chunkSize,number,optional}
/// Approximate maximum size of the returned result.
///
/// @RESTQUERYPARAM{includeSystem,boolean,optional}
/// Include system collections in the result. The default value is *true*.
///
/// @RESTQUERYPARAM{failOnUnknown,boolean,optional}
/// Produce an error when dumped edges refer to now-unknown collections.
///
/// @RESTQUERYPARAM{ticks,boolean,optional}
/// Whether or not to include tick values in the dump. The default value is *true*.
///
/// @RESTQUERYPARAM{flush,boolean,optional}
/// Whether or not to flush the WAL before dumping. The default value is *true*.
///
/// @RESTDESCRIPTION
/// Returns the data from the collection for the requested range.
///
/// When the *from* query parameter is not used, collection events are returned from
/// the beginning. When the *from* parameter is used, the result will only contain
/// collection entries which have higher tick values than the specified *from* value
/// (note: the log entry with a tick value equal to *from* will be excluded).
///
/// The *to* query parameter can be used to optionally restrict the upper bound of
/// the result to a certain tick value. If used, the result will only contain
/// collection entries with tick values up to (including) *to*.
///
/// The *chunkSize* query parameter can be used to control the size of the result.
/// It must be specified in bytes. The *chunkSize* value will only be honored
/// approximately. Otherwise a too low *chunkSize* value could cause the server
/// to not be able to put just one entry into the result and return it.
/// Therefore, the *chunkSize* value will only be consulted after an entry has
/// been written into the result. If the result size is then bigger than
/// *chunkSize*, the server will respond with as many entries as there are
/// in the response already. If the result size is still smaller than *chunkSize*,
/// the server will try to return more data if there's more data left to return.
///
/// If *chunkSize* is not specified, some server-side default value will be used.
///
/// The *Content-Type* of the result is *application/x-arango-dump*. This is an
/// easy-to-process format, with all entries going onto separate lines in the
/// response body.
///
/// Each line itself is a JSON object, with at least the following attributes:
///
/// - *tick*: the operation's tick attribute
///
/// - *key*: the key of the document/edge or the key used in the deletion operation
///
/// - *rev*: the revision id of the document/edge or the deletion operation
///
/// - *data*: the actual document/edge data for types 2300 and 2301. The full
/// document/edge data will be returned even for updates.
///
/// - *type*: the type of entry. Possible values for *type* are:
///
/// - 2300: document insertion/update
///
/// - 2301: edge insertion/update
///
/// - 2302: document/edge deletion
///
/// **Note**: there will be no distinction between inserts and updates when calling this method.
///
/// @RESTRETURNCODES
///
/// @RESTRETURNCODE{200}
/// is returned if the request was executed successfully and data was returned. The header
/// `x-arango-replication-lastincluded` is set to the tick of the last document returned.
///
/// @RESTRETURNCODE{204}
/// is returned if the request was executed successfully, but there was no content available.
/// The header `x-arango-replication-lastincluded` is `0` in this case.
///
/// @RESTRETURNCODE{400}
/// is returned if either the *from* or *to* values are invalid.
///
/// @RESTRETURNCODE{404}
/// is returned when the collection could not be found.
///
/// @RESTRETURNCODE{405}
/// is returned when an invalid HTTP method is used.
///
/// @RESTRETURNCODE{500}
/// is returned if an error occurred while assembling the response.
///
/// @EXAMPLES
///
/// Empty collection:
///
/// @EXAMPLE_ARANGOSH_RUN{RestReplicationDumpEmpty}
/// db._drop("testCollection");
/// var c = db._create("testCollection");
/// var url = "/_api/replication/dump?collection=" + c.name();
/// var response = logCurlRequest('GET', url);
///
/// assert(response.code === 204);
/// logRawResponse(response);
///
/// c.drop();
/// @END_EXAMPLE_ARANGOSH_RUN
///
/// Non-empty collection:
///
/// @EXAMPLE_ARANGOSH_RUN{RestReplicationDump}
/// db._drop("testCollection");
/// var c = db._create("testCollection");
/// c.save({ "test" : true, "a" : "abc", "_key" : "abcdef" });
/// c.save({ "b" : 1, "c" : false, "_key" : "123456" });
/// c.update("123456", { "d" : "additional value" });
/// c.save({ "_key": "foobar" });
/// c.remove("foobar");
/// c.remove("abcdef");
///
/// var url = "/_api/replication/dump?collection=" + c.name();
/// var response = logCurlRequest('GET', url);
///
/// assert(response.code === 200);
/// logRawResponse(response);
///
/// c.drop();
/// @END_EXAMPLE_ARANGOSH_RUN
/// @endDocuBlock
////////////////////////////////////////////////////////////////////////////////
void RestReplicationHandler::handleCommandDump () {
char const* collection = _request->value("collection");
if (collection == nullptr) {
generateError(HttpResponse::BAD,
TRI_ERROR_HTTP_BAD_PARAMETER,
"invalid collection parameter");
return;
}
// determine start tick for dump
TRI_voc_tick_t tickStart = 0;
TRI_voc_tick_t tickEnd = static_cast<TRI_voc_tick_t>(UINT64_MAX);
bool flush = true; // flush WAL before dumping?
bool withTicks = true;
bool translateCollectionIds = true;
bool failOnUnknown = false;
uint64_t flushWait = 0;
bool found;
char const* value;
// determine flush WAL value
value = _request->value("flush", found);
if (found) {
flush = StringUtils::boolean(value);
}
// fail on unknown collection names referenced in edges
value = _request->value("failOnUnknown", found);
if (found) {
failOnUnknown = StringUtils::boolean(value);
}
// determine flush WAL wait time value
value = _request->value("flushWait", found);
if (found) {
flushWait = StringUtils::uint64(value);
if (flushWait > 60) {
flushWait = 60;
}
}
// determine start tick for dump
value = _request->value("from", found);
if (found) {
tickStart = (TRI_voc_tick_t) StringUtils::uint64(value);
}
// determine end tick for dump
value = _request->value("to", found);
if (found) {
tickEnd = (TRI_voc_tick_t) StringUtils::uint64(value);
}
if (tickStart > tickEnd || tickEnd == 0) {
generateError(HttpResponse::BAD,
TRI_ERROR_HTTP_BAD_PARAMETER,
"invalid from/to values");
return;
}
bool includeSystem = true;
value = _request->value("includeSystem", found);
if (found) {
includeSystem = StringUtils::boolean(value);
}
value = _request->value("ticks", found);
if (found) {
withTicks = StringUtils::boolean(value);
}
value = _request->value("translateIds", found);
if (found) {
translateCollectionIds = StringUtils::boolean(value);
}
TRI_vocbase_col_t* c = TRI_LookupCollectionByNameVocBase(_vocbase, collection);
if (c == nullptr) {
generateError(HttpResponse::NOT_FOUND, TRI_ERROR_ARANGO_COLLECTION_NOT_FOUND);
return;
}
LOG_TRACE("requested collection dump for collection '%s', tickStart: %llu, tickEnd: %llu",
collection,
(unsigned long long) tickStart,
(unsigned long long) tickEnd);
int res = TRI_ERROR_NO_ERROR;
try {
if (flush) {
triagens::wal::LogfileManager::instance()->flush(true, true, false);
// additionally wait for the collector
if (flushWait > 0) {
triagens::wal::LogfileManager::instance()->waitForCollectorQueue(c->_cid, static_cast<double>(flushWait));
}
}
triagens::arango::CollectionGuard guard(_vocbase, c->_cid, false);
TRI_vocbase_col_t* col = guard.collection();
TRI_ASSERT(col != nullptr);
// initialize the dump container
TRI_replication_dump_t dump(_vocbase, (size_t) determineChunkSize(), includeSystem);
res = TRI_DumpCollectionReplication(&dump, col, tickStart, tickEnd, withTicks, translateCollectionIds, failOnUnknown);
if (res != TRI_ERROR_NO_ERROR) {
THROW_ARANGO_EXCEPTION(res);
}
// generate the result
size_t const length = TRI_LengthStringBuffer(dump._buffer);
if (length == 0) {
createResponse(HttpResponse::NO_CONTENT);
}
else {
createResponse(HttpResponse::OK);
}
_response->setContentType("application/x-arango-dump; charset=utf-8");
// set headers
_response->setHeader(TRI_REPLICATION_HEADER_CHECKMORE,
strlen(TRI_REPLICATION_HEADER_CHECKMORE),
((dump._hasMore || dump._bufferFull) ? "true" : "false"));
_response->setHeader(TRI_REPLICATION_HEADER_LASTINCLUDED,
strlen(TRI_REPLICATION_HEADER_LASTINCLUDED),
StringUtils::itoa(dump._lastFoundTick));
// transfer ownership of the buffer contents
_response->body().set(dump._buffer);
// avoid double freeing
TRI_StealStringBuffer(dump._buffer);
}
catch (triagens::basics::Exception const& ex) {
res = ex.code();
}
catch (...) {
res = TRI_ERROR_INTERNAL;
}
if (res != TRI_ERROR_NO_ERROR) {
generateError(HttpResponse::responseCode(res), res);
}
}
////////////////////////////////////////////////////////////////////////////////
/// @startDocuBlock JSF_put_api_replication_makeSlave
/// @brief Changes role to slave
///
/// @RESTHEADER{PUT /_api/replication/make-slave, Turn the server into a slave of another}
///
/// @RESTBODYPARAM{endpoint,string,required,string}
/// the master endpoint to connect to (e.g. "tcp://192.168.173.13:8529").
///
/// @RESTBODYPARAM{database,string,required,string}
/// the database name on the master (if not specified, defaults to the
/// name of the local current database).
///
/// @RESTBODYPARAM{username,string,optional,string}
/// an optional ArangoDB username to use when connecting to the master.
///
/// @RESTBODYPARAM{password,string,required,string}
/// the password to use when connecting to the master.
///
/// @RESTBODYPARAM{includeSystem,boolean,required,}
/// whether or not system collection operations will be applied
///
/// @RESTBODYPARAM{restrictType,string,optional,string}
/// an optional string value for collection filtering. When
/// specified, the allowed values are *include* or *exclude*.
///
/// @RESTBODYPARAM{restrictCollections,array,optional,string}
/// an optional array of collections for use with *restrictType*.
/// If *restrictType* is *include*, only the specified collections
/// will be sychronised. If *restrictType* is *exclude*, all but the specified
/// collections will be synchronized.
///
/// @RESTBODYPARAM{maxConnectRetries,integer,optional,int64}
/// the maximum number of connection attempts the applier
/// will make in a row. If the applier cannot establish a connection to the
/// endpoint in this number of attempts, it will stop itself.
///
/// @RESTBODYPARAM{connectTimeout,integer,optional,int64}
/// the timeout (in seconds) when attempting to connect to the
/// endpoint. This value is used for each connection attempt.
///
/// @RESTBODYPARAM{requestTimeout,integer,optional,int64}
/// the timeout (in seconds) for individual requests to the endpoint.
///
/// @RESTBODYPARAM{chunkSize,integer,optional,int64}
/// the requested maximum size for log transfer packets that
/// is used when the endpoint is contacted.
///
/// @RESTBODYPARAM{adaptivePolling,boolean,optional,}
/// whether or not the replication applier will use adaptive polling.
///
/// @RESTBODYPARAM{autoResync,boolean,optional,}
/// whether or not the slave should perform an automatic resynchronization with
/// the master in case the master cannot serve log data requested by the slave,
/// or when the replication is started and no tick value can be found.
///
/// @RESTBODYPARAM{autoResyncRetries,integer,optional,int64}
/// number of resynchronization retries that will be performed in a row when
/// automatic resynchronization is enabled and kicks in. Setting this to *0* will
/// effectively disable *autoResync*. Setting it to some other value will limit
/// the number of retries that are performed. This helps preventing endless retries
/// in case resynchronizations always fail.
///
/// @RESTBODYPARAM{initialSyncMaxWaitTime,integer,optional,int64}
/// the maximum wait time (in seconds) that the initial synchronization will
/// wait for a response from the master when fetching initial collection data.
/// This wait time can be used to control after what time the initial synchronization
/// will give up waiting for a response and fail. This value is relevant even
/// for continuous replication when *autoResync* is set to *true* because this
/// may re-start the initial synchronization when the master cannot provide
/// log data the slave requires.
/// This value will be ignored if set to *0*.
///
/// @RESTBODYPARAM{connectionRetryWaitTime,integer,optional,int64}
/// the time (in seconds) that the applier will intentionally idle before
/// it retries connecting to the master in case of connection problems.
/// This value will be ignored if set to *0*.
///
/// @RESTBODYPARAM{idleMinWaitTime,integer,optional,int64}
/// the minimum wait time (in seconds) that the applier will intentionally idle
/// before fetching more log data from the master in case the master has
/// already sent all its log data. This wait time can be used to control the
/// frequency with which the replication applier sends HTTP log fetch requests
/// to the master in case there is no write activity on the master.
/// This value will be ignored if set to *0*.
///
/// @RESTBODYPARAM{idleMaxWaitTime,integer,optional,int64}
/// the maximum wait time (in seconds) that the applier will intentionally idle
/// before fetching more log data from the master in case the master has
/// already sent all its log data and there have been previous log fetch attempts
/// that resulted in no more log data. This wait time can be used to control the
/// maximum frequency with which the replication applier sends HTTP log fetch
/// requests to the master in case there is no write activity on the master for
/// longer periods. This configuration value will only be used if the option
/// *adaptivePolling* is set to *true*.
/// This value will be ignored if set to *0*.
///
/// @RESTBODYPARAM{requireFromPresent,boolean,optional,}
/// if set to *true*, then the replication applier will check
/// at start of its continuous replication if the start tick from the dump phase
/// is still present on the master. If not, then there would be data loss. If
/// *requireFromPresent* is *true*, the replication applier will abort with an
/// appropriate error message. If set to *false*, then the replication applier will
/// still start, and ignore the data loss.
///
/// @RESTBODYPARAM{verbose,boolean,optional,}
/// if set to *true*, then a log line will be emitted for all operations
/// performed by the replication applier. This should be used for debugging replication
/// problems only.
///
/// @RESTDESCRIPTION
/// Starts a full data synchronization from a remote endpoint into the local ArangoDB
/// database and afterwards starts the continuous replication.
/// The operation works on a per-database level.
///
/// All local database data will be removed prior to the synchronization.
///
/// In case of success, the body of the response is a JSON object with the following
/// attributes:
///
/// - *state*: a JSON object with the following sub-attributes:
///
/// - *running*: whether or not the applier is active and running
///
/// - *lastAppliedContinuousTick*: the last tick value from the continuous
/// replication log the applier has applied.
///
/// - *lastProcessedContinuousTick*: the last tick value from the continuous
/// replication log the applier has processed.
///
/// Regularly, the last applied and last processed tick values should be
/// identical. For transactional operations, the replication applier will first
/// process incoming log events before applying them, so the processed tick
/// value might be higher than the applied tick value. This will be the case
/// until the applier encounters the *transaction commit* log event for the
/// transaction.
///
/// - *lastAvailableContinuousTick*: the last tick value the logger server can
/// provide.
///
/// - *time*: the time on the applier server.
///
/// - *totalRequests*: the total number of requests the applier has made to the
/// endpoint.
///
/// - *totalFailedConnects*: the total number of failed connection attempts the
/// applier has made.
///
/// - *totalEvents*: the total number of log events the applier has processed.
///
/// - *totalOperationsExcluded*: the total number of log events excluded because
/// of *restrictCollections*.
///
/// - *progress*: a JSON object with details about the replication applier progress.
/// It contains the following sub-attributes if there is progress to report:
///
/// - *message*: a textual description of the progress
///
/// - *time*: the date and time the progress was logged
///
/// - *failedConnects*: the current number of failed connection attempts
///
/// - *lastError*: a JSON object with details about the last error that happened on
/// the applier. It contains the following sub-attributes if there was an error:
///
/// - *errorNum*: a numerical error code
///
/// - *errorMessage*: a textual error description
///
/// - *time*: the date and time the error occurred
///
/// In case no error has occurred, *lastError* will be empty.
///
/// - *server*: a JSON object with the following sub-attributes:
///
/// - *version*: the applier server's version
///
/// - *serverId*: the applier server's id
///
/// - *endpoint*: the endpoint the applier is connected to (if applier is
/// active) or will connect to (if applier is currently inactive)
///
/// - *database*: the name of the database the applier is connected to (if applier is
/// active) or will connect to (if applier is currently inactive)
///
/// WARNING: calling this method will sychronize data from the collections found
/// on the remote master to the local ArangoDB database. All data in the local
/// collections will be purged and replaced with data from the master.
///
/// Use with caution!
///
/// Please also keep in mind that this command may take a long time to complete
/// and return. This is because it will first do a full data synchronization with
/// the master, which will take time roughly proportional to the amount of data.
///
/// **Note**: this method is not supported on a coordinator in a cluster.
///
/// @RESTRETURNCODES
///
/// @RESTRETURNCODE{200}
/// is returned if the request was executed successfully.
///
/// @RESTRETURNCODE{400}
/// is returned if the configuration is incomplete or malformed.
///
/// @RESTRETURNCODE{405}
/// is returned when an invalid HTTP method is used.
///
/// @RESTRETURNCODE{500}
/// is returned if an error occurred during sychronization or when starting the
/// continuous replication.
///
/// @RESTRETURNCODE{501}
/// is returned when this operation is called on a coordinator in a cluster.
/// @endDocuBlock
////////////////////////////////////////////////////////////////////////////////
void RestReplicationHandler::handleCommandMakeSlave () {
bool success;
VPackOptions options;
std::shared_ptr<VPackBuilder> parsedBody = parseVelocyPackBody(&options, success);
if (! success) {
generateError(HttpResponse::BAD, TRI_ERROR_HTTP_BAD_PARAMETER);
return;
}
VPackSlice const body = parsedBody->slice();
std::string const endpoint = VelocyPackHelper::getStringValue(body, "endpoint", "");
if (endpoint.empty()) {
generateError(HttpResponse::BAD, TRI_ERROR_HTTP_BAD_PARAMETER, "<endpoint> must be a valid endpoint");
return;
}
std::string const database = VelocyPackHelper::getStringValue(body, "database", _vocbase->_name);
std::string const username = VelocyPackHelper::getStringValue(body, "username", "");
std::string const password = VelocyPackHelper::getStringValue(body, "password", "");
std::string const restrictType = VelocyPackHelper::getStringValue(body, "restrictType", "");
// initialize some defaults to copy from
TRI_replication_applier_configuration_t defaults;
TRI_InitConfigurationReplicationApplier(&defaults);
// initialize target configuration
TRI_replication_applier_configuration_t config;
TRI_InitConfigurationReplicationApplier(&config);
config._endpoint = TRI_DuplicateString2Z(TRI_CORE_MEM_ZONE, endpoint.c_str(), endpoint.size());
config._database = TRI_DuplicateString2Z(TRI_CORE_MEM_ZONE, database.c_str(), database.size());
config._username = TRI_DuplicateString2Z(TRI_CORE_MEM_ZONE, username.c_str(), username.size());
config._password = TRI_DuplicateString2Z(TRI_CORE_MEM_ZONE, password.c_str(), password.size());
config._includeSystem = VelocyPackHelper::getBooleanValue(body, "includeSystem", true);
config._requestTimeout = VelocyPackHelper::getNumericValue<double>(body, "requestTimeout", defaults._requestTimeout);
config._connectTimeout = VelocyPackHelper::getNumericValue<double>(body, "connectTimeout", defaults._connectTimeout);
config._ignoreErrors = VelocyPackHelper::getNumericValue<uint64_t>(body, "ignoreErrors", defaults._ignoreErrors);
config._maxConnectRetries = VelocyPackHelper::getNumericValue<uint64_t>(body, "maxConnectRetries", defaults._maxConnectRetries);
config._sslProtocol = VelocyPackHelper::getNumericValue<uint32_t>(body, "sslProtocol", defaults._sslProtocol);
config._chunkSize = VelocyPackHelper::getNumericValue<uint64_t>(body, "chunkSize", defaults._chunkSize);
config._autoStart = true;
config._adaptivePolling = VelocyPackHelper::getBooleanValue(body, "adaptivePolling", defaults._adaptivePolling);
config._autoResync = VelocyPackHelper::getBooleanValue(body, "autoResync", defaults._autoResync);
config._verbose = VelocyPackHelper::getBooleanValue(body, "verbose", defaults._verbose);
config._requireFromPresent = VelocyPackHelper::getBooleanValue(body, "requireFromPresent", defaults._requireFromPresent);
config._restrictType = VelocyPackHelper::getStringValue(body, "restrictType", defaults._restrictType);
config._connectionRetryWaitTime = static_cast<uint64_t>(1000.0 * 1000.0 * VelocyPackHelper::getNumericValue<double>(body, "connectionRetryWaitTime", static_cast<double>(defaults._connectionRetryWaitTime) / (1000.0 * 1000.0)));
config._initialSyncMaxWaitTime = static_cast<uint64_t>(1000.0 * 1000.0 * VelocyPackHelper::getNumericValue<double>(body, "initialSyncMaxWaitTime", static_cast<double>(defaults._initialSyncMaxWaitTime) / (1000.0 * 1000.0)));
config._idleMinWaitTime = static_cast<uint64_t>(1000.0 * 1000.0 * VelocyPackHelper::getNumericValue<double>(body, "idleMinWaitTime", static_cast<double>(defaults._idleMinWaitTime) / (1000.0 * 1000.0)));
config._idleMaxWaitTime = static_cast<uint64_t>(1000.0 * 1000.0 * VelocyPackHelper::getNumericValue<double>(body, "idleMaxWaitTime", static_cast<double>(defaults._idleMaxWaitTime) / (1000.0 * 1000.0)));
config._autoResyncRetries = VelocyPackHelper::getNumericValue<uint64_t>(body, "autoResyncRetries", defaults._autoResyncRetries);
VPackSlice const restriction = body.get("restrictCollections");
if (restriction.isArray()) {
VPackValueLength const n = restriction.length();
for (VPackValueLength i = 0; i < n; ++i) {
VPackSlice const cname = restriction.at(i);
if (cname.isString()) {
config._restrictCollections.emplace(cname.copyString(), true);
}
}
}
// now the configuration is complete
if ((restrictType.empty() && ! config._restrictCollections.empty()) ||
(! restrictType.empty() && config._restrictCollections.empty()) ||
(! restrictType.empty() && restrictType != "include" && restrictType != "exclude")) {
generateError(HttpResponse::BAD, TRI_ERROR_HTTP_BAD_PARAMETER, "invalid value for <restrictCollections> or <restrictType>");
return;
}
// forget about any existing replication applier configuration
int res = _vocbase->_replicationApplier->forget();
if (res != TRI_ERROR_NO_ERROR) {
generateError(HttpResponse::responseCode(res), res);
return;
}
// start initial synchronization
TRI_voc_tick_t lastLogTick = 0;
string errorMsg = "";
{
InitialSyncer syncer(_vocbase, &config, config._restrictCollections, restrictType, false);
res = TRI_ERROR_NO_ERROR;
try {
res = syncer.run(errorMsg, false);
}
catch (...) {
errorMsg = "caught an exception";
res = TRI_ERROR_INTERNAL;
}
lastLogTick = syncer.getLastLogTick();
}
if (res != TRI_ERROR_NO_ERROR) {
generateError(HttpResponse::responseCode(res), res, errorMsg);
return;
}
res = TRI_ConfigureReplicationApplier(_vocbase->_replicationApplier, &config);
if (res != TRI_ERROR_NO_ERROR) {
generateError(HttpResponse::responseCode(res), res);
return;
}
res =_vocbase->_replicationApplier->start(lastLogTick, true);
if (res != TRI_ERROR_NO_ERROR) {
generateError(HttpResponse::responseCode(res), res);
return;
}
try {
std::shared_ptr<VPackBuilder> result = _vocbase->_replicationApplier->toVelocyPack();
generateResult(result->slice());
}
catch (...) {
generateError(HttpResponse::SERVER_ERROR, TRI_ERROR_OUT_OF_MEMORY);
return;
}
}
////////////////////////////////////////////////////////////////////////////////
/// @startDocuBlock JSF_put_api_replication_synchronize
/// @brief start a replication
///
/// @RESTHEADER{PUT /_api/replication/sync, Synchronize data from a remote endpoint}
///
/// @RESTBODYPARAM{endpoint,string,required,string}
/// the master endpoint to connect to (e.g. "tcp://192.168.173.13:8529").
///
/// @RESTBODYPARAM{database,string,optional,string}
/// the database name on the master (if not specified, defaults to the
/// name of the local current database).
///
/// @RESTBODYPARAM{username,string,optional,string}
/// an optional ArangoDB username to use when connecting to the endpoint.
///
/// @RESTBODYPARAM{password,string,required,string}
/// the password to use when connecting to the endpoint.
///
/// @RESTBODYPARAM{includeSystem,boolean,optional,}
/// whether or not system collection operations will be applied
///
/// @RESTBODYPARAM{incremental,boolean,optional,}
/// if set to *true*, then an incremental synchronization method will be used
/// for synchronizing data in collections. This method is useful when
/// collections already exist locally, and only the remaining differences need
/// to be transferred from the remote endpoint. In this case, the incremental
/// synchronization can be faster than a full synchronization.
/// The default value is *false*, meaning that the complete data from the remote
/// collection will be transferred.
///
/// @RESTBODYPARAM{restrictType,string,optional,string}
/// an optional string value for collection filtering. When
/// specified, the allowed values are *include* or *exclude*.
///
/// @RESTBODYPARAM{restrictCollections,array,optional,string}
/// an optional array of collections for use with
/// *restrictType*. If *restrictType* is *include*, only the specified collections
/// will be sychronised. If *restrictType* is *exclude*, all but the specified
/// collections will be synchronized.
///
/// @RESTBODYPARAM{initialSyncMaxWaitTime,integer,optional,int64}
/// the maximum wait time (in seconds) that the initial synchronization will
/// wait for a response from the master when fetching initial collection data.
/// This wait time can be used to control after what time the initial synchronization
/// will give up waiting for a response and fail.
/// This value will be ignored if set to *0*.
///
/// @RESTDESCRIPTION
/// Starts a full data synchronization from a remote endpoint into the local
/// ArangoDB database.
///
/// The *sync* method can be used by replication clients to connect an ArangoDB database
/// to a remote endpoint, fetch the remote list of collections and indexes, and collection
/// data. It will thus create a local backup of the state of data at the remote ArangoDB
/// database. *sync* works on a per-database level.
///
/// *sync* will first fetch the list of collections and indexes from the remote endpoint.
/// It does so by calling the *inventory* API of the remote database. It will then purge
/// data in the local ArangoDB database, and after start will transfer collection data
/// from the remote database to the local ArangoDB database. It will extract data from the
/// remote database by calling the remote database's *dump* API until all data are fetched.
///
/// In case of success, the body of the response is a JSON object with the following
/// attributes:
///
/// - *collections*: an array of collections that were transferred from the endpoint
///
/// - *lastLogTick*: the last log tick on the endpoint at the time the transfer
/// was started. Use this value as the *from* value when starting the continuous
/// synchronization later.
///
/// WARNING: calling this method will sychronize data from the collections found
/// on the remote endpoint to the local ArangoDB database. All data in the local
/// collections will be purged and replaced with data from the endpoint.
///
/// Use with caution!
///
/// **Note**: this method is not supported on a coordinator in a cluster.
///
/// @RESTRETURNCODES
///
/// @RESTRETURNCODE{200}
/// is returned if the request was executed successfully.
///
/// @RESTRETURNCODE{400}
/// is returned if the configuration is incomplete or malformed.
///
/// @RESTRETURNCODE{405}
/// is returned when an invalid HTTP method is used.
///
/// @RESTRETURNCODE{500}
/// is returned if an error occurred during sychronization.
///
/// @RESTRETURNCODE{501}
/// is returned when this operation is called on a coordinator in a cluster.
/// @endDocuBlock
////////////////////////////////////////////////////////////////////////////////
void RestReplicationHandler::handleCommandSync () {
bool success;
VPackOptions options;
std::shared_ptr<VPackBuilder> parsedBody = parseVelocyPackBody(&options, success);
if (! success) {
generateError(HttpResponse::BAD, TRI_ERROR_HTTP_BAD_PARAMETER);
return;
}
VPackSlice const body = parsedBody->slice();
std::string const endpoint = VelocyPackHelper::getStringValue(body, "endpoint", "");
if (endpoint.empty()) {
generateError(HttpResponse::BAD, TRI_ERROR_HTTP_BAD_PARAMETER, "<endpoint> must be a valid endpoint");
return;
}
std::string const database = VelocyPackHelper::getStringValue(body, "database", _vocbase->_name);
std::string const username = VelocyPackHelper::getStringValue(body, "username", "");
std::string const password = VelocyPackHelper::getStringValue(body, "password", "");
bool const verbose = VelocyPackHelper::getBooleanValue(body, "verbose", false);
bool const includeSystem = VelocyPackHelper::getBooleanValue(body, "includeSystem", true);
bool const incremental = VelocyPackHelper::getBooleanValue(body, "incremental", false);
std::unordered_map<string, bool> restrictCollections;
VPackSlice const restriction = body.get("restrictCollections");
if (restriction.isArray()) {
for (VPackSlice const& cname : VPackArrayIterator(restriction)) {
if (cname.isString()) {
restrictCollections.insert(pair<string, bool>(cname.copyString(), true));
}
}
}
string restrictType = VelocyPackHelper::getStringValue(body, "restrictType", "");
if ((restrictType.empty() && ! restrictCollections.empty()) ||
(! restrictType.empty() && restrictCollections.empty()) ||
(! restrictType.empty() && restrictType != "include" && restrictType != "exclude")) {
generateError(HttpResponse::BAD, TRI_ERROR_HTTP_BAD_PARAMETER, "invalid value for <restrictCollections> or <restrictType>");
return;
}
TRI_replication_applier_configuration_t config;
TRI_InitConfigurationReplicationApplier(&config);
config._endpoint = TRI_DuplicateString2Z(TRI_CORE_MEM_ZONE, endpoint.c_str(), endpoint.size());
config._database = TRI_DuplicateString2Z(TRI_CORE_MEM_ZONE, database.c_str(), database.size());
config._username = TRI_DuplicateString2Z(TRI_CORE_MEM_ZONE, username.c_str(), username.size());
config._password = TRI_DuplicateString2Z(TRI_CORE_MEM_ZONE, password.c_str(), password.size());
config._includeSystem = includeSystem;
config._verbose = verbose;
InitialSyncer syncer(_vocbase, &config, restrictCollections, restrictType, verbose);
int res = TRI_ERROR_NO_ERROR;
string errorMsg = "";
try {
res = syncer.run(errorMsg, incremental);
}
catch (...) {
errorMsg = "caught an exception";
res = TRI_ERROR_INTERNAL;
}
if (res != TRI_ERROR_NO_ERROR) {
generateError(HttpResponse::responseCode(res), res, errorMsg);
return;
}
try {
VPackBuilder result;
result.add(VPackValue(VPackValueType::Object));
result.add("collections", VPackValue(VPackValueType::Array));
std::map<TRI_voc_cid_t, std::string>::const_iterator it;
std::map<TRI_voc_cid_t, std::string> const& c = syncer.getProcessedCollections();
for (it = c.begin(); it != c.end(); ++it) {
std::string const cidString = StringUtils::itoa((*it).first);
// Insert a collection
result.add(VPackValue(VPackValueType::Object));
result.add("id", VPackValue(cidString));
result.add("name", VPackValue((*it).second));
result.close(); // one collection
}
result.close(); // collections
char* tickString = TRI_StringUInt64(syncer.getLastLogTick());
result.add("lastLogTick", VPackValue(tickString));
result.close(); // base
VPackSlice s = result.slice();
generateResult(s);
}
catch (...) {
generateOOMError();
}
}
////////////////////////////////////////////////////////////////////////////////
/// @startDocuBlock JSF_put_api_replication_serverID
/// @brief fetch this servers uniq identifier
///
/// @RESTHEADER{GET /_api/replication/server-id, Return server id}
///
/// @RESTDESCRIPTION
/// Returns the servers id. The id is also returned by other replication API
/// methods, and this method is an easy means of determining a server's id.
///
/// The body of the response is a JSON object with the attribute *serverId*. The
/// server id is returned as a string.
///
/// @RESTRETURNCODES
///
/// @RESTRETURNCODE{200}
/// is returned if the request was executed successfully.
///
/// @RESTRETURNCODE{405}
/// is returned when an invalid HTTP method is used.
///
/// @RESTRETURNCODE{500}
/// is returned if an error occurred while assembling the response.
///
/// @EXAMPLES
///
/// @EXAMPLE_ARANGOSH_RUN{RestReplicationServerId}
/// var url = "/_api/replication/server-id";
/// var response = logCurlRequest('GET', url);
///
/// assert(response.code === 200);
/// logJsonResponse(response);
/// @END_EXAMPLE_ARANGOSH_RUN
/// @endDocuBlock
////////////////////////////////////////////////////////////////////////////////
void RestReplicationHandler::handleCommandServerId () {
try {
VPackBuilder result;
result.add(VPackValue(VPackValueType::Object));
const string serverId = StringUtils::itoa(TRI_GetIdServer());
result.add("serverId", VPackValue(serverId));
result.close();
VPackSlice s = result.slice();
generateResult(s);
}
catch (...) {
generateOOMError();
}
}
////////////////////////////////////////////////////////////////////////////////
/// @startDocuBlock JSF_put_api_replication_applier
/// @brief fetch the current replication configuration
///
/// @RESTHEADER{GET /_api/replication/applier-config, Return configuration of replication applier}
///
/// @RESTDESCRIPTION
/// Returns the configuration of the replication applier.
///
/// The body of the response is a JSON object with the configuration. The
/// following attributes may be present in the configuration:
///
/// - *endpoint*: the logger server to connect to (e.g. "tcp://192.168.173.13:8529").
///
/// - *database*: the name of the database to connect to (e.g. "_system").
///
/// - *username*: an optional ArangoDB username to use when connecting to the endpoint.
///
/// - *password*: the password to use when connecting to the endpoint.
///
/// - *maxConnectRetries*: the maximum number of connection attempts the applier
/// will make in a row. If the applier cannot establish a connection to the
/// endpoint in this number of attempts, it will stop itself.
///
/// - *connectTimeout*: the timeout (in seconds) when attempting to connect to the
/// endpoint. This value is used for each connection attempt.
///
/// - *requestTimeout*: the timeout (in seconds) for individual requests to the endpoint.
///
/// - *chunkSize*: the requested maximum size for log transfer packets that
/// is used when the endpoint is contacted.
///
/// - *autoStart*: whether or not to auto-start the replication applier on
/// (next and following) server starts
///
/// - *adaptivePolling*: whether or not the replication applier will use
/// adaptive polling.
///
/// - *includeSystem*: whether or not system collection operations will be applied
///
/// - *autoResync*: whether or not the slave should perform a full automatic
/// resynchronization with the master in case the master cannot serve log data
/// requested by the slave, or when the replication is started and no tick value
/// can be found.
///
/// - *autoResyncRetries*: number of resynchronization retries that will be performed
/// in a row when automatic resynchronization is enabled and kicks in. Setting this
/// to *0* will effectively disable *autoResync*. Setting it to some other value
/// will limit the number of retries that are performed. This helps preventing endless
/// retries in case resynchronizations always fail.
///
/// - *initialSyncMaxWaitTime*: the maximum wait time (in seconds) that the initial
/// synchronization will wait for a response from the master when fetching initial
/// collection data.
/// This wait time can be used to control after what time the initial synchronization
/// will give up waiting for a response and fail. This value is relevant even
/// for continuous replication when *autoResync* is set to *true* because this
/// may re-start the initial synchronization when the master cannot provide
/// log data the slave requires.
/// This value will be ignored if set to *0*.
///
/// - *connectionRetryWaitTime*: the time (in seconds) that the applier will
/// intentionally idle before it retries connecting to the master in case of
/// connection problems.
/// This value will be ignored if set to *0*.
///
/// - *idleMinWaitTime*: the minimum wait time (in seconds) that the applier will
/// intentionally idle before fetching more log data from the master in case
/// the master has already sent all its log data. This wait time can be used
/// to control the frequency with which the replication applier sends HTTP log
/// fetch requests to the master in case there is no write activity on the master.
/// This value will be ignored if set to *0*.
///
/// - *idleMaxWaitTime*: the maximum wait time (in seconds) that the applier will
/// intentionally idle before fetching more log data from the master in case the
/// master has already sent all its log data and there have been previous log
/// fetch attempts that resulted in no more log data. This wait time can be used
/// to control the maximum frequency with which the replication applier sends HTTP
/// log fetch requests to the master in case there is no write activity on the
/// master for longer periods. This configuration value will only be used if the
/// option *adaptivePolling* is set to *true*.
/// This value will be ignored if set to *0*.
///
/// - *requireFromPresent*: if set to *true*, then the replication applier will check
/// at start whether the start tick from which it starts or resumes replication is
/// still present on the master. If not, then there would be data loss. If
/// *requireFromPresent* is *true*, the replication applier will abort with an
/// appropriate error message. If set to *false*, then the replication applier will
/// still start, and ignore the data loss.
///
/// - *verbose*: if set to *true*, then a log line will be emitted for all operations
/// performed by the replication applier. This should be used for debugging replication
/// problems only.
///
/// - *restrictType*: the configuration for *restrictCollections*
///
/// - *restrictCollections*: the optional array of collections to include or exclude,
/// based on the setting of *restrictType*
///
/// @RESTRETURNCODES
///
/// @RESTRETURNCODE{200}
/// is returned if the request was executed successfully.
///
/// @RESTRETURNCODE{405}
/// is returned when an invalid HTTP method is used.
///
/// @RESTRETURNCODE{500}
/// is returned if an error occurred while assembling the response.
///
/// @EXAMPLES
///
/// @EXAMPLE_ARANGOSH_RUN{RestReplicationApplierGetConfig}
/// var url = "/_api/replication/applier-config";
/// var response = logCurlRequest('GET', url);
///
/// assert(response.code === 200);
/// logJsonResponse(response);
/// @END_EXAMPLE_ARANGOSH_RUN
/// @endDocuBlock
////////////////////////////////////////////////////////////////////////////////
void RestReplicationHandler::handleCommandApplierGetConfig () {
TRI_ASSERT(_vocbase->_replicationApplier != nullptr);
TRI_replication_applier_configuration_t config;
TRI_InitConfigurationReplicationApplier(&config);
{
READ_LOCKER(_vocbase->_replicationApplier->_statusLock);
TRI_CopyConfigurationReplicationApplier(&_vocbase->_replicationApplier->_configuration, &config);
}
try {
std::shared_ptr<VPackBuilder> configBuilder = config.toVelocyPack(false);
generateResult(configBuilder->slice());
}
catch (...) {
generateError(HttpResponse::SERVER_ERROR, TRI_ERROR_OUT_OF_MEMORY);
}
}
////////////////////////////////////////////////////////////////////////////////
/// @startDocuBlock JSF_put_api_replication_applier_adjust
/// @brief set configuration values of an applier
///
/// @RESTHEADER{PUT /_api/replication/applier-config, Adjust configuration of replication applier}
///
/// @RESTBODYPARAM{endpoint,string,required,string}
/// the logger server to connect to (e.g. "tcp://192.168.173.13:8529"). The endpoint must be specified.
///
/// @RESTBODYPARAM{database,string,required,string}
/// the name of the database on the endpoint. If not specified, defaults to the current local database name.
///
/// @RESTBODYPARAM{username,string,optional,string}
/// an optional ArangoDB username to use when connecting to the endpoint.
///
/// @RESTBODYPARAM{password,string,required,string}
/// the password to use when connecting to the endpoint.
///
/// @RESTBODYPARAM{maxConnectRetries,integer,required,int64}
/// the maximum number of connection attempts the applier
/// will make in a row. If the applier cannot establish a connection to the
/// endpoint in this number of attempts, it will stop itself.
///
/// @RESTBODYPARAM{connectTimeout,integer,required,int64}
/// the timeout (in seconds) when attempting to connect to the
/// endpoint. This value is used for each connection attempt.
///
/// @RESTBODYPARAM{requestTimeout,integer,required,int64}
/// the timeout (in seconds) for individual requests to the endpoint.
///
/// @RESTBODYPARAM{chunkSize,integer,required,int64}
/// the requested maximum size for log transfer packets that
/// is used when the endpoint is contacted.
///
/// @RESTBODYPARAM{autoStart,boolean,required,}
/// whether or not to auto-start the replication applier on
/// (next and following) server starts
///
/// @RESTBODYPARAM{adaptivePolling,boolean,required,}
/// if set to *true*, the replication applier will fall
/// to sleep for an increasingly long period in case the logger server at the
/// endpoint does not have any more replication events to apply. Using
/// adaptive polling is thus useful to reduce the amount of work for both the
/// applier and the logger server for cases when there are only infrequent
/// changes. The downside is that when using adaptive polling, it might take
/// longer for the replication applier to detect that there are new replication
/// events on the logger server.
///
/// Setting *adaptivePolling* to false will make the replication applier
/// contact the logger server in a constant interval, regardless of whether
/// the logger server provides updates frequently or seldom.
///
/// @RESTBODYPARAM{includeSystem,boolean,required,}
/// whether or not system collection operations will be applied
///
/// @RESTBODYPARAM{autoResync,boolean,optional,}
/// whether or not the slave should perform a full automatic resynchronization
/// with the master in case the master cannot serve log data requested by the slave,
/// or when the replication is started and no tick value can be found.
///
/// @RESTBODYPARAM{autoResyncRetries,integer,optional,int64}
/// number of resynchronization retries that will be performed in a row when
/// automatic resynchronization is enabled and kicks in. Setting this to *0* will
/// effectively disable *autoResync*. Setting it to some other value will limit
/// the number of retries that are performed. This helps preventing endless retries
/// in case resynchronizations always fail.
///
/// @RESTBODYPARAM{initialSyncMaxWaitTime,integer,optional,int64}
/// the maximum wait time (in seconds) that the initial synchronization will
/// wait for a response from the master when fetching initial collection data.
/// This wait time can be used to control after what time the initial synchronization
/// will give up waiting for a response and fail. This value is relevant even
/// for continuous replication when *autoResync* is set to *true* because this
/// may re-start the initial synchronization when the master cannot provide
/// log data the slave requires.
/// This value will be ignored if set to *0*.
///
/// @RESTBODYPARAM{connectionRetryWaitTime,integer,optional,int64}
/// the time (in seconds) that the applier will intentionally idle before
/// it retries connecting to the master in case of connection problems.
/// This value will be ignored if set to *0*.
///
/// @RESTBODYPARAM{idleMinWaitTime,integer,optional,int64}
/// the minimum wait time (in seconds) that the applier will intentionally idle
/// before fetching more log data from the master in case the master has
/// already sent all its log data. This wait time can be used to control the
/// frequency with which the replication applier sends HTTP log fetch requests
/// to the master in case there is no write activity on the master.
/// This value will be ignored if set to *0*.
///
/// @RESTBODYPARAM{idleMaxWaitTime,integer,optional,int64}
/// the maximum wait time (in seconds) that the applier will intentionally idle
/// before fetching more log data from the master in case the master has
/// already sent all its log data and there have been previous log fetch attempts
/// that resulted in no more log data. This wait time can be used to control the
/// maximum frequency with which the replication applier sends HTTP log fetch
/// requests to the master in case there is no write activity on the master for
/// longer periods. This configuration value will only be used if the option
/// *adaptivePolling* is set to *true*.
/// This value will be ignored if set to *0*.
///
/// @RESTBODYPARAM{requireFromPresent,boolean,required,}
/// if set to *true*, then the replication applier will check
/// at start whether the start tick from which it starts or resumes replication is
/// still present on the master. If not, then there would be data loss. If
/// *requireFromPresent* is *true*, the replication applier will abort with an
/// appropriate error message. If set to *false*, then the replication applier will
/// still start, and ignore the data loss.
///
/// @RESTBODYPARAM{verbose,boolean,required,}
/// if set to *true*, then a log line will be emitted for all operations
/// performed by the replication applier. This should be used for debugging replication
/// problems only.
///
/// @RESTBODYPARAM{restrictType,string,required,string}
/// the configuration for *restrictCollections*; Has to be either *include* or *exclude*
///
/// @RESTBODYPARAM{restrictCollections,array,optional,string}
/// the array of collections to include or exclude,
/// based on the setting of *restrictType*
///
/// @RESTDESCRIPTION
/// Sets the configuration of the replication applier. The configuration can
/// only be changed while the applier is not running. The updated configuration
/// will be saved immediately but only become active with the next start of the
/// applier.
///
/// In case of success, the body of the response is a JSON object with the updated
/// configuration.
///
/// @RESTRETURNCODES
///
/// @RESTRETURNCODE{200}
/// is returned if the request was executed successfully.
///
/// @RESTRETURNCODE{400}
/// is returned if the configuration is incomplete or malformed, or if the
/// replication applier is currently running.
///
/// @RESTRETURNCODE{405}
/// is returned when an invalid HTTP method is used.
///
/// @RESTRETURNCODE{500}
/// is returned if an error occurred while assembling the response.
///
/// @EXAMPLES
///
/// @EXAMPLE_ARANGOSH_RUN{RestReplicationApplierSetConfig}
/// var re = require("@arangodb/replication");
/// re.applier.shutdown();
///
/// var url = "/_api/replication/applier-config";
/// var body = {
/// endpoint: "tcp://127.0.0.1:8529",
/// username: "replicationApplier",
/// password: "applier1234@foxx",
/// chunkSize: 4194304,
/// autoStart: false,
/// adaptivePolling: true
/// };
///
/// var response = logCurlRequest('PUT', url, body);
///
/// assert(response.code === 200);
/// logJsonResponse(response);
/// @END_EXAMPLE_ARANGOSH_RUN
/// @endDocuBlock
////////////////////////////////////////////////////////////////////////////////
void RestReplicationHandler::handleCommandApplierSetConfig () {
TRI_ASSERT(_vocbase->_replicationApplier != nullptr);
TRI_replication_applier_configuration_t config;
TRI_InitConfigurationReplicationApplier(&config);
bool success;
VPackOptions options;
std::shared_ptr<VPackBuilder> parsedBody = parseVelocyPackBody(&options, success);
if (! success) {
generateError(HttpResponse::BAD, TRI_ERROR_HTTP_BAD_PARAMETER);
return;
}
VPackSlice const body = parsedBody->slice();
{
READ_LOCKER(_vocbase->_replicationApplier->_statusLock);
TRI_CopyConfigurationReplicationApplier(&_vocbase->_replicationApplier->_configuration, &config);
}
const string endpoint = VelocyPackHelper::getStringValue(body, "endpoint", "");
if (! endpoint.empty()) {
if (config._endpoint != nullptr) {
TRI_FreeString(TRI_CORE_MEM_ZONE, config._endpoint);
}
config._endpoint = TRI_DuplicateString2Z(TRI_CORE_MEM_ZONE, endpoint.c_str(), endpoint.size());
}
std::string database = VelocyPackHelper::getStringValue(body, "database", _vocbase->_name);
if (config._database != nullptr) {
// free old value
TRI_FreeString(TRI_CORE_MEM_ZONE, config._database);
}
config._database = TRI_DuplicateString2Z(TRI_CORE_MEM_ZONE, database.c_str(), database.length());
VPackSlice const username = body.get("username");
if (username.isString()) {
if (config._username != nullptr) {
TRI_FreeString(TRI_CORE_MEM_ZONE, config._username);
}
std::string tmp = username.copyString();
config._username = TRI_DuplicateString2Z(TRI_CORE_MEM_ZONE, tmp.c_str(), tmp.length());
}
VPackSlice const password = body.get("password");
if (password.isString()) {
if (config._password != nullptr) {
TRI_FreeString(TRI_CORE_MEM_ZONE, config._password);
}
std::string tmp = password.copyString();
config._password = TRI_DuplicateString2Z(TRI_CORE_MEM_ZONE, tmp.c_str(), tmp.length());
}
config._requestTimeout = VelocyPackHelper::getNumericValue<double>(body, "requestTimeout", config._requestTimeout);
config._connectTimeout = VelocyPackHelper::getNumericValue<double>(body, "connectTimeout", config._connectTimeout);
config._ignoreErrors = VelocyPackHelper::getNumericValue<uint64_t>(body, "ignoreErrors", config._ignoreErrors);
config._maxConnectRetries = VelocyPackHelper::getNumericValue<uint64_t>(body, "maxConnectRetries", config._maxConnectRetries);
config._sslProtocol = VelocyPackHelper::getNumericValue<uint32_t>(body, "sslProtocol", config._sslProtocol);
config._chunkSize = VelocyPackHelper::getNumericValue<uint64_t>(body, "chunkSize", config._chunkSize);
config._autoStart = VelocyPackHelper::getBooleanValue(body, "autoStart", config._autoStart);
config._adaptivePolling = VelocyPackHelper::getBooleanValue(body, "adaptivePolling", config._adaptivePolling);
config._autoResync = VelocyPackHelper::getBooleanValue(body, "autoResync", config._autoResync);
config._includeSystem = VelocyPackHelper::getBooleanValue(body, "includeSystem", config._includeSystem);
config._verbose = VelocyPackHelper::getBooleanValue(body, "verbose", config._verbose);
config._requireFromPresent = VelocyPackHelper::getBooleanValue(body, "requireFromPresent", config._requireFromPresent);
config._restrictType = VelocyPackHelper::getStringValue(body, "restrictType", config._restrictType);
config._connectionRetryWaitTime = static_cast<uint64_t>(1000.0 * 1000.0 * VelocyPackHelper::getNumericValue<double>(body, "connectionRetryWaitTime", static_cast<double>(config._connectionRetryWaitTime) / (1000.0 * 1000.0)));
config._initialSyncMaxWaitTime = static_cast<uint64_t>(1000.0 * 1000.0 * VelocyPackHelper::getNumericValue<double>(body, "initialSyncMaxWaitTime", static_cast<double>(config._initialSyncMaxWaitTime) / (1000.0 * 1000.0)));
config._idleMinWaitTime = static_cast<uint64_t>(1000.0 * 1000.0 * VelocyPackHelper::getNumericValue<double>(body, "idleMinWaitTime", static_cast<double>(config._idleMinWaitTime) / (1000.0 * 1000.0)));
config._idleMaxWaitTime = static_cast<uint64_t>(1000.0 * 1000.0 * VelocyPackHelper::getNumericValue<double>(body, "idleMaxWaitTime", static_cast<double>(config._idleMaxWaitTime) / (1000.0 * 1000.0)));
config._autoResyncRetries = VelocyPackHelper::getNumericValue<uint64_t>(body, "autoResyncRetries", config._autoResyncRetries);
VPackSlice const restriction = body.get("restrictCollections");
if (restriction.isArray()) {
config._restrictCollections.clear();
for (VPackSlice const& collection : VPackArrayIterator(restriction)) {
if (collection.isString()) {
config._restrictCollections.emplace(std::make_pair(collection.copyString(), true));
}
}
}
int res = TRI_ConfigureReplicationApplier(_vocbase->_replicationApplier, &config);
if (res != TRI_ERROR_NO_ERROR) {
generateError(HttpResponse::responseCode(res), res);
return;
}
handleCommandApplierGetConfig();
}
////////////////////////////////////////////////////////////////////////////////
/// @startDocuBlock JSF_put_api_replication_applier_start
/// @brief start the replication applier
///
/// @RESTHEADER{PUT /_api/replication/applier-start, Start replication applier}
///
/// @RESTQUERYPARAMETERS
///
/// @RESTQUERYPARAM{from,string,optional}
/// The remote *lastLogTick* value from which to start applying. If not specified,
/// the last saved tick from the previous applier run is used. If there is no
/// previous applier state saved, the applier will start at the beginning of the
/// logger server's log.
///
/// @RESTDESCRIPTION
/// Starts the replication applier. This will return immediately if the
/// replication applier is already running.
///
/// If the replication applier is not already running, the applier configuration
/// will be checked, and if it is complete, the applier will be started in a
/// background thread. This means that even if the applier will encounter any
/// errors while running, they will not be reported in the response to this
/// method.
///
/// To detect replication applier errors after the applier was started, use the
/// */_api/replication/applier-state* API instead.
///
/// @RESTRETURNCODES
///
/// @RESTRETURNCODE{200}
/// is returned if the request was executed successfully.
///
/// @RESTRETURNCODE{400}
/// is returned if the replication applier is not fully configured or the
/// configuration is invalid.
///
/// @RESTRETURNCODE{405}
/// is returned when an invalid HTTP method is used.
///
/// @RESTRETURNCODE{500}
/// is returned if an error occurred while assembling the response.
///
/// @EXAMPLES
///
/// @EXAMPLE_ARANGOSH_RUN{RestReplicationApplierStart}
/// var re = require("@arangodb/replication");
/// re.applier.shutdown();
/// re.applier.properties({
/// endpoint: "tcp://127.0.0.1:8529",
/// username: "replicationApplier",
/// password: "applier1234@foxx",
/// autoStart: false,
/// adaptivePolling: true
/// });
///
/// var url = "/_api/replication/applier-start";
/// var response = logCurlRequest('PUT', url, "");
/// re.applier.shutdown();
///
/// assert(response.code === 200);
/// logJsonResponse(response);
/// @END_EXAMPLE_ARANGOSH_RUN
/// @endDocuBlock
////////////////////////////////////////////////////////////////////////////////
void RestReplicationHandler::handleCommandApplierStart () {
TRI_ASSERT(_vocbase->_replicationApplier != nullptr);
bool found;
const char* value = _request->value("from", found);
TRI_voc_tick_t initialTick = 0;
if (found) {
// query parameter "from" specified
initialTick = (TRI_voc_tick_t) StringUtils::uint64(value);
}
int res = _vocbase->_replicationApplier->start(initialTick, found);
if (res != TRI_ERROR_NO_ERROR) {
if (res == TRI_ERROR_REPLICATION_INVALID_APPLIER_CONFIGURATION ||
res == TRI_ERROR_REPLICATION_RUNNING) {
generateError(HttpResponse::BAD, res);
}
else {
generateError(HttpResponse::SERVER_ERROR, res);
}
return;
}
handleCommandApplierGetState();
}
////////////////////////////////////////////////////////////////////////////////
/// @startDocuBlock JSF_put_api_replication_applier_stop
/// @brief stop the replication
///
/// @RESTHEADER{PUT /_api/replication/applier-stop, Stop replication applier}
///
/// @RESTDESCRIPTION
/// Stops the replication applier. This will return immediately if the
/// replication applier is not running.
///
/// @RESTRETURNCODES
///
/// @RESTRETURNCODE{200}
/// is returned if the request was executed successfully.
///
/// @RESTRETURNCODE{405}
/// is returned when an invalid HTTP method is used.
///
/// @RESTRETURNCODE{500}
/// is returned if an error occurred while assembling the response.
///
/// @EXAMPLES
///
/// @EXAMPLE_ARANGOSH_RUN{RestReplicationApplierStop}
/// var re = require("@arangodb/replication");
/// re.applier.shutdown();
/// re.applier.properties({
/// endpoint: "tcp://127.0.0.1:8529",
/// username: "replicationApplier",
/// password: "applier1234@foxx",
/// autoStart: false,
/// adaptivePolling: true
/// });
///
/// re.applier.start();
/// var url = "/_api/replication/applier-stop";
/// var response = logCurlRequest('PUT', url, "");
/// re.applier.shutdown();
///
/// assert(response.code === 200);
/// logJsonResponse(response);
/// @END_EXAMPLE_ARANGOSH_RUN
/// @endDocuBlock
////////////////////////////////////////////////////////////////////////////////
void RestReplicationHandler::handleCommandApplierStop () {
TRI_ASSERT(_vocbase->_replicationApplier != nullptr);
int res = _vocbase->_replicationApplier->stop(true);
if (res != TRI_ERROR_NO_ERROR) {
generateError(HttpResponse::SERVER_ERROR, res);
return;
}
handleCommandApplierGetState();
}
////////////////////////////////////////////////////////////////////////////////
/// @startDocuBlock JSF_get_api_replication_applier_state
/// @brief output the current status of the replication
///
/// @RESTHEADER{GET /_api/replication/applier-state, State of the replication applier}
///
/// @RESTDESCRIPTION
/// Returns the state of the replication applier, regardless of whether the
/// applier is currently running or not.
///
/// The response is a JSON object with the following attributes:
///
/// - *state*: a JSON object with the following sub-attributes:
///
/// - *running*: whether or not the applier is active and running
///
/// - *lastAppliedContinuousTick*: the last tick value from the continuous
/// replication log the applier has applied.
///
/// - *lastProcessedContinuousTick*: the last tick value from the continuous
/// replication log the applier has processed.
///
/// Regularly, the last applied and last processed tick values should be
/// identical. For transactional operations, the replication applier will first
/// process incoming log events before applying them, so the processed tick
/// value might be higher than the applied tick value. This will be the case
/// until the applier encounters the *transaction commit* log event for the
/// transaction.
///
/// - *lastAvailableContinuousTick*: the last tick value the logger server can
/// provide.
///
/// - *time*: the time on the applier server.
///
/// - *totalRequests*: the total number of requests the applier has made to the
/// endpoint.
///
/// - *totalFailedConnects*: the total number of failed connection attempts the
/// applier has made.
///
/// - *totalEvents*: the total number of log events the applier has processed.
///
/// - *totalOperationsExcluded*: the total number of log events excluded because
/// of *restrictCollections*.
///
/// - *progress*: a JSON object with details about the replication applier progress.
/// It contains the following sub-attributes if there is progress to report:
///
/// - *message*: a textual description of the progress
///
/// - *time*: the date and time the progress was logged
///
/// - *failedConnects*: the current number of failed connection attempts
///
/// - *lastError*: a JSON object with details about the last error that happened on
/// the applier. It contains the following sub-attributes if there was an error:
///
/// - *errorNum*: a numerical error code
///
/// - *errorMessage*: a textual error description
///
/// - *time*: the date and time the error occurred
///
/// In case no error has occurred, *lastError* will be empty.
///
/// - *server*: a JSON object with the following sub-attributes:
///
/// - *version*: the applier server's version
///
/// - *serverId*: the applier server's id
///
/// - *endpoint*: the endpoint the applier is connected to (if applier is
/// active) or will connect to (if applier is currently inactive)
///
/// - *database*: the name of the database the applier is connected to (if applier is
/// active) or will connect to (if applier is currently inactive)
///
/// @RESTRETURNCODES
///
/// @RESTRETURNCODE{200}
/// is returned if the request was executed successfully.
///
/// @RESTRETURNCODE{405}
/// is returned when an invalid HTTP method is used.
///
/// @RESTRETURNCODE{500}
/// is returned if an error occurred while assembling the response.
///
/// @EXAMPLES
///
/// Fetching the state of an inactive applier:
///
/// @EXAMPLE_ARANGOSH_RUN{RestReplicationApplierStateNotRunning}
/// var re = require("@arangodb/replication");
/// re.applier.shutdown();
///
/// var url = "/_api/replication/applier-state";
/// var response = logCurlRequest('GET', url);
///
/// assert(response.code === 200);
/// logJsonResponse(response);
/// @END_EXAMPLE_ARANGOSH_RUN
///
/// Fetching the state of an active applier:
///
/// @EXAMPLE_ARANGOSH_RUN{RestReplicationApplierStateRunning}
/// var re = require("@arangodb/replication");
/// re.applier.shutdown();
/// re.applier.start();
///
/// var url = "/_api/replication/applier-state";
/// var response = logCurlRequest('GET', url);
/// re.applier.shutdown();
///
/// assert(response.code === 200);
/// logJsonResponse(response);
/// @END_EXAMPLE_ARANGOSH_RUN
/// @endDocuBlock
////////////////////////////////////////////////////////////////////////////////
void RestReplicationHandler::handleCommandApplierGetState () {
TRI_ASSERT(_vocbase->_replicationApplier != nullptr);
try {
std::shared_ptr<VPackBuilder> result = _vocbase->_replicationApplier->toVelocyPack();
generateResult(result->slice());
}
catch (...) {
generateError(HttpResponse::SERVER_ERROR, TRI_ERROR_OUT_OF_MEMORY);
return;
}
}
////////////////////////////////////////////////////////////////////////////////
/// @brief delete the state of the replication applier
////////////////////////////////////////////////////////////////////////////////
void RestReplicationHandler::handleCommandApplierDeleteState () {
TRI_ASSERT(_vocbase->_replicationApplier != nullptr);
int res = _vocbase->_replicationApplier->forget();
if (res != TRI_ERROR_NO_ERROR) {
generateError(HttpResponse::SERVER_ERROR, res);
return;
}
handleCommandApplierGetState();
}
// -----------------------------------------------------------------------------
// --SECTION-- END-OF-FILE
// -----------------------------------------------------------------------------
// Local Variables:
// mode: outline-minor
// outline-regexp: "/// @brief\\|/// {@inheritDoc}\\|/// @page\\|// --SECTION--\\|/// @\\}"
// End: