2 What’s New in this Release

Learn about the features, enhancements, and changes made to Oracle Coherence. Oracle updates the release notes periodically after the software release. This document is accurate at the time of publication.

This chapter includes the following sections:

New Features

This section contains new features for Oracle Coherence that are organized by release.

New and Improved for 14c (14.1.2.0.0)

  • Java Modules Support
    • You can now run Coherence using Java modules. See Using Java Modules to Build a Coherence Application in Developing Applications with Oracle Coherence.
    • Coherence no longer requires the following modules to be explicitly opened or exported: java.base/java.lang.invoke=com.oracle.coherencejava.base/java.lang=org.eclipse.persistence.corejava.management/sun.management=com.oracle.coherencejava.base/java.util=com.oracle.coherence. See Using Java Modules to Build a Coherence Application in Developing Applications with Oracle Coherence.
  • Core Improvements
    • NamedMap API - A distributed implementation of java.util.Map interface. See Performing Basic Cache Operations in Developing Applications with Oracle Coherence.
    • Bootstrap API - The new bootstrap API enables you to configure and start a Coherence application by building a com.tangosol.net.Coherence instance and starting this instance. See Using the Bootstrap API in Developing Applications with Oracle Coherence.
    • Repository API - The Coherence Repository API provides you with a higher-level, DDD-friendly way to access data managed in Coherence. See Using the Repository API in Developing Applications with Oracle Coherence.
    • Caffeine - Coherence now adds a Caffeine backing map implementation, enabling you to use Caffeine wherever the standard Coherence local cache can be used. See Integrating Caffeine in Developing Applications with Oracle Coherence.
    • Partition Events Logging - This feature enables logging of partition unavailable duration when the partition events occur. For example, during partition movements between members. See Logging Partition Events in Developing Applications with Oracle Coherence.
    • Non-Blocking Data Sources - The new NonBlockingEntryStore enables cache stores to respond asynchronously when mutations are made to entries. See Non-Blocking Data Sources in Developing Applications with Oracle Coherence.
    • Coherence Lifecycle Listeners - Added the ability to register lifecycle listeners with Coherence instances, either through the Coherence API, or through discovery using the Java ServiceLoader. See Starting Cache Servers in Developing Applications with Oracle Coherence.
    • Remote Client MEMBER_JOINED and MEMBER_LEFT MemberEvents - A proxy now sends MEMBER_JOINED and MEMBER_LEFT MemberEvents to all active services on the proxy when a remote client joins and leaves. This event enables management of a service’s server side resources being retained per remote client. If a MemberListener is registered on a service and the environment has both remote and cluster member access to a service, the MemberListener may need to account for remote client MemberEvent(s). For example, see Example 8-3 in Listening to Member Events section in Developing Applications with Oracle Coherence.
    • Scheduled Backups - Writing asynchronous backups has been enhanced to enable scheduling of these backups at a time interval after the primary has been written. See Scheduling Backups in Developing Applications with Oracle Coherence.
    • Read Locator - Coherence now allows for certain requests for data to be targeted to non-primary partition owners (backups) to balance request load or reduce latency. See Using the Read Locator in Developing Applications with Oracle Coherence.
    • Cache Configuration Override - Similar to the Coherence Cluster override, you can now specify a cache configuration override to override elements of existing cache configuration with new elements at runtime. See Using Cache Configuration Override in Developing Applications with Oracle Coherence.
    • Extend the Operational Configuration File - Adds support for custom namespace handlers in the Coherence operational configuration file. See Introduction to Extending Configuration Files in Developing Applications with Oracle Coherence.
    • BigDecimal-related aggregators - These aggregators now support the ability to set BigDecimal properties such as scale, rounding mode, stripTrailingZeros, and MathContext (where applicable) for the final result. See Java API Reference for Oracle Coherence.
    • JSON objects in CohQL - The Coherence Query Language (CohQL) now supports the ability to insert JSON objects as keys or values, as well as to query by and select JSON attributes. See Working with JSON Objects in Developing Applications with Oracle Coherence.
    • Durable Events (Experimental) - Coherence now supports an experimental feature which allows missed MapEvents to be replayed when a client disconnects. See Using Durable Events (Experimental) in Developing Applications with Oracle Coherence.
  • Topics Improvements
    • A number of durability and stability improvements have been applied to make topics more stable during failover.
    • Topics now guarantee at least once delivery, whereas in previous releases this was not the case. A subscriber that is part of a group can commit a processed message to indicate that processing is complete and it should not be redelivered on failover.
    • Topic channels are now fairly allocated to the subscribers in a subscriber group; only a single subscriber receives messages from an allocated channel.
    • Subscribers will be timed-out after a configurable period of inactivity (or failure to heartbeat) causing their channels to be reallocated to remaining subscribers in the same group.
    • Added API methods to determine the number of unreceived elements for a NamedTopic subscriber or subscriber group.
    See Using Topics in Developing Applications with Oracle Coherence.
  • Persistence
    • Persistent Backups - You can now enable and configure persistent backups which stores backup partitions on a disk, as additional copies of persisted primary one. See Using Persistent Backups in Developing Applications with Oracle Coherence.
    • Parallel Recovery - The parallel recovery feature enables Coherence to recover data in parallel within a member/process as well as in parallel across the cluster. See Parallel Recovery in Administering Oracle Coherence.
  • Distributed Concurrency - The Coherence Concurrent module provides distributed implementations of the concurrency primitives from the java.util.concurrent package such as executors, atomics, locks, semaphores, and latches. See Implementing Concurreny in a Distributed Network in Developing Applications with Oracle Coherence.
  • Queues - Coherence now includes an implementation of Queues as a data structure. See Using Blocking Queues in Developing Applications with Oracle Coherence.
  • Serialization/ POF
    • Portable Types and POF Maven Plug-in - This release introduces Portable Types, which provide a way to add support for POF serialization to your classes by using annotations and without the requirement to implement serialization code by hand. See Using Portable Object Format in Developing Applications with Oracle Coherence.
    • POF Configuration Discovery - It is now possible to make POF configuration files discoverable at runtime by the ConfigurablePofContext class instead of needing to put them inside <include> elements. See Making POF Configuration Files Discoverable at Runtime in Developing Applications with Oracle Coherence.
  • Integrations
    • Internal
      • CDI Support - Coherence provides support for Contexts and Dependency Injection (CDI) within the Coherence cluster members to inject Coherence-managed resources, such as NamedMap, NamedCache, and Session instances into CDI managed beans. See Using Contexts and Dependency Injection in Developing Applications with Oracle Coherence.
      • MicroProfile Configuration - Coherence MicroProfile (MP) Configuration provides support for Eclipse MicroProfile Configuration within Coherence cluster members. See Using Coherence MicroProfile Configuration in Integrating Oracle Coherence.
      • MicroProfile Metrics - Coherence MicroProfile Metrics provides support for Eclipse MicroProfile Metrics within the Coherence cluster members. See Using Coherence MicroProfile Metrics in Integrating Oracle Coherence.
    • External
      • Helidon - Coherence can be integrated with Helidon through Contexts and Dependency Injection (CDI). See Helidon.
      • GraphQL Support through Helidon - Using Helidon integration, you can enable access to Coherence data from GraphQL. See GraphQL.
      • Kafka - Coherence can now integrate with Kafka using Kafka Entry Store and Kafka Sink Connector. See Kafka.
      • Micronaut - Coherence now provides integration to Micronaut. See Micronaut Coherence.
      • Hibernate - Updated support for Coherence integration with Hibernate. See Integrating Hibernate and Coherence in Integrating Oracle Coherence.
      • Spring - Coherence can be integrated with Spring, which is a platform for building and running Java-based enterprise applications. See Integrating Spring with Coherence in Integrating Oracle Coherence.
  • gRPC - Coherence introduces the ability to use gRPC to access Coherence caches. See Introduction to gRPC.
    • gRPC Proxy - A new Coherence gRPC proxy implementation of the services defined within the Coherence gRPC module. See Using the Coherence gRPC Server in Developing Remote Clients for Oracle Coherence.
    • gRPC Java Client - The Coherence Java gRPC Client is a library that enables a Java application to connect to a Coherence gRPC proxy server. See Using the Coherence Java gRPC Client in Developing Remote Clients for Oracle Coherence.
  • Coherence*Web - Apache Tomcat 9 Support - Coherence*Web is now supported on Tomcat 9.
  • Clients
    • JavaScript Client - The Coherence JavaScript Client allows Node applications to act as cache clients to a Coherence Cluster using gRPC framework as the network transport. See Coherence JavaScript Client.
    • Go Client - The Coherence Go Client allows native Go applications to act as cache clients to a Coherence cluster using gRPC for the network transport. See Coherence Go Client.
    • Python Client - The Coherence Python Client allows Python applications to act as cache clients to an Oracle Coherence cluster using gRPC as the network transport. See Coherence Python Client.
    • Client for .NET - Coherence for .NET 14.1.2 supports .NET 6 and .NET 8. Coherence for .NET 14.1.2 includes session support for ASP.NET 6 and 8. Prior versions of Coherence for .NET used an app.config file. Coherence for .NET 14.1.2 now uses appsettings.json, which follows standard .NET practices. Coherence 14.1.2 server ASP.NET session support is not compatible with older Coherence for .NET versions. For more information, see Oracle Coherence for .NET.
  • Security
  • Management/Administration
  • Federation - Additional attributes added to Origin and Destination MBeans to show errors and replication estimation. See OriginMBean and DestinationMBean in Managing Oracle Coherence.
  • Examples - Coherence guides and tutorials are now hosted on the Coherence GitHub Repository and are documented here: Examples - Guides & Tutorials Overview.

