mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
69 lines
1.7 KiB
Go
69 lines
1.7 KiB
Go
// Copyright 2016 The etcd Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package main
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"log"
|
|
"time"
|
|
|
|
"github.com/coreos/etcd/clientv3"
|
|
"google.golang.org/grpc"
|
|
"google.golang.org/grpc/codes"
|
|
)
|
|
|
|
func runLeaseRenewer(getClient getClientFunc) {
|
|
c := getClient()
|
|
ctx := context.Background()
|
|
|
|
for {
|
|
var (
|
|
l *clientv3.LeaseGrantResponse
|
|
lk *clientv3.LeaseKeepAliveResponse
|
|
err error
|
|
)
|
|
for {
|
|
l, err = c.Lease.Grant(ctx, 5)
|
|
if err == nil {
|
|
break
|
|
}
|
|
}
|
|
expire := time.Now().Add(time.Duration(l.TTL-1) * time.Second)
|
|
|
|
for {
|
|
lk, err = c.Lease.KeepAliveOnce(ctx, l.ID)
|
|
if grpc.Code(err) == codes.NotFound {
|
|
if time.Since(expire) < 0 {
|
|
log.Printf("bad renew! exceeded: %v", time.Since(expire))
|
|
for {
|
|
lk, err = c.Lease.KeepAliveOnce(ctx, l.ID)
|
|
fmt.Println(lk, err)
|
|
time.Sleep(time.Second)
|
|
}
|
|
}
|
|
log.Printf("lost lease %d, expire: %v\n", l.ID, expire)
|
|
break
|
|
}
|
|
if err != nil {
|
|
continue
|
|
}
|
|
expire = time.Now().Add(time.Duration(lk.TTL-1) * time.Second)
|
|
log.Printf("renewed lease %d, expire: %v\n", lk.ID, expire)
|
|
time.Sleep(time.Duration(lk.TTL-2) * time.Second)
|
|
}
|
|
}
|
|
}
|