| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 package collector |
| 6 |
| 7 import ( |
| 8 "time" |
| 9 |
| 10 "github.com/luci/luci-go/common/logdog/types" |
| 11 log "github.com/luci/luci-go/common/logging" |
| 12 "github.com/luci/luci-go/common/retry" |
| 13 cc "github.com/luci/luci-go/server/internal/logdog/coordinatorClient" |
| 14 "golang.org/x/net/context" |
| 15 ) |
| 16 |
| 17 // CoordinatorClient is an interface to the methods in the Coordinator service |
| 18 // that the Collector uses. |
| 19 // |
| 20 // cc.Client implements this interface. |
| 21 type CoordinatorClient interface { |
| 22 // RegisterStream registers a stream's state with the Coordinator. On su
ccess, |
| 23 // it will return the Coordinator's view of the stream state. |
| 24 // |
| 25 // This operation is idempotent. It may return an errors.Transient error
if |
| 26 // a transient failure happened. |
| 27 RegisterStream(context.Context, cc.State) (*cc.State, error) |
| 28 |
| 29 // TerminateStream registers the stream's terminal index with the Coordi
nator. |
| 30 // If successful, the terminal index was successfully registered. |
| 31 // |
| 32 // This operation is idempotent. It may return an errors.Transient error
if |
| 33 // a transient failure happened. |
| 34 TerminateStream(ctx context.Context, p types.StreamPath, s []byte, idx t
ypes.MessageIndex) error |
| 35 } |
| 36 |
| 37 // RetryCoordinatorClient wraps a CoordinatorClient, retrying transient errors. |
| 38 type RetryCoordinatorClient struct { |
| 39 // Client is the CoordinatorClient that is being wrapped. |
| 40 Client CoordinatorClient |
| 41 |
| 42 // G is the retry.Generator to use to generate retry.Iterator instances.
If |
| 43 // nil, retry.Default will be used. |
| 44 F retry.Factory |
| 45 } |
| 46 |
| 47 // RegisterStream implements CoordinatorClient. |
| 48 func (c *RetryCoordinatorClient) RegisterStream(ctx context.Context, st cc.State
) (rst *cc.State, err error) { |
| 49 err = retry.Retry(ctx, c.retryFactory(), func() (err error) { |
| 50 rst, err = c.Client.RegisterStream(ctx, st) |
| 51 return |
| 52 }, func(err error, d time.Duration) { |
| 53 log.Fields{ |
| 54 log.ErrorKey: err, |
| 55 "delay": d, |
| 56 }.Warningf(ctx, "Transient error registering stream. Retrying...
") |
| 57 }) |
| 58 return |
| 59 } |
| 60 |
| 61 // TerminateStream implements CoordinatorClient. |
| 62 func (c *RetryCoordinatorClient) TerminateStream(ctx context.Context, p types.St
reamPath, s []byte, idx types.MessageIndex) error { |
| 63 return retry.Retry(ctx, c.retryFactory(), func() error { |
| 64 return c.Client.TerminateStream(ctx, p, s, idx) |
| 65 }, func(err error, d time.Duration) { |
| 66 log.Fields{ |
| 67 log.ErrorKey: err, |
| 68 "delay": d, |
| 69 }.Warningf(ctx, "Transient error terminating stream. Retrying...
") |
| 70 }) |
| 71 } |
| 72 |
| 73 func (c *RetryCoordinatorClient) retryFactory() retry.Factory { |
| 74 var f retry.Factory |
| 75 if c.F != nil { |
| 76 f = c.F |
| 77 } else { |
| 78 f = retry.Default |
| 79 } |
| 80 return retry.TransientOnly(f) |
| 81 } |
| OLD | NEW |