Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / src / mon / MDSMonitor.h
1 // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- 
2 // vim: ts=8 sw=2 smarttab
3 /*
4  * Ceph - scalable distributed file system
5  *
6  * Copyright (C) 2004-2006 Sage Weil <sage@newdream.net>
7  *
8  * This is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License version 2.1, as published by the Free Software 
11  * Foundation.  See file COPYING.
12  * 
13  */
14  
15 /* Metadata Server Monitor
16  */
17
18 #ifndef CEPH_MDSMONITOR_H
19 #define CEPH_MDSMONITOR_H
20
21 #include <map>
22 #include <set>
23 using namespace std;
24
25 #include "include/types.h"
26 #include "mds/FSMap.h"
27 #include "mds/MDSMap.h"
28 #include "PaxosService.h"
29 #include "msg/Messenger.h"
30 #include "messages/MMDSBeacon.h"
31
32 class MMonCommand;
33 class MMDSLoadTargets;
34 class MMDSMap;
35 class FileSystemCommandHandler;
36
37 class MDSMonitor : public PaxosService {
38  public:
39   MDSMonitor(Monitor *mn, Paxos *p, string service_name);
40
41   // service methods
42   void create_initial() override;
43   void get_store_prefixes(std::set<string>& s) override;
44   void update_from_paxos(bool *need_bootstrap) override;
45   void init() override;
46   void create_pending() override; 
47   void encode_pending(MonitorDBStore::TransactionRef t) override;
48   // we don't require full versions; don't encode any.
49   void encode_full(MonitorDBStore::TransactionRef t) override { }
50   version_t get_trim_to() override;
51
52   bool preprocess_query(MonOpRequestRef op) override;  // true if processed.
53   bool prepare_update(MonOpRequestRef op) override;
54   bool should_propose(double& delay) override;
55
56   void on_active() override;
57   void on_restart() override;
58
59   void check_subs();
60   void check_sub(Subscription *sub);
61
62   const FSMap &get_pending() const { return pending_fsmap; }
63   const FSMap &get_fsmap() const { return fsmap; }
64   void dump_info(Formatter *f);
65   int print_nodes(Formatter *f);
66
67   /**
68    * Return true if a blacklist was done (i.e. OSD propose needed)
69    */
70   bool fail_mds_gid(mds_gid_t gid);
71  protected:
72   // mds maps
73   FSMap fsmap;           // current
74   FSMap pending_fsmap;  // current + pending updates
75
76   // my helpers
77   void print_map(FSMap &m, int dbl=7);
78   void update_logger();
79
80   void _updated(MonOpRequestRef op);
81
82   void _note_beacon(class MMDSBeacon *m);
83   bool preprocess_beacon(MonOpRequestRef op);
84   bool prepare_beacon(MonOpRequestRef op);
85
86   bool preprocess_offload_targets(MonOpRequestRef op);
87   bool prepare_offload_targets(MonOpRequestRef op);
88
89   void get_health(list<pair<health_status_t,string> >& summary,
90                   list<pair<health_status_t,string> > *detail,
91                   CephContext *cct) const override;
92   int fail_mds(std::ostream &ss, const std::string &arg,
93       MDSMap::mds_info_t *failed_info);
94
95   bool preprocess_command(MonOpRequestRef op);
96   bool prepare_command(MonOpRequestRef op);
97
98   int parse_role(
99       const std::string &role_str,
100       mds_role_t *role,
101       std::ostream &ss);
102
103   void modify_legacy_filesystem(
104       std::function<void(std::shared_ptr<Filesystem> )> fn);
105   int legacy_filesystem_command(
106       MonOpRequestRef op,
107       std::string const &prefix,
108       map<string, cmd_vartype> &cmdmap,
109       std::stringstream &ss);
110   int filesystem_command(
111       MonOpRequestRef op,
112       std::string const &prefix,
113       map<string, cmd_vartype> &cmdmap,
114       std::stringstream &ss);
115
116   // beacons
117   struct beacon_info_t {
118     utime_t stamp;
119     uint64_t seq;
120   };
121   map<mds_gid_t, beacon_info_t> last_beacon;
122
123   bool try_standby_replay(
124       const MDSMap::mds_info_t& finfo,
125       const Filesystem &leader_fs,
126       const MDSMap::mds_info_t& ainfo);
127
128   std::list<std::shared_ptr<FileSystemCommandHandler> > handlers;
129
130   bool maybe_promote_standby(std::shared_ptr<Filesystem> fs);
131   bool maybe_expand_cluster(std::shared_ptr<Filesystem> fs);
132   void maybe_replace_gid(mds_gid_t gid, const MDSMap::mds_info_t& info,
133       bool *mds_propose, bool *osd_propose);
134   void tick() override;     // check state, take actions
135
136   int dump_metadata(const string& who, Formatter *f, ostream& err);
137
138   void update_metadata(mds_gid_t gid, const Metadata& metadata);
139   void remove_from_metadata(MonitorDBStore::TransactionRef t);
140   int load_metadata(map<mds_gid_t, Metadata>& m);
141   void count_metadata(const string& field, Formatter *f);
142 public:
143   void count_metadata(const string& field, map<string,int> *out);
144 protected:
145
146   // MDS daemon GID to latest health state from that GID
147   std::map<uint64_t, MDSHealth> pending_daemon_health;
148   std::set<uint64_t> pending_daemon_health_rm;
149
150
151   map<mds_gid_t, Metadata> pending_metadata;
152
153   mds_gid_t gid_from_arg(const std::string& arg, std::ostream& err);
154
155   // When did the mon last call into our tick() method?  Used for detecting
156   // when the mon was not updating us for some period (e.g. during slow
157   // election) to reset last_beacon timeouts
158   utime_t last_tick;
159 };
160
161 #endif