In RAC, can we use the same service for TAF and FCF or should we define distinct service for each ?
HI,
if we create a service 'server_taf' with:
srvctl add service -d rac -s server_taf -r "rac1,rac2" -P BASIC
and then modify it with other TAF attributes such as:
SQL> execute dbms_service.modify_service (service_name => 'server_taf' -
, aq_ha_notifications => true -
, failover_method => dbms_service.failover_method_basic -
, failover_type => dbms_service.failover_type_select -
, failover_retries => 180 -
, failover_delay => 5 -
, clb_goal => dbms_service.clb_goal_long);
If then we want to use ONS to transmit diferent HA events to some thin java based applications in order to use FCF features,
Can this same service 'server_taf' be used in these thin java based apps or should we defined another service without the aq_ha_notifications and without the TAF policy in it ?
if we create a service 'server_taf' with:
srvctl add service -d rac -s server_taf -r "rac1,rac2" -P BASIC
and then modify it with other TAF attributes such as:
SQL> execute dbms_service.modify_service (service_name => 'server_taf' -
, aq_ha_notifications => true -
, failover_method => dbms_service.failover_method_basic -
, failover_type => dbms_service.failover_type_select -
, failover_retries => 180 -
, failover_delay => 5 -
, clb_goal => dbms_service.clb_goal_long);
If then we want to use ONS to transmit diferent HA events to some thin java based applications in order to use FCF features,
Can this same service 'server_taf' be used in these thin java based apps or should we defined another service without the aq_ha_notifications and without the TAF policy in it ?
0