Skip to content

Commit b48ade9

Browse files
committed
Move away from using etcd modifiedIndex in compare-and-swap
Signed-off-by: Sukhesh Halemane <[email protected]>
1 parent 4607285 commit b48ade9

File tree

1 file changed

+15
-27
lines changed

1 file changed

+15
-27
lines changed

etcdLock.go

+15-27
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,19 @@ const EtcdErrorCodeKeyExists = 105
1717

1818
// Lock object
1919
type Lock struct {
20-
name string
21-
myID string
22-
isAcquired bool
23-
isReleased bool
24-
holderID string
25-
ttl uint64
26-
timeout uint64
27-
modifiedIndex uint64
28-
eventChan chan LockEvent
29-
stopChan chan bool
30-
watchCh chan *etcd.Response
31-
watchStopCh chan bool
32-
client *etcd.Client
33-
mutex *sync.Mutex
20+
name string
21+
myID string
22+
isAcquired bool
23+
isReleased bool
24+
holderID string
25+
ttl uint64
26+
timeout uint64
27+
eventChan chan LockEvent
28+
stopChan chan bool
29+
watchCh chan *etcd.Response
30+
watchStopCh chan bool
31+
client *etcd.Client
32+
mutex *sync.Mutex
3433
}
3534

3635
// Create a new lock
@@ -77,14 +76,11 @@ func (ep *Lock) Release() error {
7776
// If the lock was acquired, release it
7877
if ep.isAcquired {
7978
// Update TTL on the lock
80-
resp, err := ep.client.CompareAndDelete(keyName, ep.myID, ep.modifiedIndex)
79+
resp, err := ep.client.CompareAndDelete(keyName, ep.myID, 0)
8180
if err != nil {
8281
log.Errorf("Error Deleting key. Err: %v", err)
8382
} else {
8483
log.Infof("Deleted key lock %s, Resp: %+v", keyName, resp)
85-
86-
// Update modifiedIndex
87-
ep.modifiedIndex = resp.Node.ModifiedIndex
8884
}
8985
}
9086

@@ -173,7 +169,6 @@ func (ep *Lock) acquireLock() {
173169
// Successfully acquired the lock
174170
ep.isAcquired = true
175171
ep.holderID = ep.myID
176-
ep.modifiedIndex = resp.Node.ModifiedIndex
177172
ep.mutex.Unlock()
178173

179174
// Send acquired message to event channel
@@ -197,7 +192,6 @@ func (ep *Lock) acquireLock() {
197192
// We have already acquired the lock. just keep refreshing it
198193
ep.isAcquired = true
199194
ep.holderID = ep.myID
200-
ep.modifiedIndex = resp.Node.ModifiedIndex
201195
ep.mutex.Unlock()
202196

203197
// Send acquired message to event channel
@@ -300,8 +294,7 @@ func (ep *Lock) refreshLock() {
300294
select {
301295
case <-time.After(refreshIntvl):
302296
// Update TTL on the lock
303-
resp, err := ep.client.CompareAndSwap(keyName, ep.myID, ep.ttl,
304-
ep.myID, ep.modifiedIndex)
297+
resp, err := ep.client.CompareAndSwap(keyName, ep.myID, ep.ttl, ep.myID, 0)
305298
if err != nil {
306299
log.Errorf("Error updating TTl. Err: %v", err)
307300

@@ -317,11 +310,6 @@ func (ep *Lock) refreshLock() {
317310
return
318311
} else {
319312
log.Debugf("Refreshed TTL on lock %s, Resp: %+v", keyName, resp)
320-
321-
ep.mutex.Lock()
322-
// Update modifiedIndex
323-
ep.modifiedIndex = resp.Node.ModifiedIndex
324-
ep.mutex.Unlock()
325313
}
326314
case watchResp := <-ep.watchCh:
327315
// Since we already acquired the lock, nothing to do here

0 commit comments

Comments
 (0)