mirror of https://gitee.com/bigwinds/arangodb
362 lines
15 KiB
C++
362 lines
15 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 2010-2014, triAGENS GmbH, Cologne, Germany
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef ARANGODB_REST_HANDLER_REST_REPLICATION_HANDLER_H
|
|
#define ARANGODB_REST_HANDLER_REST_REPLICATION_HANDLER_H 1
|
|
|
|
#include "Basics/Common.h"
|
|
|
|
#include "RestHandler/RestVocbaseBaseHandler.h"
|
|
#include "HttpServer/HttpServer.h"
|
|
#include "Utils/CollectionNameResolver.h"
|
|
#include "VocBase/edge-collection.h"
|
|
#include "VocBase/replication-common.h"
|
|
|
|
struct TRI_json_t;
|
|
struct TRI_replication_log_state_s;
|
|
struct TRI_transaction_collection_s;
|
|
struct TRI_vocbase_col_s;
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- RestReplicationHandler
|
|
// -----------------------------------------------------------------------------
|
|
|
|
namespace triagens {
|
|
namespace arango {
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief replication request handler
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
class RestReplicationHandler : public RestVocbaseBaseHandler {
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- constructors and destructors
|
|
// -----------------------------------------------------------------------------
|
|
|
|
public:
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief constructor
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
RestReplicationHandler (rest::HttpRequest*);
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief destructor
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
~RestReplicationHandler ();
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- Handler methods
|
|
// -----------------------------------------------------------------------------
|
|
|
|
public:
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// {@inheritDoc}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
Handler::status_t execute ();
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- public static methods
|
|
// -----------------------------------------------------------------------------
|
|
|
|
public:
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @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
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
static int sortCollections (const void*,
|
|
const void*);
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief filter a collection based on collection attributes
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
static bool filterCollection (struct TRI_vocbase_col_s*, void*);
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- private methods
|
|
// -----------------------------------------------------------------------------
|
|
|
|
private:
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief creates an error if called on a coordinator server
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool isCoordinatorError ();
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief insert the applier action into an action list
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void insertClient (TRI_voc_tick_t);
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief determine chunk size from request
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
uint64_t determineChunkSize () const;
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief return the state of the replication logger
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void handleCommandLoggerState ();
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief handle a follow command for the replication log
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void handleCommandLoggerFollow ();
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief handle a batch command
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void handleCommandBatch ();
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief forward a command in the coordinator case
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void handleTrampolineCoordinator();
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief return the inventory (current replication and collection state)
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void handleCommandInventory ();
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief returns the cluster inventory, only on coordinator
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void handleCommandClusterInventory ();
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief extract the collection id from JSON TODO: move
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
TRI_voc_cid_t getCid (struct TRI_json_t const*) const;
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief creates a collection, based on the JSON provided TODO: move
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
int createCollection (struct TRI_json_t const*,
|
|
struct TRI_vocbase_col_s**,
|
|
bool);
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief handle a restore command for a specific collection
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void handleCommandRestoreCollection ();
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief handle a restore command for a specific collection
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void handleCommandRestoreIndexes ();
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief restores the structure of a collection TODO MOVE
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
int processRestoreCollection (struct TRI_json_t const*,
|
|
bool,
|
|
bool,
|
|
bool,
|
|
std::string&);
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief restores the structure of a collection, coordinator case
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
int processRestoreCollectionCoordinator (struct TRI_json_t const*,
|
|
bool,
|
|
bool,
|
|
bool,
|
|
std::string&);
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief restores the indexes of a collection TODO MOVE
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
int processRestoreIndexes (struct TRI_json_t const*,
|
|
bool,
|
|
std::string&);
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief restores the indexes of a collection, coordinator case
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
int processRestoreIndexesCoordinator (struct TRI_json_t const*,
|
|
bool,
|
|
std::string&);
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief apply a single marker from the collection dump
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
int applyCollectionDumpMarker (CollectionNameResolver const&,
|
|
struct TRI_transaction_collection_s*,
|
|
TRI_replication_operation_e,
|
|
const TRI_voc_key_t,
|
|
const TRI_voc_rid_t,
|
|
struct TRI_json_t const*,
|
|
std::string&);
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief restores the data of a collection TODO MOVE
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
int processRestoreDataBatch (CollectionNameResolver const&,
|
|
struct TRI_transaction_collection_s*,
|
|
bool,
|
|
bool,
|
|
std::string&);
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief restores the data of a collection TODO
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
int processRestoreData (CollectionNameResolver const&,
|
|
TRI_voc_cid_t,
|
|
bool,
|
|
bool,
|
|
std::string&);
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief handle a restore command for a specific collection
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void handleCommandRestoreData ();
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief handle a restore command for a specific collection, coordinator case
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void handleCommandRestoreDataCoordinator ();
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief handle a dump command for a specific collection
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void handleCommandDump ();
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief handle a sync command
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void handleCommandSync ();
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief handle a server-id command
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void handleCommandServerId ();
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief return the configuration of the the replication applier
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void handleCommandApplierGetConfig ();
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief configure the replication applier
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void handleCommandApplierSetConfig ();
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief start the replication applier
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void handleCommandApplierStart ();
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief stop the replication applier
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void handleCommandApplierStop ();
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief return the state of the replication applier
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void handleCommandApplierGetState ();
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief delete the replication applier state
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void handleCommandApplierDeleteState ();
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- private variables
|
|
// -----------------------------------------------------------------------------
|
|
|
|
private:
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief minimum chunk size
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
static const uint64_t defaultChunkSize;
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief maximum chunk size
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
static const uint64_t maxChunkSize;
|
|
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- END-OF-FILE
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// Local Variables:
|
|
// mode: outline-minor
|
|
// outline-regexp: "/// @brief\\|/// {@inheritDoc}\\|/// @page\\|// --SECTION--\\|/// @\\}"
|
|
// End:
|