@@ -163,7 +163,7 @@ Using Map
163163Hazelcast Map is a distributed dictionary. Through the Python client,
164164you can perform operations like reading and writing from/to a Hazelcast
165165Map with the well known get and put methods. For details, see the `Map
166- section <https://docs.hazelcast.org/docs /latest/manual/html-single/index.html# map> `__
166+ section <https://docs.hazelcast.com/imdg /latest/data-structures/ map> `__
167167in the Hazelcast IMDG Reference Manual.
168168
169169A Map usage example is shown below.
@@ -186,7 +186,7 @@ Using MultiMap
186186
187187Hazelcast MultiMap is a distributed and specialized map where you can
188188store multiple values under a single key. For details, see the `MultiMap
189- section <https://docs.hazelcast.org/docs /latest/manual/html-single/index.html# multimap> `__
189+ section <https://docs.hazelcast.com/imdg /latest/data-structures/ multimap> `__
190190in the Hazelcast IMDG Reference Manual.
191191
192192A MultiMap usage example is shown below.
@@ -216,7 +216,7 @@ Hazelcast Replicated Map is a distributed key-value data structure where
216216the data is replicated to all members in the cluster. It provides full
217217replication of entries to all members for high speed access. For
218218details, see the `Replicated Map
219- section <https://docs.hazelcast.org/docs /latest/manual/html-single/index.html# replicated-map> `__
219+ section <https://docs.hazelcast.com/imdg /latest/data-structures/ replicated-map> `__
220220in the Hazelcast IMDG Reference Manual.
221221
222222A Replicated Map usage example is shown below.
@@ -243,7 +243,7 @@ Using Queue
243243
244244Hazelcast Queue is a distributed queue which enables all cluster members
245245to interact with it. For details, see the `Queue
246- section <https://docs.hazelcast.org/docs /latest/manual/html-single/index.html# queue> `__
246+ section <https://docs.hazelcast.com/imdg /latest/data-structures/ queue> `__
247247in the Hazelcast IMDG Reference Manual.
248248
249249A Queue usage example is shown below.
@@ -273,7 +273,7 @@ Using Set
273273
274274Hazelcast Set is a distributed set which does not allow duplicate
275275elements. For details, see the `Set
276- section <https://docs.hazelcast.org/docs /latest/manual/html-single/index.html# set> `__
276+ section <https://docs.hazelcast.com/imdg /latest/data-structures/ set> `__
277277in the Hazelcast IMDG Reference Manual.
278278
279279A Set usage example is shown below.
@@ -300,7 +300,7 @@ Using List
300300
301301Hazelcast List is a distributed list which allows duplicate elements and
302302preserves the order of elements. For details, see the `List
303- section <https://docs.hazelcast.org/docs /latest/manual/html-single/index.html# list> `__
303+ section <https://docs.hazelcast.com/imdg /latest/data-structures/ list> `__
304304in the Hazelcast IMDG Reference Manual.
305305
306306A List usage example is shown below.
@@ -334,7 +334,7 @@ items are overwritten or expired. You can reach each element in a
334334Ringbuffer using a sequence ID, which is mapped to the elements between
335335the head and tail (inclusive) of the Ringbuffer. For details, see the
336336`Ringbuffer
337- section <https://docs.hazelcast.org/docs /latest/manual/html-single/index.html# ringbuffer> `__
337+ section <https://docs.hazelcast.com/imdg /latest/data-structures/ ringbuffer> `__
338338in the Hazelcast IMDG Reference Manual.
339339
340340A Ringbuffer usage example is shown below.
@@ -410,7 +410,7 @@ Using Topic
410410
411411Hazelcast Topic is a distribution mechanism for publishing messages that
412412are delivered to multiple subscribers. For details, see the `Topic
413- section <https://docs.hazelcast.org/docs /latest/manual/html-single/index.html# topic> `__
413+ section <https://docs.hazelcast.com/imdg /latest/data-structures/ topic> `__
414414in the Hazelcast IMDG Reference Manual.
415415
416416A Topic usage example is shown below.
@@ -444,7 +444,7 @@ begin, commit and rollback a transaction. You can obtain
444444transaction-aware instances of queues, maps, sets, lists and multimaps
445445via the ``Transaction `` object, work with them and commit or rollback in
446446one shot. For details, see the `Transactions
447- section <https://docs.hazelcast.org/docs /latest/manual/html-single/index.html# transactions> `__
447+ section <https://docs.hazelcast.com/imdg /latest/transactions/ transactions> `__
448448in the Hazelcast IMDG Reference Manual.
449449
450450.. code :: python
@@ -521,7 +521,7 @@ Hazelcast ``PNCounter`` (Positive-Negative Counter) is a CRDT
521521positive-negative counter implementation. It is an eventually consistent
522522counter given there is no member failure. For details, see the `PN
523523Counter
524- section <https://docs.hazelcast.org/docs /latest/manual/html-single/index.html# pn-counter> `__
524+ section <https://docs.hazelcast.com/imdg /latest/data-structures/ pn-counter> `__
525525in the Hazelcast IMDG Reference Manual.
526526
527527A PN Counter usage example is shown below.
@@ -551,7 +551,7 @@ Hazelcast ``FlakeIdGenerator`` is used to generate cluster-wide unique
551551identifiers. Generated identifiers are long primitive values and are
552552k-ordered (roughly ordered). IDs are in the range from ``0 `` to ``2^63-1 ``
553553(maximum signed long value). For details, see the `FlakeIdGenerator
554- section <https://docs.hazelcast.org/docs /latest/manual/html-single/index.html#flakeidgenerator > `__
554+ section <https://docs.hazelcast.com/imdg /latest/data-structures/flake-id-generator > `__
555555in the Hazelcast IMDG Reference Manual.
556556
557557.. code :: python
@@ -611,7 +611,7 @@ All data structures within CP Subsystem are available through
611611
612612Before using Atomic Long, Lock, and Semaphore, CP Subsystem has to be
613613enabled on cluster-side. Refer to `CP
614- Subsystem <https://docs.hazelcast.org/docs /latest/manual/html-single/# cp-subsystem> `__
614+ Subsystem <https://docs.hazelcast.com/imdg /latest/cp-subsystem/ cp-subsystem> `__
615615documentation for more information.
616616
617617Data structures in CP Subsystem run in CP groups. Each CP group elects
@@ -659,7 +659,7 @@ execution semantics. It goes with at-least-once execution semantics by
659659default and can cause an API call to be committed multiple times in case
660660of CP member failures. It can be tuned to offer at-most-once execution
661661semantics. Please see
662- `fail-on-indeterminate-operation-state <https://docs.hazelcast.org/docs /latest/manual/html-single/index.html# cp-subsystem- configuration >`__
662+ `fail-on-indeterminate-operation-state <https://docs.hazelcast.com/imdg /latest/cp-subsystem/ configuration >`__
663663server-side setting.
664664
665665Using Lock
@@ -689,7 +689,7 @@ A basic Lock usage example is shown below.
689689
690690 FencedLock works on top of CP sessions. It keeps a CP session open while
691691the lock is acquired. Please refer to `CP
692- Session <https://docs.hazelcast.org/docs /latest/manual/html-single/index.html# cp-sessions> `__
692+ Session <https://docs.hazelcast.com/imdg /latest/cp-subsystem/ sessions> `__
693693documentation for more information.
694694
695695By default, FencedLock is reentrant. Once a caller acquires the lock, it
@@ -737,7 +737,7 @@ After that, once Client-1 comes back alive, its write request will be
737737rejected by the external service, and only Client-2 will be able to
738738safely talk to it.
739739
740- .. figure :: https://docs.hazelcast.org/docs /latest/manual/html-single/images /FencedLock.png
740+ .. figure :: https://docs.hazelcast.com/imdg /latest/_images /FencedLock.png
741741 :alt: CP Fenced Lock diagram
742742
743743 CP Fenced Lock diagram
@@ -824,7 +824,7 @@ Semaphore data structure has two variations:
824824 they will not be automatically released. You can use the sessionless
825825 CP Semaphore implementation by enabling JDK compatibility
826826 ``jdk-compatible `` server-side setting. Refer to `Semaphore
827- configuration <https://docs.hazelcast.org/docs /latest/manual/html-single/index.html#semaphore- configuration> `__
827+ configuration <https://docs.hazelcast.com/imdg /latest/cp-subsystem/ configuration> `__
828828 documentation for more details.
829829
830830Using CountDownLatch
@@ -927,7 +927,7 @@ semantics. It goes with at-least-once execution semantics by default and
927927can cause an API call to be committed multiple times in case of CP
928928member failures. It can be tuned to offer at-most-once execution
929929semantics. Please see
930- `fail-on-indeterminate-operation-state <https://docs.hazelcast.org/docs /latest/manual/html-single/index.html# cp-subsystem- configuration >`__
930+ `fail-on-indeterminate-operation-state <https://docs.hazelcast.com/imdg /latest/cp-subsystem/ configuration >`__
931931server-side setting.
932932
933933Distributed Events
@@ -1330,7 +1330,7 @@ The code that runs on the entries is implemented in Java on the server
13301330side. The client side entry processor is used to specify which entry
13311331processor should be called. For more details about the Java
13321332implementation of the entry processor, see the `Entry Processor
1333- section <https://docs.hazelcast.org/docs /latest/manual/html-single/index.html# entry-processor> `__
1333+ section <https://docs.hazelcast.com/imdg /latest/computing/ entry-processor> `__
13341334in the Hazelcast IMDG Reference Manual.
13351335
13361336After the above implementations and configuration are done and you start
@@ -2347,7 +2347,7 @@ Near Cache Invalidation
23472347Invalidation is the process of removing an entry from the Near Cache
23482348when its value is updated or it is removed from the original map (to
23492349prevent stale reads). See the `Near Cache Invalidation
2350- section <https://docs.hazelcast.org/docs /latest/manual/html-single/ #near-cache-invalidation> `__
2350+ section <https://docs.hazelcast.com/imdg /latest/performance/near-cache #near-cache-invalidation> `__
23512351in the Hazelcast IMDG Reference Manual.
23522352
23532353Monitoring and Logging
@@ -2409,7 +2409,7 @@ client as follows:
24092409
24102410After enabling the client statistics, you can monitor your clients using
24112411Hazelcast Management Center. Please refer to the `Monitoring Clients
2412- section <https://docs.hazelcast.org/docs/ management-center/latest/manual/html/index.html#monitoring -clients> `__
2412+ section <https://docs.hazelcast.com/ management-center/latest/monitor-imdg/monitor -clients> `__
24132413in the Hazelcast Management Center Reference Manual for more information
24142414on the client statistics.
24152415
@@ -2519,7 +2519,7 @@ connections.
25192519You can also group your clients using the client labels. These client
25202520groups can be blacklisted in Hazelcast Management Center so that they
25212521can be prevented from connecting to a cluster. See the `related
2522- section <https://docs.hazelcast.org/docs/ management-center/latest/manual/html/index.html#changing-cluster- client-filtering> `__
2522+ section <https://docs.hazelcast.com/ management-center/latest/monitor-imdg/ client-filtering> `__
25232523in the Hazelcast Management Center Reference Manual for more information
25242524on this topic.
25252525
0 commit comments