Hazelcast v4.1 Release Notes
Release Date: 2020-11-04 // about 4 years ago-
π This document lists the new features, enhancements, fixed issues and, removed or deprecated features for Hazelcast IMDG 4.1 release. The numbers in the square brackets refer to the issues in Hazelcast's GitHub repositories.
π New Features
- SQL Implementation: Implemented the SQL engine that
π supports map scans, index scans, projections and filters.
It also introduces thehazelcast-sql
module to handle the
π SQL engine's dependencies on Apache Calcite. See the SQL section. - Automatic Discovery Strategy Detection: Hazelcast now automatically detects
the cloud environment it's running on (Kubernetes, AWS, GCP or Azure) and applies
the necessary discovery strategy for the environment. This allows automatically
π§ forming the Hazelcast clusters in cloud environments without any configuration.
π See the Auto Detection section. - π Security Audit Logging: This feature allows observing some important cluster events.
Auditable events have a unique type ID, and contain a timestamp and importance level.
π See the Logging Auditable Events section. - π§ Overriding Configuration: You can now override the configuration entries
π§ of your cluster without changing the declarative configuration files (XML/YAML).
π See the Overriding Configuration section. - Instance Tracking: Hazelcast now writes a file on a Hazelcast member startup
π at the configured location. This file contains metadata about the member such as version, product name
and process ID, and it is not deleted on the member shutdown.
π See the Instance Tracking section.
β¨ Enhancements
- π Improvements in Partial Network Disconnections: Introduced properties
π§ to be configured to detect and resolve the partial network issues among the
π Hazelcast IMDG members. See [#16680] and the Partial Network Partitions section. - Parallel Independent Migrations: Parallelized the partition replica migrations so that
the time needed for rebalancing the partitions after adding
π or removing a member to/from a cluster is reduced. See thehazelcast.partition.max.parallel.migrations
property explanation in the
System Properties appendix. - Multiple Persistent Directories: Added support for multiple mounting
π§ directories in the persistent memory configuration and also thread affinity for NVMs
(Non-Volatile Main Memories).
π See the Using Persistent Memory section. - CP Subsystem Listeners and Metrics: Added membership and group availability
π listeners for CP Subsystem. Also, added support for publishing CP Subsystem and CP data structure
π statistics via Metrics. See the CP Subsystem Listeners section. - GenericRecord: Added support for accessing domain objects without domain classes.
π See the GenericRecord section. - Thread Affinity: Introduced the CPU thread affinity; threads can have affinity for
π€ particular CPUs and using this you have a better control on the latency and a better throughput.
π See the CPU Thread Affinity section. - Trusted Interfaces: It is now possible to restrict the source IP addresses
π from which the Management Center operations are allowed. See the Limiting Source Addresses section. - π Out-of-the-Box Kerberos Support: Introduced support for Kerberos
authentication protocol which is one of the standard
π solutions for single-sign-on. It also adds the GSSAPI authentication support in
π LDAP configuration. See the Kerberos Authentication Type section. - WAN Throttling Mechanism : This prevents the WAN consumers from
getting overloaded by the WAN producers if transferring the WAN events takes
less time than processing them in the target cluster. This can be the case with
π€ WAN synchronization if the network latency is low enough. It can be configured using
the following properties:
**hazelcast.wan.consumer.invocation.threshold
**hazelcast.wan.consumer.ack.delay.backoff.init
**hazelcast.wan.consumer.ack.delay.backoff.max
**hazelcast.wan.consumer.ack.delay.backoff.multiplier
[#17113] - Priority Queue: Added support for the queues with comparators. Using Priority
Queue, you can define items with higher priority to be polled first.
π See the Priority Queue section. - Implemented a new concurrent High-Density Memory Store index
0οΈβ£ for the queries, based on B+ tree that is enabled by default;
π brings better performance for lookup queries and enables SQL queries. - β± Statistics for Durable and Scheduled Executor Services: Added the statistics for scheduled and
durable executor services, and for the executor of offloaded entry
π¨ processors to be monitored by Management Center.
The following are the other improvements performed to solve the enhancement
issues opened by the Hazelcast customers/team.- β Added the missing
replicatedmap-permission
support to the
π§ XML and YAML configuration handlers. [#17812] - π» Replaced the word "should" with "must" in the exception messages
to improve the user focus and indicate obligation rather than advice. [#17710] - β Added the
getAndDecrement()
operation support for theIAtomicLong
data structure. [#17699] - π§ Introduced the
mode
configuration attribute for the
persistent memory. It defines operational mode of it which can be
eitherMOUNTED
or SYSTEM_MEMORY. [#17696] - β Added the support for checking duplicate fields when building
class definitions. [#17682] - β Added the support for IList with nullable items to the client protocol. [#17690]
- π Improved the robustness of the diagnostics log writer and its plugins. [#17665]
- β Added the client name tag to the client related metrics. [#17654]
- β Added a check for IMap
READ
permissions for the maps involved in the
SQL query executions. [#17612] - β Added the support for accessing the Hazelcast instance in the
login modules and credential factories. [#17605] - π§ Introduced a simplified configuration of Kerberos authentication
for simple scenarios. [#17573] - β Added statistics support for IBM, OpenJ9, ZGC and Shenandoah. [#17561]
- π§ Introduced a state-tracking mechanism for the external configuration
π§ parser; all mismatched/unapplied configuration entries coming from
environment variables or system properties are now logged. [#17559] - β‘οΈ Updated the
jackson.version
to 2.11.2 and
SnakeYAML
to 2.1. [#17484], [#17446] - β Added support for the merge operation in IMap. [#17419]
- β Added public classes to expose the member- and
client-side caching provider implementations (in the JCache implementation)
without referring to internal classes. [#17320] - π Improved the entry processing mechanism so that the read-only processors on backups
are not executed anymore. [#17318] - π Improved
CacheSimpleConfig
so that it now accepts cache name in its constructors. [#17287] - β Added the statistics for schedule and durable executor services,
and for the executor of offloaded entry processors to be
monitored by Management Center. [#17253] - π² Cleaned up the noisy initial log messages on Hazelcast startups. [#17243]
- β± Introduced auto-disposable tasks for the scheduled executor service. [#17215]
- β Added client labels to
ClientEndpointImpl.toString()
to simplify the client identification (in addition to client uuid)
on the Hazelcast member side. [#17178] - β Added exception handling when creating caches with tenant control. [#17122]
- β Added support for
IMap.compute()
. [#17030] - β Added support to allow submitting and executing operations while a member
is shutting down to increase the availability of a cluster more that keeps
large data. [#17028] - β Added
ExtendedMapEntry
in order to create a mechanism for setting TTLs in
entry processors. [#16991] - β Added
hazelcast-azure
discovery plugin to thehazelcast-all
module. [#16982] - Introduced the
ConfigRecognition
API that determines if a
π§ provided declarative configuration is recognized by the rules defined in a given
implementation. Along with the API the following three implementations are added:
**MemberConfigRecognizer
for recognizing member XML and YAML configurations
**ClientConfigRecognizer
for recognizing client XML and YAML configurations
**ClientFailoverConfigRecognizer
for recognizing failover client XML and YAML configurations [#16958] - β Added the
publishAll()
,publishAllAsync()
andpublishAsync()
methods to ITopic. [#16946] - π Made the diagnostics logs cloud-friendly so that they
can also be sent tostdout
in addition to sending to local files. [#16941] - π Improved the mechanism of partition table updates to
β‘οΈ eliminate the latencies when these updates are sent to the clients by a member. [#16939] - π Improved the client configuration such that when the client
π§ failover configuration is provided, the reconnect mode cannot
be set asoff
; it now fails fast in this case. [#16886] - π Introduced the
forEach()
loop support for IMap. [#16877] - β Added the
load()
method toConfig
,ClientConfig
and
π§ClientFailoverConfig
classes. This method loads the configuration
π§ with the known locations. If not found, the default configuration is returned. [#16864] - π Improved the
deleteAll()
(MapStore) and ITopic Javadocs. [#16862], [#16861], - β Added support for
IMap.computeIfAbsent()
. [#16808] - β Added the
setAll()
andsetAllAsync()
methods for IMap. [#16787] - β Added the creation time metric for the executor service. [#16775]
- π Improved an unclear exception message for credentials. [#16756]
- β‘οΈ Updated the related aspects of Hazelcast IMDG after the
π changes done on the client protocol side to add the ability
to add new parameters, methods, services, events and custom types
to codecs. [#16718] - Introduced the
putAllAsync()
method for MultiMap. [#16698] - Defined metrics for ISet and IList collections. [#16665]
- β¬οΈ Upgraded log4j2 version to 2.13.0. [#16654]
- π Improved the
computeIfPresent()
implementation so that now it keeps a
π― clone of the old/existing value and uses that for replace/delete operations. [#16636] - π² Introduced the
hazelcast.logging.details.enabled
property
π² to make the logging of cluster version, name and IP optional to
β¬ decrease the noise in the logs when, for example, you have a single-member cluster. [#16622] - β¬οΈ Upgraded the Hazelcast Kubernetes plugin version to 2.0.1. [#16590]
- β Added the support for automatically detecting the classloader
π of a type for the user code deployment feature. [#16585] - Made
IMap.putAllAsync()
andIMap.submitToKeys()
methods public API. [#16449] - π» Clarified the exception message when you connect to a cluster with an
invalid cluster name. [#15099] - π¨ Refactored the check and retry initialization logic of
ReplicatedMapProxy
so that they are performed in parallel for different
partitions. [#14331] - β Added a test for the
ClientConsoleApp
class. [#12298] - π Improved the behavior of
ConcurrentMap.computeIfPresent
:
combined single client-server round trips instead of two (forget
and
replace
methods). [#11958]
π₯ Breaking Changes
- Starting a standalone Hazelcast instance requires disabling Auto Detection joiner
(before it required disabling Multicast joiner). [#17112] - In a CP subsystem session, a generic
IllegalStateException
was being thrown when Hazelcast
is shutdown. Now the same situation throwsHazelcastInstanceNotActiveException
. [#17120] - 0οΈβ£ Implemented and/or overridden the default methods in Java 8 collections,
such ascomputeIfAbsent()
,forEach()
compute()
andreplaceAll()
for maps. [#14913]
π Fixes
- π Fixed an exception in the
/node-state
REST calls when the member
is not fully activated. [#17798] - π Fixed an issue where Hazelcast was not releasing the acquired lock
sessions that fail for the reasons other than session expiration and
wait key cancellation. [#17697] - π Fixed an issue where Hazelcast was returning
false
if a client
is successfully deregistered from any member, but events are still
delivered for the non-deregistered ones. [#17646] - π Fixed a data loss issue that was happening while promoting a lite member
to a data member. [#17621] - π Fixed an issue where the configuration was not updating entries' time-to-live
values if the entry processor implements theOffloadable
interface. [#17606] - π Fixed an issue where the caller stacktrace was missing on the
rethrown async runtime exceptions. [#17546] - π Fixed the rendering of diagnostics in case there is an exception
π inside a diagnostics plugin. [#17501] - π Fixed an exception that is thrown when using the entry store API and issuing
aput
into the IMap for an item which is not in the map but
exists in the backing store. [#17441] - π Fixed an issue where the custom load balancers
π§ could not be configured declaratively. [#17415] - π Fixed a race issue when creating a cache (JCache) using
multiple methods with the same cache name but having different keys. [#17286] - π Fixed an issue where the repeated calls of
executeOnKeys()
in Hazelcast clients forNATIVE
maps was causing a continuous
increase in the used memory and exhaustion of the memory pool after a while. [#17276] - π Fixed an issue where
ReliableTopicMessageListener
was firing
β a warning when the client is shutting down. [#17153] - π Fixed an issue where the client was stuck with an outdated
member list after a split-brain scenario. [#17147] - π Fixed the member side user code deployment; it was throwing an exception
when inner classes are used to be loaded. [#17044] - π Fixed the broken interoperability between the
CompletableFuture
methods. [#17020] - π Fixed an issue where touching a map entry having an entry processor working on it
was modifying its time-to-live. [#16987] - π Fixed an issue in the cache service where its pre-join
operation was consideringCacheConfig
as resolved: it
was assuming that key/value types, user customizations and
π§ other cache configurations have been loaded. This was an issue
when the cache is not touched yet. [#16917] - π Fixed an issue where Management Center was not working as expected
π§ when the cluster is set up using advanced network configuration. [#16910] - π Fixed an issue where
ServiceLoader
was round-tripping between URL and URI,
and consequently loses the associatedURLStreamHandler
when trying to load
Hazelcast from a custom class loader. [#16846] - π Fixed an issue where the class definitions, that are registered explicitly in
π§ the serialization configuration and have the same class ID in different factories,
were not handled properly. [#16831] - π Fixed the
NullPointerException
inIndexCopyBehavior.NEVER
mode. [#16784] - π Fixed an issue where the client XML configuration could not
properly handle the empty Near Cache name. [#16768] - π Fixed an issue where the client permissions for Reliable Topic and Ringbuffer
were missing. [#16755] - π Fixed an issue where the type information was missing the Metrics MBeans. [#16747]
- π Fixed an issue where the REST API was always requiring the call URLs
to end with a slash character. [#16688] - π Fixed an issue where the service URL for Eureka could not be set
π§ using the declarative configuration. [#16679] - π Fixed an issue where the wait key of a blocking call within
a Raft invocation was still being reported as a live operation,
when the key times out. [#16614] - π Fixed an issue where the upload of classes using the client
π user code deployment were not successful when they are retrieved not
in their created order. [#16612] - π Fixed an issue where the size() method was returning a negative
value when map, cache and multimap contain more than Integer.MAX_VALUE entries. [#16594] - π Fixed an invalidation issue when using a transactional map
from a cache with a Near Cache: the cache invalidation event occurs
when thetransactionalMap.put
method is called. As a result,
the entry was getting invalidated before the change is committed to the map. [#16579] - π Fixed an issue where
InPredicate
was not invoking value comparison when the
read attribute is null. [#15100] - π Fixed an issue where Map, Cache, MultiMap data structures
were returning negative values (size()
) when the size is more than
Integer.MAX_VALUE
. [#14935] - π Fixed an issue when a Hazelcast client calls the distributed executor service
π» and the callable throws an exception with a custom type, then the exception
was not being transported to the client. [#9753]
Contributors
We would like to thank the contributors from our open source
π community who worked on this release: - SQL Implementation: Implemented the SQL engine that
Previous changes from v4.1-BETA
-
π This document lists the new features, enhancements, fixed issues and, removed or deprecated features for Hazelcast IMDG 4.1-BETA-1 release. The numbers in the square brackets refer to the issues in Hazelcast's GitHub repositories.
π New Features
- Instance Tracking: It is a feature which writes a file on the Hazelcast instance startup
π at the configured location. This file contains metadata about the instance, such as version, product name
and process ID, and it is not deleted on the member shutdown.
π See https://docs.hazelcast.org/docs/4.1-BETA-1/manual/html-single/#instance-tracking. - SQL Implementation: Implemented the SQL engine that
π supports map scans, index scans, projections and filters.
It also introduces thehazelcast-sql
module to handle the
SQL engine's dependencies on Apache Calcite.
π See https://docs.hazelcast.org/docs/4.1-BETA-1/manual/html-single/index.html#sql. - Automatic Detection of Discovery Strategy: It tries to automatically detect the
applicable discovery mechanism based on the runtime environment.
π See https://docs.hazelcast.org/docs/4.1-BETA-1/manual/html-single/index.html#auto-detection. - π§ Overriding Configuration: You can now override the configuration entries
π§ of your cluster without changing the declarative configuration files (XML/YAML).
π See the https://docs.hazelcast.org/docs/4.1-BETA-1/manual/html-single/index.html#overriding-configuration. - Auditlog: This feature allows observing some important cluster events.
Auditable events have a unique type ID, and contain a timestamp and importance level.
π See https://docs.hazelcast.org/docs/4.1-BETA-1/manual/html-single/index.html#auditlog.
β¨ Enhancements
- π Improvements in Partial Network Disconnections: Introduced properties
π§ to be configured to detect and resolve the partial network issues among the
Hazelcast IMDG members.
π See #16680 and the https://docs.hazelcast.org/docs/4.1-BETA-1/manual/html-single/#partial-network-partitions. - CP Subsystem Listeners: Added membership and group availability
listeners for CP Subsystem.
π See https://docs.hazelcast.org/docs/4.1-BETA-1/manual/html-single/#cp-subsystem-listeners. - Trusted Interfaces: It is now possible to restrict the source IP addresses
from which the Management Center operations are allowed.
π See https://docs.hazelcast.org/docs/4.1-BETA-1/manual/html-single/#limiting-source-addresses. - π Out-of-the-Box Kerberos Support: Introduced support for Kerberos
authentication protocol which is one of the standard
π solutions for single-sign-on. It also adds the GSSAPI authentication support in
π§ LDAP configuration.
π See https://docs.hazelcast.org/docs/4.1-BETA-1/manual/html-single/#kerberos-authentication-type. - WAN Throttling Mechanism : This prevents the WAN consumers from
getting overloaded by the WAN producers if transferring the WAN events takes
less time than processing them in the target cluster. This can be the case with
π€ WAN synchronization if the network latency is low enough. It can be configured using
the following properties:
**hazelcast.wan.consumer.invocation.threshold
**hazelcast.wan.consumer.ack.delay.backoff.init
**hazelcast.wan.consumer.ack.delay.backoff.max
**hazelcast.wan.consumer.ack.delay.backoff.multiplier
#17113
The following are the other improvements performed to solve the enhancement
issues opened by the Hazelcast customers/team.- β Added support for the merge operation in IMap. [#17419]
- β Added support for publishing CP Subsystem and CP data structure
statistics via Metrics. [#17369] - β Added public classes to expose the member- and
client-side caching provider implementations (in the JCache implementation)
without referring to internal classes. [#17320] - π Improved the entry processing mechanism so that the read-only processors on backups
are not executed anymore. [#17318] - π Improved
CacheSimpleConfig
so that it now accepts cache name in its constructors. [#17287] - β Added support for advanced persistent memory configuration. [#17282]
- π² Cleaned up the noisy initial log messages on Hazelcast startups. [#17243]
- β± Introduced auto-disposable tasks for the scheduled executor service. [#17215]
- β Added support for configurable priority queues. [#17201]
- Parallelized the partition replica migrations so that
the time needed for rebalancing the partitions after adding
or removing a member to/from a cluster is reduced. [#17197] - β Added support for basic SQL expressions. [#17183]
- β Added client labels to
ClientEndpointImpl.toString()
to simplify the client identification (in addition to client uuid)
on the Hazelcast member side. [#17178] - β Added the statistics entry to phone home, that counts the caches having WAN replication
π§ configured. [#17143] - β Added support for tenant control when creating caches. [#17122]
- β Added support for accessing domain objects without domain classes (
GenericRecord
). [#17105] - β Added metric count support for sets, and maps having backup reads enabled,
π§ query caches, map stores, custom attributes and WAN replication configurations.
[#17053], [#17071], [#17069], [#17081] - β Added support for
IMap.compute()
. [#17030] - β Added support to allow submitting and executing operations while a member
is shutting down to increase the availability of a cluster more that keeps
large data. [#17028] - β Added
ExtendedMapEntry
in order to create a mechanism for setting TTLs in
entry processors. [#16991] - β Added
hazelcast-azure
discovery plugin to thehazelcast-all
module. [#16982] - Introduced the
ConfigRecognition
API that determines if a
π§ provided declarative configuration is recognized by the rules defined in a given
implementation. Along with the API the following three implementations are added:
**MemberConfigRecognizer
for recognizing member XML and YAML configurations
**ClientConfigRecognizer
for recognizing client XML and YAML configurations
**ClientFailoverConfigRecognizer
for recognizing failover client XML and YAML configurations
[#16958] - π Made the diagnostics logs more cloud-friendly so that they are sent to
stdout
instead of sending to local files. [#16941] - π Improved the mechanism of partition table updates to
β‘οΈ eliminate the latencies when these updates are sent to the clients by a member. [#16939] - π Improved the client configuration such that when the client
π§ failover configuration is provided, the reconnect mode cannot
be set asoff
; it now fails fast in this case. [#16886] - π Introduced the
forEach()
loop support for IMap. [#16877] - β Added the
load()
method toConfig
,ClientConfig
and
π§ClientFailoverConfig
classes. This method loads the configuration
π§ with the known locations. If not found, the default configuration is returned. [#16864] - π Improved the
deleteAll()
(MapStore) and ITopic Javadocs. [#16862], [#16861], - Introduced the
ServerConnection
andClientConnection
interfaces
that extendConnection
for cleaning up purposes. [#16849] - Implemented the
root
operator for the SQL engine
responsible for getting the final result stream. [#16829] - β Added support for
IMap.computeIfAbsent()
. [#16808] - Introduced SQL thread pools for query processing. [#16805]
- Introduced the network protocol, base executor and row
interfaces for the SQL engine. [#16799], [#16762] - β Added the
setAll()
andsetAllAsync()
methods for IMap. [#16787] - β Added the
writeOrdered()
method to theConnection
class
for the purpose of ordered delivery of messages. [#16776] - β Added the creation time metric for the executor service. [#16775]
- π Improved an unclear exception message for credentials. [#16756]
- β‘οΈ Updated the related aspects of Hazelcast IMDG after the
π changes done on the client protocol side to add the ability
to add new parameters, methods, services, events and custom types
to codecs. [#16718] - β Added the
offset
parameter that can be used while creating
inputs inBufferObjectDataInput
. [#16701] - Introduced the
putAllAsync()
method for MultiMap. [#16698] - Defined metrics for ISet and IList collections. [#16665]
- β¬οΈ Upgraded log4j2 version to 2.13.0. [#16654]
- π Renamed MultiMap proxy implementation to follow the established naming convention:
ObjectMultiMapProxy
->MultiMapProxyImpl
. [#16637] - π Improved the
computeIfPresent()
implementation so that now it keeps a
π― clone of the old/existing value and uses that for replace/delete operations. [#16636] - π² Introduced the
hazelcast.logging.details.enabled
property
π² to make the logging of cluster version, name and IP optional to
β¬ decrease the noise in the logs when, for example, you have a single-member cluster. [#16622]
- β¬οΈ Upgraded the Hazelcast Kubernetes plugin version to 2.0.1. [#16590]
- Added the support for automatically detecting the classloader
π of a type for the user code deployment feature. [#16585]- Made
IMap.putAllAsync()
andIMap.submitToKeys()
methods public API. [#16449] - Implemented the base type system for SQL: the base SQL data types
have been defined and mapped to the corresponding Java types.
Type information is used by executor stages to use the right strategy
of expression evaluation. [#15241] - π» Clarified the exception message when you connect to a cluster with an
invalid group name. [#15099] - π¨ Refactored the check and retry initialization logic of
ReplicatedMapProxy
so that they are performed in parallel for different
partitions. [#14331] - β Added a test for the
ClientConsoleApp
class. [#12298] - π Improved the behavior of
ConcurrentMap.computeIfPresent
:
combined single client-server round trips instead of two (forget
and
replace
methods). [#11958]
- Made
π₯ Breaking Changes
- In a CP subsystem session, a generic
IllegalStateException
was being thrown when Hazelcast
is shutdown. Now the same situation throwsHazelcastInstanceNotActiveException
. [#17120] - The
TcpIpConnection
class has been renamed asServerConnection
. [#16839]
π Fixes
- π Fixed an issue where the custom load balancers
π§ could not be configured declaratively. [#17415] - π Fixed the issue of dangling pointers in global indexes. [#17338]
- π Fixed a race issue when creating a cache (JCache) using
multiple methods with the same cache name but having different keys.[#17286] - π Fixed an issue where the repeated calls of
executeOnKeys()
in Hazelcast clients forNATIVE
maps was causing a continuous
increase in the used memory and exhaustion of the memory pool after a while. [#17276] - π Fixed an issue where
ReliableTopicMessageListener
was firing a warning when the client is shutting down. [#17153] - π Fixed an issue where the client was stuck with an outdated
member list after a split-brain scenario. [#17147] - π Fixed the broken interoperability between the
CompletableFuture
methods. [#17020] - π Fixed an issue where touching a map entry having an entry processor working on it
was modifying its time-to-live. [#16987] - π Fixed an issue in the cache service where its pre-join
operation was consideringCacheConfig
as resolved: it
was assuming that key/value types, user customizations and
π§ other cache configurations have been loaded. This was an issue
when the cache is not touched yet. [#16917] - π Fixed an issue where Management Center was not working as expected
π§ when the cluster is set up using advanced network configuration. [#16910] - π Fixed an issue where
ServiceLoader
was round-tripping between URL and URI,
and consequently loses the associatedURLStreamHandler
when trying to load
Hazelcast from a custom class loader. [#16846] - π Fixed an issue where the class definitions, that are registered explicitly in
π§ the serialization configuration and have the same class ID in different factories,
were not handled properly. [#16831] - π Fixed the
NullPointerException
inIndexCopyBehavior.NEVER
mode. [#16784] - π Fixed an issue where the client permissions for Reliable Topic and Ringbuffer
we're missing. [#16755] - π Fixed an issue where the type information was missing the Metrics MBeans. [#16747]
- π Fixed an issue where the RESP API was always requiring the call URLs
to end with a slash character. [#16688] - π Fixed an issue where the service URL for Eureka could not be set
π§ using the declarative configuration. [#16679] - π Fixed an issue where the wait key of a blocking call within
a Raft invocation was still being reported as a live operation,
when the key times out. [#16614] - π Fixed an issue where the upload of classes using the client
π user code deployment were not successful when they are retrieved not
in their created order. [#16612] - π Fixed an issue where the size() method was returning a negative
value when map, cache and multimap contain more than Integer.MAX_VALUE entries. [#16594] - π Fixed an invalidation issue when using a transactional map
from a cache with a Near Cache: the cache invalidation event occurs
when thetransactionalMap.put
method is called. As a result,
the entry was getting invalidated before the change is committed to the map. [#16579] - π Fixed an issue where
InPredicate
was not invoking value comparison when the
read attribute is null. [#15100] - π Fixed an issue where Map, Cache, MultiMap data structures
were returning negative values (size()
) when the size is more than
Integer.MAX_VALUE
. [#14935]
Contributors
We would like to thank the contributors from our open source
π community who worked on this release:- Inel Pandzic
- Omid Pourhadi
- Ryan Lindeborg
- Santhosh Kumar
- Bartek Kowalczyk
- Ashutosh Agrawal
- ΓdΓ‘m Berkecz
- HugeOrangeDev
- Harry Tran
- Stephen Russett
- Ulf Adams
- Abdul Aziz Ali
- Dmitry Konstantinov
- Anmol Chaddha
- lprimak
- keteracel
- Burak Sezer
- wangumer
- Marcin L
- Instance Tracking: It is a feature which writes a file on the Hazelcast instance startup