Transparent Application Failover (TAF) still exists in Oracle Database 23c.
Oracle's documentation for 23c continues to describe TAF as a client-side high-availability feature. It enables client applications, such as those using ODP.NET or JDBC, to automatically reconnect to a secondary database instance if the primary instance fails. This reconnection process is designed to be transparent to the application, minimizing disruption. TAF supports different failover types, such as `SELECT` (re-executing queries) and `SESSION` (re-establishing the session, requiring transactions to be restarted).
While TAF is still available, Oracle has also been heavily promoting
Application Continuity (AC) and
Transparent Application Continuity (TAC). These are more advanced features that aim to provide an even more seamless failover experience by not only reconnecting the session but also by attempting to recover the transactional and session state, and replay in-flight operations. In many modern Oracle discussions and recommendations for high availability, Application Continuity is often highlighted as the preferred and more comprehensive solution for masking database outages from end-users and applications.
In summary:
- TAF is still a feature in Oracle 23c.
- Application Continuity (AC) and Transparent Application Continuity (TAC) are more advanced and often recommended Oracle features for achieving application high availability and transparent failover with state recovery.
Transparent application failover (TAF):
A feature in Net8 to seamlessly move a user’s session from one instance to another when the original instance fails.
Transparent application failover (TAF) ensures that in-progress transactions can be immediately resumed whenever an Oracle database instance becomes unavailable due to a lost network connection.
TAF can hide the connection failures from end-users, and preserve the existing state of their applications when the connection has failed. TAF also provides the ability to resume queries that were in progress at the time of the failure. TAF automatically logs a user in with the same user ID as was used prior to failure. If multiple users were using the connection, TAF
automatically logs them in as they attempt to process database commands. Unfortunately, TAF cannot automatically restore other session properties. Look at the following MouseOver to see the configuration of the tnsnames.ora file needed to implement TAF.