Skip to content

Commit 5c428ce

Browse files
DOC-449 - remove transactions deprecation notice (#1681)
https://hazelcast.atlassian.net/browse/DOC-449
1 parent a2161e0 commit 5c428ce

File tree

5 files changed

+0
-26
lines changed

5 files changed

+0
-26
lines changed

docs/modules/clients/pages/java.adoc

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -406,12 +406,6 @@ each distributed data structure in this Reference Manual.
406406
Transactional distributed objects are supported on the client side.
407407
See xref:transactions:providing-xa-transactions.adoc[Transactions] for more details.
408408

409-
[CAUTION]
410-
.Deprecation Notice for Transactions
411-
====
412-
Transactions have been deprecated, and will be removed as of Hazelcast version 7.0. An improved version of this feature is under consideration. If you are already using transactions, get in touch and share your use case. Your feedback will help us to develop a solution that meets your needs.
413-
====
414-
415409
=== Async Start and Reconnect Modes
416410

417411
Java client can be configured to connect to a cluster in an async manner during the

docs/modules/cluster-performance/pages/pipelining.adoc

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,6 @@ ICache, IAtomicLong, etc. It cannot be used as a transaction mechanism though. S
4747
none of the requests are executed. If you want to use an atomic behavior, see xref:transactions:providing-xa-transactions.adoc[Transactions] for more details.
4848
The pipelining is just a performance optimization, not a mechanism for atomic behavior.
4949

50-
[CAUTION]
51-
.Deprecation Notice for Transactions
52-
====
53-
Transactions have been deprecated, and will be removed as of Hazelcast version 7.0. An improved version of this feature is under consideration. If you are already using transactions, get in touch and share your use case. Your feedback will help us to develop a solution that meets your needs.
54-
====
55-
5650
The pipelines are cheap and should frequently be replaced because they accumulate results. It is fine to have a few hundred or
5751
even a few thousand calls being processed with the pipelining. However, all the responses to all requests are stored in the pipeline
5852
as long as the pipeline is referenced. So if you want to process a huge number of requests, then every few hundred or few

docs/modules/release-notes/pages/5-4-0.adoc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -312,8 +312,6 @@ With this fix, only the members on which the jobs have not been completed are qu
312312
https://github.com/hazelcast/hazelcast/pull/24734[#24734]
313313
* The evaluation tool for IMDG 3.x users (Hazelcast 3 Connector) is removed. In the upcoming releases, a new tool for migrating data from 3.x versions will be introduced.
314314
https://github.com/hazelcast/hazelcast/pull/25051[#25051]
315-
* Transactions have been deprecated, and will be removed as of Hazelcast version 7.0.
316-
An improved version of this feature is under consideration. If you are already using transactions, get in touch and share your use case. Your feedback will help us to develop a solution that meets your needs.
317315
* Portable Serialization has been deprecated. We recommend you use Compact Serialization as Portable Serialization will be removed as of version 7.0.
318316
* The user code deployment API is deprecated, and will be removed in Hazelcast Platform version 6.0. #223
319317

docs/modules/transactions/pages/creating-a-transaction-interface.adoc

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
= Creating a Transaction Interface
22

3-
[CAUTION]
4-
.Deprecation Notice for Transactions
5-
====
6-
Transactions have been deprecated, and will be removed as of Hazelcast version 7.0. An improved version of this feature is under consideration. If you are already using transactions, get in touch and share your use case. Your feedback will help us to develop a solution that meets your needs.
7-
====
8-
93
You create a `TransactionContext` object to begin, commit and rollback
104
a transaction. You can obtain transaction-aware instances of queues,
115
maps, sets, lists and multimaps via `TransactionContext`, work with

docs/modules/transactions/pages/providing-xa-transactions.adoc

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
= Providing XA Transactions
22

3-
[CAUTION]
4-
.Deprecation Notice for Transactions
5-
====
6-
Transactions have been deprecated, and will be removed as of Hazelcast version 7.0. An improved version of this feature is under consideration. If you are already using transactions, get in touch and share your use case. Your feedback will help us to develop a solution that meets your needs.
7-
====
8-
93
XA describes the interface between the global transaction manager and the
104
local resource manager. XA allows multiple resources (such as databases,
115
application servers, message queues and transactional caches) to be accessed

0 commit comments

Comments
 (0)