下面列出了 RTR 文件样例中的系统定义的特性。
# A list of bracketed resource property declarations follows the
# resource-type declarations. The property-name declaration must be
# the first attribute after the open curly bracket of each entry.
# The <method>_timeout properties set the value in seconds after which
# the RGM concludes invocation of the method has failed.
# The MIN value for all method timeouts is set to 60 seconds. This
# prevents administrators from setting shorter timeouts, which do not
# improve switchover/failover performance, and can lead to undesired
# RGM actions (false failovers, node reboot, or moving the resource group
# to ERROR_STOP_FAILED state, requiring operator intervention). Setting
# too-short method timeouts leads to a *decrease* in overall availability
# of the data service.
{
PROPERTY = Start_timeout;
MIN=60;
DEFAULT=300;
}
{
PROPERTY = Stop_timeout;
MIN=60;
DEFAULT=300;
}
{
PROPERTY = Validate_timeout;
MIN=60;
DEFAULT=300;
}
{
PROPERTY = Update_timeout;
MIN=60;
DEFAULT=300;
}
{
PROPERTY = Monitor_Start_timeout;
MIN=60;
DEFAULT=300;
}
{
PROPERTY = Monitor_Stop_timeout;
MIN=60;
DEFAULT=300;
}
{
PROPERTY = Thorough_Probe_Interval;
MIN=1;
MAX=3600;
DEFAULT=60;
TUNABLE = ANYTIME;
}
# The number of retries to be done within a certain period before concluding
# that the application cannot be successfully started on this node.
{
PROPERTY = Retry_Count;
MIN=0;
MAX=10;
DEFAULT=2;
TUNABLE = ANYTIME;
}
# Set Retry_Interval as a multiple of 60 since it is converted from seconds
# to minutes, rounding up. For example, a value of 50 (seconds)
# is converted to 1 minute. Use this property to time the number of
# retries (Retry_Count).
{
PROPERTY = Retry_Interval;
MIN=60;
MAX=3600;
DEFAULT=300;
TUNABLE = ANYTIME;
}
{
PROPERTY = Network_resources_used;
TUNABLE = AT_CREATION;
DEFAULT = ““;
}
虽然 Sun Cluster 提供了系统定义的特性,但是您也可以使用资源特性属性设置不同的缺省值。 要获得可应用于资源特性的属性的完整列表,请参阅资源特性属性。
请注意以下有关 RTR 文件样例中的系统定义的资源特性的信息:
对于所有超时设置,Sun Cluster 都提供了最小值(1 秒)和缺省值(3600 秒)。 在 RTR 文件样例中将最小值更改为 60 秒,并将缺省值更改为 300 秒。 群集管理员既可以接受此缺省值,又可以将超时值更改为其它值(60 或更大值)。 Sun Cluster 不具有最大允许值。
特性 Thorough_Probe_Interval、Retry_count 和 Retry_interval 的 TUNABLE 属性的值已设置成 ANYTIME。 此设置意味着即使在数据服务运行的情况下,群集管理员也可以更改这些特性的值。 这些特性由通过数据服务样例实现的故障监视器使用。 数据服务样例将实现 Update 方法,以在通过管理操作更改这些或其它资源特性后停止和重启故障监视器。 请参阅Update 方法。
资源特性分为以下几类:
必需的 — 创建资源时,群集管理员必须指定一个值;
可选的 — 如果管理员未指定值,系统将应用缺省值。
有条件的 — 仅当在 RTR 文件中声明之后,RGM 才会创建该特性。
数据服务样例的缺省监视器使用 Thorough_probe_interval、Retry_count、 Retry_interval 和 Network_resources_used 条件特性,因此开发者需要在 RTR 文件中声明它们。 有关特性如何分类的信息,请参阅 r_properties(5) 手册页或资源特性。