Breaking Changes

Learn about updates in Coherence 14c (14.1.2.0.0) that introduce potentially incompatible changes between Coherence releases.

PortableType Annotation Now Requires type-id Attribute

In Coherence 14.1.2.0.0, the @PortableType annotation was updated to require a type-id attribute.

In previous releases, type-id was optional and auto-generated, which could lead to serialization and schema evolvability issues as the type-id was not guaranteed to be consistent between each build for each class.

To correct this issue, the type-id is now mandatory on the @PortableType annotation, and in coherence-pof-config.xsd. Therefore, annotations using @PortableType without an id will fail to compile. You must now supply a unique type-id when the annotation is used. For example:

@PortableType(id = 1000)
public class Customer {

"vendor:" Prefix Removed from Prometheus Generated Metrics

In this release, the default value of the system property "coherence.metrics.legacy.names" has been changed from true to false, to remove the "vendor:" prefix from generated Prometheus metrics.

This prefix was deprecated several releases ago.

For more information, see the Coherence Operator documentation, Publish Metrics.

Changed Return Type of Coherence.start() Method

Enhanced the Coherence.start() method to return a CompletableFuture<Coherence> instead of a CompletableFuture<Void>. This allows a more fluent API when using static factory methods to create and start a Coherence instance. This is a breaking change in applications that specifically assign the result of calls to Coherence.start() to a CompletableFuture<Void> variable.

MapViewBuilder and ViewBuilder

Fixed an issue with the generics of MapViewBuilder and ViewBuilder that would prevent the proper use of the map() function. MapViewBuilder and ViewBuilder have had their class-level generics simplified to <K, V> from <K, V_BACK, V_FRONT>. The map() function has been changed to: public <U> ViewBuilder<K, U> map(ValueExtractor<? super V, ? extends U> mapper), where U represents the type of the extracted value. This change also necessitated similar changes to the generics of NamedMap.view() and NamedCache.view(). These methods have also been simplified to <K, V> from <K, V_BACK, V_FRONT>.

Note:

This is a backward-incompatible change, but will have an impact only during compilation.

Client for .NET

