Skip to main content
0 votes
0 answers
124 views

DynamoDB supports distributed locking thanks to its atomic conditional writes, but I'm not clear exactly how that works. The docs for the DDB lock client say The lock client never stores absolute ...
pail's user avatar
  • 301
1 vote
0 answers
55 views

I've implemented custom locking service with Kotlin and Spring Boot Webflux to prevent transaction of same user is processed at the same time. the second transaction should loop until the first one is ...
DDDDDD's user avatar
  • 11
1 vote
1 answer
695 views

I'm having some trouble understanding the need of a distributed lock. I did think of an example where it may be required but I'm not completely sure. I would appreciate some comments if I'm thinking ...
Laksh Chauhan's user avatar
0 votes
0 answers
634 views

I am using shedlock to implement a use-case of distributed locking. My app is running on 20 machines, and I want scheduler to be executed once in every 5 minutes in any 1 machine by using implicit ...
tusharRawat's user avatar
2 votes
2 answers
1k views

This is a follow up question of: https://github.com/spring-projects/spring-integration/issues/8687 As discussed in the above link, Spring Integration Distributed Lock's concept of TTL is meant for ...
Cui Pengfei 崔鹏飞's user avatar
0 votes
1 answer
602 views

The following code can reproduce the issue https://github.com/cuipengfei/Spikes/blob/master/jpa/spring-jdbc-distributed-lock-issue/ run the test cases in the above code to reproduce before running the ...
Cui Pengfei 崔鹏飞's user avatar
1 vote
1 answer
365 views

I've introduced redisson lock recently, after that its taking 5-7s for. without lock it takes <1s. (testing locally in both cases). Im I doing anything wrong here. This is local figure, but in ...
abhijeet104's user avatar
2 votes
0 answers
477 views

We have identical services running on two Azure regional environments along with a redis system that is replicated/synchronised across the two regions. This is enterprise active-active replication. ...
amkingTRP's user avatar
  • 288
0 votes
1 answer
517 views

Distributed lock using redisson- Configure quorum configuration and acquiring lock from majority of nodes Configuration guide where can we find or some examples
Ash's user avatar
  • 21
1 vote
0 answers
152 views

I am evaluating the best approach to distributed locking. The oob reentrant locking support in Ignite is tied to the thread that acquires locks. Our requirements need locking and unlocking not tied to ...
Victor's user avatar
  • 1,267
0 votes
1 answer
483 views

I'm using Consul for service discovery and the KV store, with more than 10 nodes. Let's say that each of these nodes has to increment a counter on the same KV, but has to do it atomically. The way I ...
boston's user avatar
  • 185
2 votes
0 answers
2k views

Background: currently I am investigating the mechanism of distributed lock in order to implement it in our email service to deduplicate in the time the QPS is high. The main article I am reading is ...
Drake's user avatar
  • 175
7 votes
1 answer
4k views

I am reading the Designing Data Intensive Application book. In chapter 8, it discusses the use of Fencing Token for preventing concurrent writes to a network file. The mechanism states that the a Lock ...
y62wang's user avatar
  • 568
0 votes
0 answers
545 views

<redisson.version>3.16.3</redisson.version> readMode: SLAVE Not sure why am I seeing this error. caused by: org.redisson.client.RedisException: ERR WAIT cannot be used with slave instances....
Prashant's user avatar
2 votes
0 answers
106 views

I have a requirement to synchronize concurrent access to a shared resource modified by different processes which run on different hosts. I am thinking to synchronize this by creating a lock table in a ...
Sumit's user avatar
  • 671

15 30 50 per page