diff --git a/src/messages/MOSDPGRecoveryDelete.h b/src/messages/MOSDPGRecoveryDelete.h new file mode 100644 index 00000000000..ae768fd4bc2 --- /dev/null +++ b/src/messages/MOSDPGRecoveryDelete.h @@ -0,0 +1,81 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab + +#ifndef CEPH_MOSDPGRECOVERYDELETE_H +#define CEPH_MOSDPGRECOVERYDELETE_H + +#include "MOSDFastDispatchOp.h" + +/* + * instruct non-primary to remove some objects during recovery + */ + +struct MOSDPGRecoveryDelete : public MOSDFastDispatchOp { + + static const int HEAD_VERSION = 1; + static const int COMPAT_VERSION = 1; + + pg_shard_t from; + spg_t pgid; ///< target spg_t + epoch_t map_epoch; + list > objects; ///< objects to remove + +private: + uint64_t cost; + +public: + int get_cost() const override { + return cost; + } + + epoch_t get_map_epoch() const override { + return map_epoch; + } + spg_t get_spg() const override { + return pgid; + } + + void set_cost(uint64_t c) { + cost = c; + } + + MOSDPGRecoveryDelete() + : MOSDFastDispatchOp(MSG_OSD_PG_RECOVERY_DELETE, HEAD_VERSION, + COMPAT_VERSION) {} + + MOSDPGRecoveryDelete(pg_shard_t from, spg_t pgid, epoch_t map_epoch) + : MOSDFastDispatchOp(MSG_OSD_PG_RECOVERY_DELETE, HEAD_VERSION, + COMPAT_VERSION), + from(from), + pgid(pgid), + map_epoch(map_epoch) {} + +private: + ~MOSDPGRecoveryDelete() {} + +public: + const char *get_type_name() const { return "recovery_delete"; } + void print(ostream& out) const { + out << "MOSDPGRecoveryDelete(" << pgid << " e" << map_epoch << " " << objects << ")"; + } + + void encode_payload(uint64_t features) { + ::encode(from, payload); + ::encode(pgid, payload); + ::encode(map_epoch, payload); + ::encode(cost, payload); + ::encode(objects, payload); + } + void decode_payload() { + bufferlist::iterator p = payload.begin(); + ::decode(from, p); + ::decode(pgid, p); + ::decode(map_epoch, p); + ::decode(cost, p); + ::decode(objects, p); + } +}; + + + +#endif diff --git a/src/messages/MOSDPGRecoveryDeleteReply.h b/src/messages/MOSDPGRecoveryDeleteReply.h new file mode 100644 index 00000000000..4732c8f3474 --- /dev/null +++ b/src/messages/MOSDPGRecoveryDeleteReply.h @@ -0,0 +1,54 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab + +#ifndef MOSDRECOVERYDELETEREPLY_H +#define MOSDRECOVERYDELETEREPLY_H + +#include "MOSDFastDispatchOp.h" + +struct MOSDPGRecoveryDeleteReply : public MOSDFastDispatchOp { + static const int HEAD_VERSION = 1; + static const int COMPAT_VERSION = 1; + + pg_shard_t from; + spg_t pgid; + epoch_t map_epoch; + list > objects; + + epoch_t get_map_epoch() const override { + return map_epoch; + } + spg_t get_spg() const override { + return pgid; + } + + MOSDPGRecoveryDeleteReply() + : MOSDFastDispatchOp(MSG_OSD_PG_RECOVERY_DELETE_REPLY, HEAD_VERSION, COMPAT_VERSION) + {} + + void decode_payload() override { + bufferlist::iterator p = payload.begin(); + ::decode(pgid.pgid, p); + ::decode(map_epoch, p); + ::decode(objects, p); + ::decode(pgid.shard, p); + ::decode(from, p); + } + + void encode_payload(uint64_t features) override { + ::encode(pgid.pgid, payload); + ::encode(map_epoch, payload); + ::encode(objects, payload); + ::encode(pgid.shard, payload); + ::encode(from, payload); + } + + void print(ostream& out) const override { + out << "MOSDPGRecoveryDeleteReply(" << pgid + << " e" << map_epoch << " " << objects << ")"; + } + + const char *get_type_name() const override { return "recovery_delete_reply"; } +}; + +#endif diff --git a/src/msg/Message.cc b/src/msg/Message.cc index 9d1953d75b1..478ed46f8b6 100644 --- a/src/msg/Message.cc +++ b/src/msg/Message.cc @@ -88,6 +88,8 @@ using namespace std; #include "messages/MOSDPGBackfill.h" #include "messages/MOSDBackoff.h" #include "messages/MOSDPGBackfillRemove.h" +#include "messages/MOSDPGRecoveryDelete.h" +#include "messages/MOSDPGRecoveryDeleteReply.h" #include "messages/MRemoveSnaps.h" @@ -545,6 +547,12 @@ Message *decode_message(CephContext *cct, int crcflags, case MSG_OSD_PG_PUSH_REPLY: m = new MOSDPGPushReply; break; + case MSG_OSD_PG_RECOVERY_DELETE: + m = new MOSDPGRecoveryDelete; + break; + case MSG_OSD_PG_RECOVERY_DELETE_REPLY: + m = new MOSDPGRecoveryDeleteReply; + break; case MSG_OSD_EC_WRITE: m = new MOSDECSubOpWrite; break; diff --git a/src/msg/Message.h b/src/msg/Message.h index d1b63ac1f21..94b626b8957 100644 --- a/src/msg/Message.h +++ b/src/msg/Message.h @@ -118,6 +118,8 @@ #define MSG_OSD_PG_CREATED 116 #define MSG_OSD_REP_SCRUBMAP 117 +#define MSG_OSD_PG_RECOVERY_DELETE 118 +#define MSG_OSD_PG_RECOVERY_DELETE_REPLY 119 // *** MDS *** diff --git a/src/osd/ECBackend.cc b/src/osd/ECBackend.cc index 166edc65996..38da163fef3 100644 --- a/src/osd/ECBackend.cc +++ b/src/osd/ECBackend.cc @@ -734,9 +734,16 @@ int ECBackend::recover_object( } bool ECBackend::can_handle_while_inactive( - OpRequestRef _op) + OpRequestRef op) { - return false; + dout(10) << __func__ << ": " << op << dendl; + switch (op->get_req()->get_type()) { + case MSG_OSD_PG_RECOVERY_DELETE: + case MSG_OSD_PG_RECOVERY_DELETE_REPLY: + return true; + default: + return false; + } } bool ECBackend::handle_message( diff --git a/src/osd/OSD.h b/src/osd/OSD.h index c34e247e444..0dd8a563705 100644 --- a/src/osd/OSD.h +++ b/src/osd/OSD.h @@ -2300,6 +2300,8 @@ private: case MSG_OSD_REP_SCRUBMAP: case MSG_OSD_PG_UPDATE_LOG_MISSING: case MSG_OSD_PG_UPDATE_LOG_MISSING_REPLY: + case MSG_OSD_PG_RECOVERY_DELETE: + case MSG_OSD_PG_RECOVERY_DELETE_REPLY: return true; default: return false; diff --git a/src/osd/PG.cc b/src/osd/PG.cc index 05ad63c69c1..ce3f52e9cab 100644 --- a/src/osd/PG.cc +++ b/src/osd/PG.cc @@ -55,6 +55,8 @@ #include "messages/MOSDSubOpReply.h" #include "messages/MOSDRepOpReply.h" #include "messages/MOSDRepScrubMap.h" +#include "messages/MOSDPGRecoveryDelete.h" +#include "messages/MOSDPGRecoveryDeleteReply.h" #include "common/BackTrace.h" #include "common/EventTrace.h" @@ -5689,6 +5691,11 @@ bool PG::can_discard_request(OpRequestRef& op) return can_discard_replica_op(op); case MSG_OSD_REPOPREPLY: return can_discard_replica_op(op); + case MSG_OSD_PG_RECOVERY_DELETE: + return can_discard_replica_op(op); + + case MSG_OSD_PG_RECOVERY_DELETE_REPLY: + return can_discard_replica_op(op); case MSG_OSD_EC_WRITE: return can_discard_replica_op(op); diff --git a/src/osd/ReplicatedBackend.cc b/src/osd/ReplicatedBackend.cc index 7739602aeef..092d0eeb6ed 100644 --- a/src/osd/ReplicatedBackend.cc +++ b/src/osd/ReplicatedBackend.cc @@ -185,6 +185,8 @@ bool ReplicatedBackend::can_handle_while_inactive(OpRequestRef op) dout(10) << __func__ << ": " << op << dendl; switch (op->get_req()->get_type()) { case MSG_OSD_PG_PULL: + case MSG_OSD_PG_RECOVERY_DELETE: + case MSG_OSD_PG_RECOVERY_DELETE_REPLY: return true; default: return false; diff --git a/src/test/encoding/types.h b/src/test/encoding/types.h index d8822b487a7..96fcd1747a8 100644 --- a/src/test/encoding/types.h +++ b/src/test/encoding/types.h @@ -593,6 +593,10 @@ MESSAGE(MOSDPGNotify) MESSAGE(MOSDPGQuery) #include "messages/MOSDPGRemove.h" MESSAGE(MOSDPGRemove) +#include "messages/MOSDPGRecoveryDelete.h" +MESSAGE(MOSDPGRecoveryDelete) +#include "messages/MOSDPGRecoveryDeleteReply.h" +MESSAGE(MOSDPGRecoveryDeleteReply) #include "messages/MOSDPGScan.h" MESSAGE(MOSDPGScan) #include "messages/MOSDPGTemp.h"