-
Notifications
You must be signed in to change notification settings - Fork 5.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
owner: refactor logger and err handling in campaign loop #57705
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -90,12 +90,11 @@ type Manager interface { | |
ForceToBeOwner(ctx context.Context) error | ||
} | ||
|
||
const ( | ||
keyOpDefaultTimeout = 5 * time.Second | ||
const keyOpDefaultTimeout = 5 * time.Second | ||
|
||
// WaitTimeOnForceOwner is the time to wait before or after force to be owner. | ||
WaitTimeOnForceOwner = 5 * time.Second | ||
) | ||
// WaitTimeOnForceOwner is the time to wait before or after force to be owner. | ||
// make it a var for test. | ||
var WaitTimeOnForceOwner = 5 * time.Second | ||
|
||
// OpType is the owner key value operation type. | ||
type OpType byte | ||
|
@@ -133,8 +132,7 @@ type ownerManager struct { | |
key string | ||
ctx context.Context | ||
prompt string | ||
logPrefix string | ||
logCtx context.Context | ||
logger *zap.Logger | ||
etcdCli *clientv3.Client | ||
elec atomic.Pointer[concurrency.Election] | ||
sessionLease *atomicutil.Int64 | ||
|
@@ -147,15 +145,13 @@ type ownerManager struct { | |
|
||
// NewOwnerManager creates a new Manager. | ||
func NewOwnerManager(ctx context.Context, etcdCli *clientv3.Client, prompt, id, key string) Manager { | ||
logPrefix := fmt.Sprintf("[%s] %s ownerManager %s", prompt, key, id) | ||
return &ownerManager{ | ||
etcdCli: etcdCli, | ||
id: id, | ||
key: key, | ||
ctx: ctx, | ||
prompt: prompt, | ||
logPrefix: logPrefix, | ||
logCtx: logutil.WithKeyValue(context.Background(), "owner info", logPrefix), | ||
logger: logutil.BgLogger().With(zap.String("key", key), zap.String("id", id)), | ||
sessionLease: atomicutil.NewInt64(0), | ||
} | ||
} | ||
|
@@ -181,8 +177,7 @@ func (m *ownerManager) SetListener(listener Listener) { | |
} | ||
|
||
func (m *ownerManager) ForceToBeOwner(context.Context) error { | ||
logPrefix := fmt.Sprintf("[%s] %s", m.prompt, m.key) | ||
logutil.BgLogger().Info("force to be owner", zap.String("ownerInfo", logPrefix)) | ||
m.logger.Info("force to be owner") | ||
if err := m.refreshSession(util2.NewSessionDefaultRetryCnt, ManagerSessionTTL); err != nil { | ||
return errors.Trace(err) | ||
} | ||
|
@@ -206,7 +201,7 @@ func (m *ownerManager) ForceToBeOwner(context.Context) error { | |
// immediately after we delete their key. | ||
time.Sleep(WaitTimeOnForceOwner) | ||
if err := m.tryToBeOwnerOnce(); err != nil { | ||
logutil.Logger(m.logCtx).Warn("failed to retire owner on older version", zap.Error(err)) | ||
m.logger.Warn("failed to retire owner on older version", zap.Error(err)) | ||
continue | ||
} | ||
break | ||
|
@@ -290,15 +285,13 @@ func (m *ownerManager) CampaignOwner(withTTL ...int) error { | |
if len(withTTL) == 1 { | ||
ttl = withTTL[0] | ||
} | ||
logPrefix := fmt.Sprintf("[%s] %s", m.prompt, m.key) | ||
if m.etcdSes == nil { | ||
logutil.BgLogger().Info("start campaign owner", zap.String("ownerInfo", logPrefix)) | ||
m.logger.Info("start campaign owner") | ||
if err := m.refreshSession(util2.NewSessionDefaultRetryCnt, ttl); err != nil { | ||
return errors.Trace(err) | ||
} | ||
} else { | ||
logutil.BgLogger().Info("start campaign owner with existing session", | ||
zap.String("ownerInfo", logPrefix), | ||
m.logger.Info("start campaign owner with existing session", | ||
zap.String("lease", util2.FormatLeaseID(m.etcdSes.Lease()))) | ||
} | ||
m.wg.Add(1) | ||
|
@@ -322,13 +315,13 @@ func (m *ownerManager) ResignOwner(ctx context.Context) error { | |
return errors.Trace(err) | ||
} | ||
|
||
logutil.Logger(m.logCtx).Warn("resign owner success") | ||
m.logger.Warn("resign owner success") | ||
return nil | ||
} | ||
|
||
func (m *ownerManager) toBeOwner(elec *concurrency.Election) { | ||
m.elec.Store(elec) | ||
logutil.Logger(m.logCtx).Info("become owner") | ||
m.logger.Info("become owner") | ||
if m.listener != nil { | ||
m.listener.OnBecomeOwner() | ||
} | ||
|
@@ -337,7 +330,7 @@ func (m *ownerManager) toBeOwner(elec *concurrency.Election) { | |
// RetireOwner make the manager to be a not owner. | ||
func (m *ownerManager) RetireOwner() { | ||
m.elec.Store(nil) | ||
logutil.Logger(m.logCtx).Info("retire owner") | ||
m.logger.Info("retire owner") | ||
if m.listener != nil { | ||
m.listener.OnRetireOwner() | ||
} | ||
|
@@ -360,80 +353,82 @@ func (m *ownerManager) campaignLoop(campaignContext context.Context) { | |
defer func() { | ||
m.campaignCancel() | ||
if r := recover(); r != nil { | ||
logutil.BgLogger().Error("recover panic", zap.String("prompt", m.prompt), zap.Any("error", r), zap.Stack("buffer")) | ||
m.logger.Error("recover panic", zap.String("prompt", m.prompt), zap.Any("error", r), zap.Stack("buffer")) | ||
metrics.PanicCounter.WithLabelValues(metrics.LabelDDLOwner).Inc() | ||
} | ||
m.wg.Done() | ||
}() | ||
|
||
logCtx := m.logCtx | ||
var err error | ||
leaseNotFoundCh := make(chan struct{}) | ||
for { | ||
if err != nil { | ||
metrics.CampaignOwnerCounter.WithLabelValues(m.prompt, err.Error()).Inc() | ||
} | ||
|
||
select { | ||
case <-m.etcdSes.Done(): | ||
logutil.Logger(logCtx).Info("etcd session done, refresh it") | ||
m.logger.Info("etcd session done, refresh it") | ||
if err2 := m.refreshSession(util2.NewSessionRetryUnlimited, ManagerSessionTTL); err2 != nil { | ||
logutil.Logger(logCtx).Info("break campaign loop, refresh session failed", zap.Error(err2)) | ||
m.logger.Info("break campaign loop, refresh session failed", zap.Error(err2)) | ||
return | ||
} | ||
case <-leaseNotFoundCh: | ||
logutil.Logger(logCtx).Info("meet lease not found error, refresh session") | ||
m.logger.Info("meet lease not found error, refresh session") | ||
if err2 := m.refreshSession(util2.NewSessionRetryUnlimited, ManagerSessionTTL); err2 != nil { | ||
logutil.Logger(logCtx).Info("break campaign loop, refresh session failed", zap.Error(err2)) | ||
m.logger.Info("break campaign loop, refresh session failed", zap.Error(err2)) | ||
return | ||
} | ||
leaseNotFoundCh = make(chan struct{}) | ||
case <-campaignContext.Done(): | ||
failpoint.Inject("MockDelOwnerKey", func(v failpoint.Value) { | ||
if v.(string) == "delOwnerKeyAndNotOwner" { | ||
logutil.Logger(logCtx).Info("mock break campaign and don't clear related info") | ||
m.logger.Info("mock break campaign and don't clear related info") | ||
return | ||
} | ||
}) | ||
logutil.Logger(logCtx).Info("break campaign loop, context is done") | ||
m.logger.Info("break campaign loop, context is done") | ||
return | ||
default: | ||
} | ||
// If the etcd server turns clocks forward,the following case may occur. | ||
// The etcd server deletes this session's lease ID, but etcd session doesn't find it. | ||
// In this time if we do the campaign operation, the etcd server will return ErrLeaseNotFound. | ||
if terror.ErrorEqual(err, rpctypes.ErrLeaseNotFound) { | ||
close(leaseNotFoundCh) | ||
err = nil | ||
continue | ||
} | ||
|
||
elec := concurrency.NewElection(m.etcdSes, m.key) | ||
err = elec.Campaign(campaignContext, m.id) | ||
if err != nil { | ||
logutil.Logger(logCtx).Info("failed to campaign", zap.Error(err)) | ||
continue | ||
} | ||
if err := m.campaignAndWatch(campaignContext); err != nil { | ||
metrics.CampaignOwnerCounter.WithLabelValues(m.prompt, err.Error()).Inc() | ||
|
||
ownerKey, currRev, err := GetOwnerKeyInfo(campaignContext, logCtx, m.etcdCli, m.key, m.id) | ||
if err != nil { | ||
continue | ||
// If the etcd server turns clocks forward,the following case may occur. | ||
// The etcd server deletes this session's lease ID, but etcd session doesn't find it. | ||
// In this time if we do the campaign operation, the etcd server will return ErrLeaseNotFound. | ||
if terror.ErrorEqual(err, rpctypes.ErrLeaseNotFound) { | ||
close(leaseNotFoundCh) | ||
} | ||
m.logger.Info("campaign and watch failed", zap.Error(err)) | ||
} | ||
} | ||
} | ||
|
||
m.toBeOwner(elec) | ||
err = m.watchOwner(campaignContext, m.etcdSes, ownerKey, currRev) | ||
logutil.Logger(logCtx).Info("watch owner finished", zap.Error(err)) | ||
m.RetireOwner() | ||
func (m *ownerManager) campaignAndWatch(ctx context.Context) error { | ||
elec := concurrency.NewElection(m.etcdSes, m.key) | ||
failpoint.InjectCall("beforeElectionCampaign", m.etcdSes) | ||
err := elec.Campaign(ctx, m.id) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
metrics.CampaignOwnerCounter.WithLabelValues(m.prompt, metrics.NoLongerOwner).Inc() | ||
logutil.Logger(logCtx).Info("is not the owner") | ||
ownerKey, currRev, err := GetOwnerKeyInfo(ctx, m.etcdCli, m.key, m.id) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
m.toBeOwner(elec) | ||
|
||
err = m.watchOwner(ctx, m.etcdSes, ownerKey, currRev) | ||
m.logger.Info("watch owner finished", zap.Error(err)) | ||
m.RetireOwner() | ||
|
||
metrics.CampaignOwnerCounter.WithLabelValues(m.prompt, metrics.NoLongerOwner).Inc() | ||
m.logger.Info("is not the owner") | ||
return err | ||
} | ||
|
||
func (m *ownerManager) closeSession() { | ||
if m.etcdSes != nil { | ||
if err := m.etcdSes.Close(); err != nil { | ||
logutil.Logger(m.logCtx).Info("etcd session close failed", zap.Error(err)) | ||
m.logger.Info("etcd session close failed", zap.Error(err)) | ||
} | ||
m.etcdSes = nil | ||
} | ||
|
@@ -447,7 +442,8 @@ func (m *ownerManager) refreshSession(retryCnt, ttl int) error { | |
// One drawback is that when you want to break the campaign loop, and the campaign | ||
// loop is refreshing the session, it might wait for a long time to return, it | ||
// should be fine as long as network is ok, and acceptable to wait when not. | ||
sess, err2 := util2.NewSession(m.ctx, m.logPrefix, m.etcdCli, retryCnt, ttl) | ||
logPrefix := fmt.Sprintf("[%s] %s ownerManager %s", m.prompt, m.key, m.id) | ||
sess, err2 := util2.NewSession(m.ctx, logPrefix, m.etcdCli, retryCnt, ttl) | ||
if err2 != nil { | ||
return errors.Trace(err2) | ||
} | ||
|
@@ -456,26 +452,17 @@ func (m *ownerManager) refreshSession(retryCnt, ttl int) error { | |
return nil | ||
} | ||
|
||
func (m *ownerManager) revokeSession(leaseID clientv3.LeaseID) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. not used anymore |
||
// Revoke the session lease. | ||
// If revoke takes longer than the ttl, lease is expired anyway. | ||
cancelCtx, cancel := context.WithTimeout(context.Background(), | ||
time.Duration(ManagerSessionTTL)*time.Second) | ||
_, err := m.etcdCli.Revoke(cancelCtx, leaseID) | ||
cancel() | ||
logutil.Logger(m.logCtx).Info("revoke session", zap.Error(err)) | ||
} | ||
|
||
// GetOwnerID implements Manager.GetOwnerID interface. | ||
func (m *ownerManager) GetOwnerID(ctx context.Context) (string, error) { | ||
_, ownerID, _, _, _, err := getOwnerInfo(ctx, m.logCtx, m.etcdCli, m.key) | ||
_, ownerID, _, _, _, err := getOwnerInfo(ctx, m.etcdCli, m.key) | ||
return string(ownerID), errors.Trace(err) | ||
} | ||
|
||
func getOwnerInfo(ctx, logCtx context.Context, etcdCli *clientv3.Client, ownerPath string) (string, []byte, OpType, int64, int64, error) { | ||
func getOwnerInfo(ctx context.Context, etcdCli *clientv3.Client, ownerPath string) (string, []byte, OpType, int64, int64, error) { | ||
var op OpType | ||
var resp *clientv3.GetResponse | ||
var err error | ||
logger := logutil.BgLogger().With(zap.String("key", ownerPath)) | ||
for i := 0; i < 3; i++ { | ||
if err = ctx.Err(); err != nil { | ||
return "", nil, op, 0, 0, errors.Trace(err) | ||
|
@@ -487,11 +474,11 @@ func getOwnerInfo(ctx, logCtx context.Context, etcdCli *clientv3.Client, ownerPa | |
if err == nil { | ||
break | ||
} | ||
logutil.Logger(logCtx).Info("etcd-cli get owner info failed", zap.String("key", ownerPath), zap.Int("retryCnt", i), zap.Error(err)) | ||
logger.Info("etcd-cli get owner info failed", zap.Int("retryCnt", i), zap.Error(err)) | ||
time.Sleep(util.KeyOpRetryInterval) | ||
} | ||
if err != nil { | ||
logutil.Logger(logCtx).Warn("etcd-cli get owner info failed", zap.Error(err)) | ||
logger.Warn("etcd-cli get owner info failed", zap.Error(err)) | ||
return "", nil, op, 0, 0, errors.Trace(err) | ||
} | ||
if len(resp.Kvs) == 0 { | ||
|
@@ -500,23 +487,24 @@ func getOwnerInfo(ctx, logCtx context.Context, etcdCli *clientv3.Client, ownerPa | |
|
||
var ownerID []byte | ||
ownerID, op = splitOwnerValues(resp.Kvs[0].Value) | ||
logutil.Logger(logCtx).Info("get owner", zap.ByteString("owner key", resp.Kvs[0].Key), | ||
logger.Info("get owner", zap.ByteString("owner key", resp.Kvs[0].Key), | ||
zap.ByteString("ownerID", ownerID), zap.Stringer("op", op)) | ||
return string(resp.Kvs[0].Key), ownerID, op, resp.Header.Revision, resp.Kvs[0].ModRevision, nil | ||
} | ||
|
||
// GetOwnerKeyInfo gets the owner key and current revision. | ||
func GetOwnerKeyInfo( | ||
ctx, logCtx context.Context, | ||
ctx context.Context, | ||
etcdCli *clientv3.Client, | ||
etcdKey, id string, | ||
) (string, int64, error) { | ||
ownerKey, ownerID, _, currRevision, _, err := getOwnerInfo(ctx, logCtx, etcdCli, etcdKey) | ||
ownerKey, ownerID, _, currRevision, _, err := getOwnerInfo(ctx, etcdCli, etcdKey) | ||
if err != nil { | ||
return "", 0, errors.Trace(err) | ||
} | ||
if string(ownerID) != id { | ||
logutil.Logger(logCtx).Warn("is not the owner") | ||
logutil.BgLogger().Warn("is not the owner", zap.String("key", etcdKey), | ||
zap.String("id", id), zap.String("ownerID", string(ownerID))) | ||
return "", 0, errors.New("ownerInfoNotMatch") | ||
} | ||
|
||
|
@@ -539,12 +527,12 @@ func joinOwnerValues(vals ...[]byte) []byte { | |
// SetOwnerOpValue implements Manager.SetOwnerOpValue interface. | ||
func (m *ownerManager) SetOwnerOpValue(ctx context.Context, op OpType) error { | ||
// owner don't change. | ||
ownerKey, ownerID, currOp, _, modRevision, err := getOwnerInfo(ctx, m.logCtx, m.etcdCli, m.key) | ||
ownerKey, ownerID, currOp, _, modRevision, err := getOwnerInfo(ctx, m.etcdCli, m.key) | ||
if err != nil { | ||
return errors.Trace(err) | ||
} | ||
if currOp == op { | ||
logutil.Logger(m.logCtx).Info("set owner op is the same as the original, so do nothing.", zap.Stringer("op", op)) | ||
m.logger.Info("set owner op is the same as the original, so do nothing.", zap.Stringer("op", op)) | ||
return nil | ||
} | ||
if string(ownerID) != m.id { | ||
|
@@ -568,21 +556,20 @@ func (m *ownerManager) SetOwnerOpValue(ctx context.Context, op OpType) error { | |
if err == nil && !resp.Succeeded { | ||
err = errors.New("put owner key failed, cmp is false") | ||
} | ||
logutil.BgLogger().Info("set owner op value", zap.String("owner key", ownerKey), zap.ByteString("ownerID", ownerID), | ||
m.logger.Info("set owner op value", zap.String("owner key", ownerKey), zap.ByteString("ownerID", ownerID), | ||
zap.Stringer("old Op", currOp), zap.Stringer("op", op), zap.Error(err)) | ||
metrics.WatchOwnerCounter.WithLabelValues(m.prompt, metrics.PutValue+"_"+metrics.RetLabel(err)).Inc() | ||
return errors.Trace(err) | ||
} | ||
|
||
// GetOwnerOpValue gets the owner op value. | ||
func GetOwnerOpValue(ctx context.Context, etcdCli *clientv3.Client, ownerPath, logPrefix string) (OpType, error) { | ||
func GetOwnerOpValue(ctx context.Context, etcdCli *clientv3.Client, ownerPath string) (OpType, error) { | ||
// It's using for testing. | ||
if etcdCli == nil { | ||
return *mockOwnerOpValue.Load(), nil | ||
} | ||
|
||
logCtx := logutil.WithKeyValue(context.Background(), "owner info", logPrefix) | ||
_, _, op, _, _, err := getOwnerInfo(ctx, logCtx, etcdCli, ownerPath) | ||
_, _, op, _, _, err := getOwnerInfo(ctx, etcdCli, ownerPath) | ||
return op, errors.Trace(err) | ||
} | ||
|
||
|
@@ -596,29 +583,28 @@ func WatchOwnerForTest(ctx context.Context, m Manager, etcdSession *concurrency. | |
} | ||
|
||
func (m *ownerManager) watchOwner(ctx context.Context, etcdSession *concurrency.Session, key string, currRev int64) error { | ||
logPrefix := fmt.Sprintf("[%s] ownerManager %s watch owner key %v", m.prompt, m.id, key) | ||
logCtx := logutil.WithKeyValue(context.Background(), "owner info", logPrefix) | ||
logutil.BgLogger().Debug(logPrefix) | ||
logger := m.logger.With(zap.String("ownerKey", key), zap.Int64("currRev", currRev)) | ||
logger.Info("watching owner key") | ||
// we need to watch the ownerKey since currRev + 1. | ||
watchCh := m.etcdCli.Watch(ctx, key, clientv3.WithRev(currRev+1)) | ||
for { | ||
select { | ||
case resp, ok := <-watchCh: | ||
if !ok { | ||
metrics.WatchOwnerCounter.WithLabelValues(m.prompt, metrics.WatcherClosed).Inc() | ||
logutil.Logger(logCtx).Info("watcher is closed, no owner") | ||
logger.Info("watcher is closed, no owner") | ||
return errors.Errorf("watcher is closed, key: %v", key) | ||
} | ||
if resp.Canceled { | ||
metrics.WatchOwnerCounter.WithLabelValues(m.prompt, metrics.Cancelled).Inc() | ||
logutil.Logger(logCtx).Info("watch canceled, no owner") | ||
logger.Info("watch canceled, no owner") | ||
return errors.Errorf("watch canceled, key: %v", key) | ||
} | ||
|
||
for _, ev := range resp.Events { | ||
if ev.Type == mvccpb.DELETE { | ||
metrics.WatchOwnerCounter.WithLabelValues(m.prompt, metrics.Deleted).Inc() | ||
logutil.Logger(logCtx).Info("watch failed, owner is deleted") | ||
logger.Info("watch failed, owner is deleted") | ||
return nil | ||
} | ||
} | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
in the old log,
prompt
is also printed.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
key
contains enough info,prompt
is redundant