From 842e3301ee3bb72ba513454c8a68df4b6ed72849 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Thu, 23 Apr 2020 03:32:18 -0700 Subject: make second lock instant --- weed/shell/exclusive_locker.go | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'weed/shell') diff --git a/weed/shell/exclusive_locker.go b/weed/shell/exclusive_locker.go index 38f5caace..f4938d3e6 100644 --- a/weed/shell/exclusive_locker.go +++ b/weed/shell/exclusive_locker.go @@ -13,6 +13,7 @@ import ( const ( RenewInteval = 4 * time.Second SafeRenewInteval = 3 * time.Second + InitLockInteval = 1 * time.Second ) type ExclusiveLocker struct { @@ -40,17 +41,15 @@ func (l *ExclusiveLocker) RequestLock() { // retry to get the lease for { if err := l.masterClient.WithClient(func(client master_pb.SeaweedClient) error { - resp, err := client.LeaseAdminToken(context.Background(), &master_pb.LeaseAdminTokenRequest{ - PreviousToken: atomic.LoadInt64(&l.token), - PreviousLockTime: atomic.LoadInt64(&l.lockTsNs), - }) + resp, err := client.LeaseAdminToken(context.Background(), &master_pb.LeaseAdminTokenRequest{}) if err == nil { atomic.StoreInt64(&l.token, resp.Token) atomic.StoreInt64(&l.lockTsNs, resp.LockTsNs) } return err }); err != nil { - time.Sleep(RenewInteval) + // println("leasing problem", err.Error()) + time.Sleep(InitLockInteval) } else { break } @@ -93,4 +92,6 @@ func (l *ExclusiveLocker) ReleaseLock() { }) return nil }) + atomic.StoreInt64(&l.token, 0) + atomic.StoreInt64(&l.lockTsNs, 0) } -- cgit v1.2.3