mirror of
https://github.com/samba-team/samba.git
synced 2025-01-03 01:18:10 +03:00
ctdb-config: Add configuration option [cluster] leader timeout
Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com>
This commit is contained in:
parent
1dfb266038
commit
34d2ca0ae6
@ -131,6 +131,20 @@ static bool validate_recovery_lock(const char *key,
|
|||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static bool validate_leader_timeout(const char *key,
|
||||||
|
int old_timeout,
|
||||||
|
int new_timeout,
|
||||||
|
enum conf_update_mode mode)
|
||||||
|
{
|
||||||
|
if (new_timeout <= 0) {
|
||||||
|
D_ERR("Invalid value for [cluster] -> leader timeout = %d\n",
|
||||||
|
new_timeout);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
void cluster_conf_init(struct conf_context *conf)
|
void cluster_conf_init(struct conf_context *conf)
|
||||||
{
|
{
|
||||||
conf_define_section(conf, CLUSTER_CONF_SECTION, NULL);
|
conf_define_section(conf, CLUSTER_CONF_SECTION, NULL);
|
||||||
@ -155,6 +169,11 @@ void cluster_conf_init(struct conf_context *conf)
|
|||||||
CLUSTER_CONF_RECOVERY_LOCK,
|
CLUSTER_CONF_RECOVERY_LOCK,
|
||||||
NULL,
|
NULL,
|
||||||
validate_recovery_lock);
|
validate_recovery_lock);
|
||||||
|
conf_define_integer(conf,
|
||||||
|
CLUSTER_CONF_SECTION,
|
||||||
|
CLUSTER_CONF_LEADER_TIMEOUT,
|
||||||
|
5,
|
||||||
|
validate_leader_timeout);
|
||||||
conf_define_boolean(conf,
|
conf_define_boolean(conf,
|
||||||
CLUSTER_CONF_SECTION,
|
CLUSTER_CONF_SECTION,
|
||||||
CLUSTER_CONF_LEADER_CAPABILITY,
|
CLUSTER_CONF_LEADER_CAPABILITY,
|
||||||
|
@ -28,6 +28,7 @@
|
|||||||
#define CLUSTER_CONF_NODE_ADDRESS "node address"
|
#define CLUSTER_CONF_NODE_ADDRESS "node address"
|
||||||
#define CLUSTER_CONF_CLUSTER_LOCK "cluster lock"
|
#define CLUSTER_CONF_CLUSTER_LOCK "cluster lock"
|
||||||
#define CLUSTER_CONF_RECOVERY_LOCK "recovery lock"
|
#define CLUSTER_CONF_RECOVERY_LOCK "recovery lock"
|
||||||
|
#define CLUSTER_CONF_LEADER_TIMEOUT "leader timeout"
|
||||||
#define CLUSTER_CONF_LEADER_CAPABILITY "leader capability"
|
#define CLUSTER_CONF_LEADER_CAPABILITY "leader capability"
|
||||||
|
|
||||||
void cluster_conf_init(struct conf_context *conf);
|
void cluster_conf_init(struct conf_context *conf);
|
||||||
|
@ -218,6 +218,19 @@
|
|||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
|
<varlistentry>
|
||||||
|
<term>leader timeout = <parameter>SECONDS</parameter></term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Number of SECONDS without a leader broadcast before a node
|
||||||
|
triggers an election.
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
Default: <literal>5</literal>
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term>node address = <parameter>IPADDR</parameter></term>
|
<term>node address = <parameter>IPADDR</parameter></term>
|
||||||
<listitem>
|
<listitem>
|
||||||
|
@ -57,6 +57,10 @@ static void setup_config_pointers(struct conf_context *conf)
|
|||||||
CLUSTER_CONF_SECTION,
|
CLUSTER_CONF_SECTION,
|
||||||
CLUSTER_CONF_RECOVERY_LOCK,
|
CLUSTER_CONF_RECOVERY_LOCK,
|
||||||
&ctdb_config.recovery_lock);
|
&ctdb_config.recovery_lock);
|
||||||
|
conf_assign_integer_pointer(conf,
|
||||||
|
CLUSTER_CONF_SECTION,
|
||||||
|
CLUSTER_CONF_LEADER_TIMEOUT,
|
||||||
|
&ctdb_config.leader_timeout);
|
||||||
conf_assign_boolean_pointer(conf,
|
conf_assign_boolean_pointer(conf,
|
||||||
CLUSTER_CONF_SECTION,
|
CLUSTER_CONF_SECTION,
|
||||||
CLUSTER_CONF_LEADER_CAPABILITY,
|
CLUSTER_CONF_LEADER_CAPABILITY,
|
||||||
|
@ -28,6 +28,7 @@ struct ctdb_config {
|
|||||||
const char *node_address;
|
const char *node_address;
|
||||||
const char *cluster_lock;
|
const char *cluster_lock;
|
||||||
const char *recovery_lock;
|
const char *recovery_lock;
|
||||||
|
int leader_timeout;
|
||||||
bool leader_capability;
|
bool leader_capability;
|
||||||
|
|
||||||
/* Database */
|
/* Database */
|
||||||
|
@ -48,8 +48,6 @@
|
|||||||
|
|
||||||
#include "ctdb_cluster_mutex.h"
|
#include "ctdb_cluster_mutex.h"
|
||||||
|
|
||||||
#define LEADER_BROADCAST_TIMEOUT 5
|
|
||||||
|
|
||||||
/* List of SRVID requests that need to be processed */
|
/* List of SRVID requests that need to be processed */
|
||||||
struct srvid_list {
|
struct srvid_list {
|
||||||
struct srvid_list *next, *prev;
|
struct srvid_list *next, *prev;
|
||||||
@ -253,7 +251,6 @@ struct ctdb_recoverd {
|
|||||||
uint32_t leader;
|
uint32_t leader;
|
||||||
struct tevent_timer *leader_broadcast_te;
|
struct tevent_timer *leader_broadcast_te;
|
||||||
struct tevent_timer *leader_broadcast_timeout_te;
|
struct tevent_timer *leader_broadcast_timeout_te;
|
||||||
unsigned int leader_broadcast_timeout;
|
|
||||||
uint32_t pnn;
|
uint32_t pnn;
|
||||||
uint32_t last_culprit_node;
|
uint32_t last_culprit_node;
|
||||||
struct ctdb_node_map_old *nodemap;
|
struct ctdb_node_map_old *nodemap;
|
||||||
@ -2006,7 +2003,7 @@ static int leader_broadcast_timeout_start(struct ctdb_recoverd *rec)
|
|||||||
tevent_add_timer(
|
tevent_add_timer(
|
||||||
ctdb->ev,
|
ctdb->ev,
|
||||||
rec,
|
rec,
|
||||||
timeval_current_ofs(rec->leader_broadcast_timeout, 0),
|
timeval_current_ofs(ctdb_config.leader_timeout, 0),
|
||||||
leader_broadcast_timeout_handler,
|
leader_broadcast_timeout_handler,
|
||||||
rec);
|
rec);
|
||||||
if (rec->leader_broadcast_timeout_te == NULL) {
|
if (rec->leader_broadcast_timeout_te == NULL) {
|
||||||
@ -2979,7 +2976,6 @@ static void monitor_cluster(struct ctdb_context *ctdb)
|
|||||||
rec->leader = CTDB_UNKNOWN_PNN;
|
rec->leader = CTDB_UNKNOWN_PNN;
|
||||||
rec->pnn = ctdb_get_pnn(ctdb);
|
rec->pnn = ctdb_get_pnn(ctdb);
|
||||||
rec->cluster_lock_handle = NULL;
|
rec->cluster_lock_handle = NULL;
|
||||||
rec->leader_broadcast_timeout = LEADER_BROADCAST_TIMEOUT;
|
|
||||||
rec->helper_pid = -1;
|
rec->helper_pid = -1;
|
||||||
|
|
||||||
rec->takeover_run = ctdb_op_init(rec, "takeover runs");
|
rec->takeover_run = ctdb_op_init(rec, "takeover runs");
|
||||||
|
@ -36,6 +36,7 @@ ok <<EOF
|
|||||||
# node address =
|
# node address =
|
||||||
# cluster lock =
|
# cluster lock =
|
||||||
# recovery lock =
|
# recovery lock =
|
||||||
|
# leader timeout = 5
|
||||||
# leader capability = true
|
# leader capability = true
|
||||||
[database]
|
[database]
|
||||||
# volatile database directory = ${database_volatile_dbdir}
|
# volatile database directory = ${database_volatile_dbdir}
|
||||||
|
@ -31,6 +31,11 @@ ok <<EOF
|
|||||||
EOF
|
EOF
|
||||||
unit_test ctdb-config get "cluster" "cluster lock"
|
unit_test ctdb-config get "cluster" "cluster lock"
|
||||||
|
|
||||||
|
ok <<EOF
|
||||||
|
5
|
||||||
|
EOF
|
||||||
|
unit_test ctdb-config get "cluster" "leader timeout"
|
||||||
|
|
||||||
ok <<EOF
|
ok <<EOF
|
||||||
true
|
true
|
||||||
EOF
|
EOF
|
||||||
@ -97,6 +102,38 @@ Configuration option [cluster] -> recovery lock is deprecated
|
|||||||
EOF
|
EOF
|
||||||
unit_test ctdb-config -d WARNING validate
|
unit_test ctdb-config -d WARNING validate
|
||||||
|
|
||||||
|
cat > "$conffile" <<EOF
|
||||||
|
[cluster]
|
||||||
|
leader timeout = 10
|
||||||
|
EOF
|
||||||
|
|
||||||
|
required_result 0 <<EOF
|
||||||
|
EOF
|
||||||
|
unit_test ctdb-config validate
|
||||||
|
|
||||||
|
cat > "$conffile" <<EOF
|
||||||
|
[cluster]
|
||||||
|
leader timeout = 0
|
||||||
|
EOF
|
||||||
|
|
||||||
|
required_result 22 <<EOF
|
||||||
|
Invalid value for [cluster] -> leader timeout = 0
|
||||||
|
conf: validation for option "leader timeout" failed
|
||||||
|
Failed to load config file $conffile
|
||||||
|
EOF
|
||||||
|
unit_test ctdb-config validate
|
||||||
|
|
||||||
|
cat > "$conffile" <<EOF
|
||||||
|
[cluster]
|
||||||
|
leader timeout = -5
|
||||||
|
EOF
|
||||||
|
|
||||||
|
required_result 22 <<EOF
|
||||||
|
conf: invalid value [cluster] -> "leader timeout" = "-5"
|
||||||
|
Failed to load config file $conffile
|
||||||
|
EOF
|
||||||
|
unit_test ctdb-config validate
|
||||||
|
|
||||||
cat > "$conffile" <<EOF
|
cat > "$conffile" <<EOF
|
||||||
[cluster]
|
[cluster]
|
||||||
leader capability = false
|
leader capability = false
|
||||||
|
Loading…
Reference in New Issue
Block a user