  • Coherence for .NET configuration, which used to be in app.config, is now in appsettings.json.
  • Coherence 14.1.2 ASP.NET session support is incompatible with older Coherence for .NET versions.
  • The following classes that relied on the deprecated .NET BinaryFormatter class have been removed from Coherence for .NET: BinarySerializer, OptimizedBinarySerializer, BinaryPofSerializer, and SafeConfigurablePofContext.

Deprecated Features

Learn about the deprecated and desupported features of Oracle Coherence.

This section includes the following topics:

Deprecated Features for 14.1.2.0.0

A brief description of the deprecated features for 14.1.2.0.0.

This section includes the following topics:

Oracle Solaris Support

Coherence no longer supports the Oracle Solaris platform for the Coherence for C++ client.

SafeSortedMap

The SafeSortedMap class is now depreciated.

ImmutableArrayList.getSortedSet

The deprecated ImmutableArrayList.getSortedSet will be removed. This method and the SortedSet interface implementation will be removed from ImmutableArrayList in a future release.

Coherence .NET Client

Coherence .NET client 14.1.2.0.0 has deprecated HashDictionary(SerializationInfo info, StreamingContext context) and PortableException(SerializationInfo info, StreamingContext context) constructors and GetObjectData methods in PortableException, RequestIncompleteException, and HashDictionary classes, which overrode legacy serialization methods.

Memcached Adapter

The memcached adapter is now deprecated.