peering: initial sync (#12842)
- Add endpoints related to peering: read, list, generate token, initiate peering
- Update node/service/check table indexing to account for peers
- Foundational changes for pushing service updates to a peer
- Plumb peer name through Health.ServiceNodes path
see: ENT-1765, ENT-1280, ENT-1283, ENT-1283, ENT-1756, ENT-1739, ENT-1750, ENT-1679,
ENT-1709, ENT-1704, ENT-1690, ENT-1689, ENT-1702, ENT-1701, ENT-1683, ENT-1663,
ENT-1650, ENT-1678, ENT-1628, ENT-1658, ENT-1640, ENT-1637, ENT-1597, ENT-1634,
ENT-1613, ENT-1616, ENT-1617, ENT-1591, ENT-1588, ENT-1596, ENT-1572, ENT-1555
Co-authored-by: R.B. Boyer <rb@hashicorp.com>
Co-authored-by: freddygv <freddy@hashicorp.com>
Co-authored-by: Chris S. Kim <ckim@hashicorp.com>
Co-authored-by: Evan Culver <eculver@hashicorp.com>
Co-authored-by: Nitya Dhanushkodi <nitya@hashicorp.com>
2022-04-21 22:34:40 +00:00
|
|
|
package pbpeering
|
|
|
|
|
2022-05-25 18:43:35 +00:00
|
|
|
import (
|
2022-06-01 21:53:52 +00:00
|
|
|
"strconv"
|
2022-05-25 18:43:35 +00:00
|
|
|
"time"
|
|
|
|
|
2022-06-08 22:53:32 +00:00
|
|
|
"github.com/golang/protobuf/ptypes/timestamp"
|
2022-06-01 21:53:52 +00:00
|
|
|
"github.com/mitchellh/hashstructure"
|
|
|
|
|
|
|
|
"github.com/hashicorp/consul/agent/cache"
|
2022-06-08 22:53:32 +00:00
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
2022-05-25 18:43:35 +00:00
|
|
|
"github.com/hashicorp/consul/api"
|
2022-06-01 21:53:52 +00:00
|
|
|
"github.com/hashicorp/consul/lib"
|
2022-05-25 18:43:35 +00:00
|
|
|
)
|
peering: initial sync (#12842)
- Add endpoints related to peering: read, list, generate token, initiate peering
- Update node/service/check table indexing to account for peers
- Foundational changes for pushing service updates to a peer
- Plumb peer name through Health.ServiceNodes path
see: ENT-1765, ENT-1280, ENT-1283, ENT-1283, ENT-1756, ENT-1739, ENT-1750, ENT-1679,
ENT-1709, ENT-1704, ENT-1690, ENT-1689, ENT-1702, ENT-1701, ENT-1683, ENT-1663,
ENT-1650, ENT-1678, ENT-1628, ENT-1658, ENT-1640, ENT-1637, ENT-1597, ENT-1634,
ENT-1613, ENT-1616, ENT-1617, ENT-1591, ENT-1588, ENT-1596, ENT-1572, ENT-1555
Co-authored-by: R.B. Boyer <rb@hashicorp.com>
Co-authored-by: freddygv <freddy@hashicorp.com>
Co-authored-by: Chris S. Kim <ckim@hashicorp.com>
Co-authored-by: Evan Culver <eculver@hashicorp.com>
Co-authored-by: Nitya Dhanushkodi <nitya@hashicorp.com>
2022-04-21 22:34:40 +00:00
|
|
|
|
|
|
|
// TODO(peering): These are byproducts of not embedding
|
|
|
|
// types in our protobuf definitions and are temporary;
|
|
|
|
// Hoping to replace them with 1 or 2 methods per request
|
|
|
|
// using https://github.com/hashicorp/consul/pull/12507
|
|
|
|
|
|
|
|
// RequestDatacenter implements structs.RPCInfo
|
|
|
|
func (req *GenerateTokenRequest) RequestDatacenter() string {
|
|
|
|
return req.Datacenter
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsRead implements structs.RPCInfo
|
|
|
|
func (req *GenerateTokenRequest) IsRead() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// AllowStaleRead implements structs.RPCInfo
|
|
|
|
func (req *GenerateTokenRequest) AllowStaleRead() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// TokenSecret implements structs.RPCInfo
|
|
|
|
func (req *GenerateTokenRequest) TokenSecret() string {
|
|
|
|
return req.Token
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetTokenSecret implements structs.RPCInfo
|
|
|
|
func (req *GenerateTokenRequest) SetTokenSecret(token string) {
|
|
|
|
req.Token = token
|
|
|
|
}
|
|
|
|
|
|
|
|
// HasTimedOut implements structs.RPCInfo
|
|
|
|
func (req *GenerateTokenRequest) HasTimedOut(start time.Time, rpcHoldTimeout, _, _ time.Duration) (bool, error) {
|
|
|
|
return time.Since(start) > rpcHoldTimeout, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Timeout implements structs.RPCInfo
|
|
|
|
func (msg *GenerateTokenRequest) Timeout(rpcHoldTimeout time.Duration, maxQueryTime time.Duration, defaultQueryTime time.Duration) time.Duration {
|
|
|
|
return rpcHoldTimeout
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsRead implements structs.RPCInfo
|
2022-06-10 16:10:46 +00:00
|
|
|
func (req *EstablishRequest) IsRead() bool {
|
peering: initial sync (#12842)
- Add endpoints related to peering: read, list, generate token, initiate peering
- Update node/service/check table indexing to account for peers
- Foundational changes for pushing service updates to a peer
- Plumb peer name through Health.ServiceNodes path
see: ENT-1765, ENT-1280, ENT-1283, ENT-1283, ENT-1756, ENT-1739, ENT-1750, ENT-1679,
ENT-1709, ENT-1704, ENT-1690, ENT-1689, ENT-1702, ENT-1701, ENT-1683, ENT-1663,
ENT-1650, ENT-1678, ENT-1628, ENT-1658, ENT-1640, ENT-1637, ENT-1597, ENT-1634,
ENT-1613, ENT-1616, ENT-1617, ENT-1591, ENT-1588, ENT-1596, ENT-1572, ENT-1555
Co-authored-by: R.B. Boyer <rb@hashicorp.com>
Co-authored-by: freddygv <freddy@hashicorp.com>
Co-authored-by: Chris S. Kim <ckim@hashicorp.com>
Co-authored-by: Evan Culver <eculver@hashicorp.com>
Co-authored-by: Nitya Dhanushkodi <nitya@hashicorp.com>
2022-04-21 22:34:40 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// AllowStaleRead implements structs.RPCInfo
|
2022-06-10 16:10:46 +00:00
|
|
|
func (req *EstablishRequest) AllowStaleRead() bool {
|
peering: initial sync (#12842)
- Add endpoints related to peering: read, list, generate token, initiate peering
- Update node/service/check table indexing to account for peers
- Foundational changes for pushing service updates to a peer
- Plumb peer name through Health.ServiceNodes path
see: ENT-1765, ENT-1280, ENT-1283, ENT-1283, ENT-1756, ENT-1739, ENT-1750, ENT-1679,
ENT-1709, ENT-1704, ENT-1690, ENT-1689, ENT-1702, ENT-1701, ENT-1683, ENT-1663,
ENT-1650, ENT-1678, ENT-1628, ENT-1658, ENT-1640, ENT-1637, ENT-1597, ENT-1634,
ENT-1613, ENT-1616, ENT-1617, ENT-1591, ENT-1588, ENT-1596, ENT-1572, ENT-1555
Co-authored-by: R.B. Boyer <rb@hashicorp.com>
Co-authored-by: freddygv <freddy@hashicorp.com>
Co-authored-by: Chris S. Kim <ckim@hashicorp.com>
Co-authored-by: Evan Culver <eculver@hashicorp.com>
Co-authored-by: Nitya Dhanushkodi <nitya@hashicorp.com>
2022-04-21 22:34:40 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// TokenSecret implements structs.RPCInfo
|
2022-06-10 16:10:46 +00:00
|
|
|
func (req *EstablishRequest) TokenSecret() string {
|
peering: initial sync (#12842)
- Add endpoints related to peering: read, list, generate token, initiate peering
- Update node/service/check table indexing to account for peers
- Foundational changes for pushing service updates to a peer
- Plumb peer name through Health.ServiceNodes path
see: ENT-1765, ENT-1280, ENT-1283, ENT-1283, ENT-1756, ENT-1739, ENT-1750, ENT-1679,
ENT-1709, ENT-1704, ENT-1690, ENT-1689, ENT-1702, ENT-1701, ENT-1683, ENT-1663,
ENT-1650, ENT-1678, ENT-1628, ENT-1658, ENT-1640, ENT-1637, ENT-1597, ENT-1634,
ENT-1613, ENT-1616, ENT-1617, ENT-1591, ENT-1588, ENT-1596, ENT-1572, ENT-1555
Co-authored-by: R.B. Boyer <rb@hashicorp.com>
Co-authored-by: freddygv <freddy@hashicorp.com>
Co-authored-by: Chris S. Kim <ckim@hashicorp.com>
Co-authored-by: Evan Culver <eculver@hashicorp.com>
Co-authored-by: Nitya Dhanushkodi <nitya@hashicorp.com>
2022-04-21 22:34:40 +00:00
|
|
|
return req.Token
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetTokenSecret implements structs.RPCInfo
|
2022-06-10 16:10:46 +00:00
|
|
|
func (req *EstablishRequest) SetTokenSecret(token string) {
|
peering: initial sync (#12842)
- Add endpoints related to peering: read, list, generate token, initiate peering
- Update node/service/check table indexing to account for peers
- Foundational changes for pushing service updates to a peer
- Plumb peer name through Health.ServiceNodes path
see: ENT-1765, ENT-1280, ENT-1283, ENT-1283, ENT-1756, ENT-1739, ENT-1750, ENT-1679,
ENT-1709, ENT-1704, ENT-1690, ENT-1689, ENT-1702, ENT-1701, ENT-1683, ENT-1663,
ENT-1650, ENT-1678, ENT-1628, ENT-1658, ENT-1640, ENT-1637, ENT-1597, ENT-1634,
ENT-1613, ENT-1616, ENT-1617, ENT-1591, ENT-1588, ENT-1596, ENT-1572, ENT-1555
Co-authored-by: R.B. Boyer <rb@hashicorp.com>
Co-authored-by: freddygv <freddy@hashicorp.com>
Co-authored-by: Chris S. Kim <ckim@hashicorp.com>
Co-authored-by: Evan Culver <eculver@hashicorp.com>
Co-authored-by: Nitya Dhanushkodi <nitya@hashicorp.com>
2022-04-21 22:34:40 +00:00
|
|
|
req.Token = token
|
|
|
|
}
|
|
|
|
|
|
|
|
// HasTimedOut implements structs.RPCInfo
|
2022-06-10 16:10:46 +00:00
|
|
|
func (req *EstablishRequest) HasTimedOut(start time.Time, rpcHoldTimeout, _, _ time.Duration) (bool, error) {
|
peering: initial sync (#12842)
- Add endpoints related to peering: read, list, generate token, initiate peering
- Update node/service/check table indexing to account for peers
- Foundational changes for pushing service updates to a peer
- Plumb peer name through Health.ServiceNodes path
see: ENT-1765, ENT-1280, ENT-1283, ENT-1283, ENT-1756, ENT-1739, ENT-1750, ENT-1679,
ENT-1709, ENT-1704, ENT-1690, ENT-1689, ENT-1702, ENT-1701, ENT-1683, ENT-1663,
ENT-1650, ENT-1678, ENT-1628, ENT-1658, ENT-1640, ENT-1637, ENT-1597, ENT-1634,
ENT-1613, ENT-1616, ENT-1617, ENT-1591, ENT-1588, ENT-1596, ENT-1572, ENT-1555
Co-authored-by: R.B. Boyer <rb@hashicorp.com>
Co-authored-by: freddygv <freddy@hashicorp.com>
Co-authored-by: Chris S. Kim <ckim@hashicorp.com>
Co-authored-by: Evan Culver <eculver@hashicorp.com>
Co-authored-by: Nitya Dhanushkodi <nitya@hashicorp.com>
2022-04-21 22:34:40 +00:00
|
|
|
return time.Since(start) > rpcHoldTimeout, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Timeout implements structs.RPCInfo
|
2022-06-10 16:10:46 +00:00
|
|
|
func (msg *EstablishRequest) Timeout(rpcHoldTimeout time.Duration, maxQueryTime time.Duration, defaultQueryTime time.Duration) time.Duration {
|
peering: initial sync (#12842)
- Add endpoints related to peering: read, list, generate token, initiate peering
- Update node/service/check table indexing to account for peers
- Foundational changes for pushing service updates to a peer
- Plumb peer name through Health.ServiceNodes path
see: ENT-1765, ENT-1280, ENT-1283, ENT-1283, ENT-1756, ENT-1739, ENT-1750, ENT-1679,
ENT-1709, ENT-1704, ENT-1690, ENT-1689, ENT-1702, ENT-1701, ENT-1683, ENT-1663,
ENT-1650, ENT-1678, ENT-1628, ENT-1658, ENT-1640, ENT-1637, ENT-1597, ENT-1634,
ENT-1613, ENT-1616, ENT-1617, ENT-1591, ENT-1588, ENT-1596, ENT-1572, ENT-1555
Co-authored-by: R.B. Boyer <rb@hashicorp.com>
Co-authored-by: freddygv <freddy@hashicorp.com>
Co-authored-by: Chris S. Kim <ckim@hashicorp.com>
Co-authored-by: Evan Culver <eculver@hashicorp.com>
Co-authored-by: Nitya Dhanushkodi <nitya@hashicorp.com>
2022-04-21 22:34:40 +00:00
|
|
|
return rpcHoldTimeout
|
|
|
|
}
|
|
|
|
|
|
|
|
// ShouldDial returns true when the peering was stored via the peering initiation endpoint,
|
|
|
|
// AND the peering is not marked as terminated by our peer.
|
|
|
|
// If we generated a token for this peer we did not store our server addresses under PeerServerAddresses.
|
|
|
|
// These server addresses are for dialing, and only the peer initiating the peering will do the dialing.
|
|
|
|
func (p *Peering) ShouldDial() bool {
|
2022-06-13 14:22:46 +00:00
|
|
|
return len(p.PeerServerAddresses) > 0
|
peering: initial sync (#12842)
- Add endpoints related to peering: read, list, generate token, initiate peering
- Update node/service/check table indexing to account for peers
- Foundational changes for pushing service updates to a peer
- Plumb peer name through Health.ServiceNodes path
see: ENT-1765, ENT-1280, ENT-1283, ENT-1283, ENT-1756, ENT-1739, ENT-1750, ENT-1679,
ENT-1709, ENT-1704, ENT-1690, ENT-1689, ENT-1702, ENT-1701, ENT-1683, ENT-1663,
ENT-1650, ENT-1678, ENT-1628, ENT-1658, ENT-1640, ENT-1637, ENT-1597, ENT-1634,
ENT-1613, ENT-1616, ENT-1617, ENT-1591, ENT-1588, ENT-1596, ENT-1572, ENT-1555
Co-authored-by: R.B. Boyer <rb@hashicorp.com>
Co-authored-by: freddygv <freddy@hashicorp.com>
Co-authored-by: Chris S. Kim <ckim@hashicorp.com>
Co-authored-by: Evan Culver <eculver@hashicorp.com>
Co-authored-by: Nitya Dhanushkodi <nitya@hashicorp.com>
2022-04-21 22:34:40 +00:00
|
|
|
}
|
2022-05-19 21:37:52 +00:00
|
|
|
|
2022-06-07 21:29:09 +00:00
|
|
|
func (x PeeringState) GoString() string {
|
|
|
|
return x.String()
|
|
|
|
}
|
|
|
|
|
2022-06-01 21:53:52 +00:00
|
|
|
func (r *TrustBundleReadRequest) CacheInfo() cache.RequestInfo {
|
|
|
|
info := cache.RequestInfo{
|
|
|
|
// TODO(peering): Revisit whether this is the token to use once request types accept a token.
|
|
|
|
Token: r.Token(),
|
|
|
|
Datacenter: r.Datacenter,
|
|
|
|
MinIndex: 0,
|
|
|
|
Timeout: 0,
|
|
|
|
MustRevalidate: false,
|
|
|
|
|
|
|
|
// TODO(peering): Cache.notifyPollingQuery polls at this interval. We need to revisit how that polling works.
|
|
|
|
// Using an exponential backoff when the result hasn't changed may be preferable.
|
|
|
|
MaxAge: 1 * time.Second,
|
|
|
|
}
|
|
|
|
|
|
|
|
v, err := hashstructure.Hash([]interface{}{
|
|
|
|
r.Partition,
|
|
|
|
r.Name,
|
|
|
|
}, nil)
|
|
|
|
if err == nil {
|
|
|
|
// If there is an error, we don't set the key. A blank key forces
|
|
|
|
// no cache for this request so the request is forwarded directly
|
|
|
|
// to the server.
|
|
|
|
info.Key = strconv.FormatUint(v, 10)
|
|
|
|
}
|
|
|
|
|
|
|
|
return info
|
|
|
|
}
|
|
|
|
|
|
|
|
// ConcatenatedRootPEMs concatenates and returns all PEM-encoded public certificates
|
|
|
|
// in a peer's trust bundle.
|
|
|
|
func (b *PeeringTrustBundle) ConcatenatedRootPEMs() string {
|
|
|
|
if b == nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
var rootPEMs string
|
|
|
|
for _, pem := range b.RootPEMs {
|
|
|
|
rootPEMs += lib.EnsureTrailingNewline(pem)
|
|
|
|
}
|
|
|
|
return rootPEMs
|
|
|
|
}
|
|
|
|
|
2022-05-25 18:43:35 +00:00
|
|
|
// enumcover:PeeringState
|
|
|
|
func PeeringStateToAPI(s PeeringState) api.PeeringState {
|
|
|
|
switch s {
|
2022-07-04 14:47:58 +00:00
|
|
|
case PeeringState_PENDING:
|
|
|
|
return api.PeeringStatePending
|
|
|
|
case PeeringState_ESTABLISHING:
|
|
|
|
return api.PeeringStateEstablishing
|
2022-05-25 18:43:35 +00:00
|
|
|
case PeeringState_ACTIVE:
|
|
|
|
return api.PeeringStateActive
|
|
|
|
case PeeringState_FAILING:
|
|
|
|
return api.PeeringStateFailing
|
2022-07-04 14:47:58 +00:00
|
|
|
case PeeringState_DELETING:
|
|
|
|
return api.PeeringStateDeleting
|
2022-05-25 18:43:35 +00:00
|
|
|
case PeeringState_TERMINATED:
|
|
|
|
return api.PeeringStateTerminated
|
|
|
|
case PeeringState_UNDEFINED:
|
|
|
|
fallthrough
|
|
|
|
default:
|
|
|
|
return api.PeeringStateUndefined
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// enumcover:api.PeeringState
|
|
|
|
func PeeringStateFromAPI(t api.PeeringState) PeeringState {
|
|
|
|
switch t {
|
2022-07-04 14:47:58 +00:00
|
|
|
case api.PeeringStatePending:
|
|
|
|
return PeeringState_PENDING
|
|
|
|
case api.PeeringStateEstablishing:
|
|
|
|
return PeeringState_ESTABLISHING
|
2022-05-25 18:43:35 +00:00
|
|
|
case api.PeeringStateActive:
|
|
|
|
return PeeringState_ACTIVE
|
|
|
|
case api.PeeringStateFailing:
|
|
|
|
return PeeringState_FAILING
|
2022-07-04 14:47:58 +00:00
|
|
|
case api.PeeringStateDeleting:
|
|
|
|
return PeeringState_DELETING
|
2022-05-25 18:43:35 +00:00
|
|
|
case api.PeeringStateTerminated:
|
|
|
|
return PeeringState_TERMINATED
|
|
|
|
case api.PeeringStateUndefined:
|
|
|
|
fallthrough
|
|
|
|
default:
|
|
|
|
return PeeringState_UNDEFINED
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-08 22:53:32 +00:00
|
|
|
func (p *Peering) IsActive() bool {
|
2022-06-13 14:22:46 +00:00
|
|
|
if p != nil && p.State == PeeringState_TERMINATED {
|
|
|
|
return false
|
|
|
|
}
|
2022-06-08 22:53:32 +00:00
|
|
|
if p == nil || p.DeletedAt == nil {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// The minimum protobuf timestamp is the Unix epoch rather than go's zero.
|
|
|
|
return structs.IsZeroProtoTime(p.DeletedAt)
|
|
|
|
}
|
|
|
|
|
2022-05-25 18:43:35 +00:00
|
|
|
func (p *Peering) ToAPI() *api.Peering {
|
|
|
|
var t api.Peering
|
|
|
|
PeeringToAPI(p, &t)
|
|
|
|
return &t
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO consider using mog for this
|
|
|
|
func (resp *PeeringListResponse) ToAPI() []*api.Peering {
|
|
|
|
list := make([]*api.Peering, len(resp.Peerings))
|
|
|
|
for i, p := range resp.Peerings {
|
|
|
|
list[i] = p.ToAPI()
|
|
|
|
}
|
|
|
|
return list
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO consider using mog for this
|
|
|
|
func (resp *GenerateTokenResponse) ToAPI() *api.PeeringGenerateTokenResponse {
|
|
|
|
var t api.PeeringGenerateTokenResponse
|
|
|
|
GenerateTokenResponseToAPI(resp, &t)
|
|
|
|
return &t
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO consider using mog for this
|
2022-06-10 16:10:46 +00:00
|
|
|
func (resp *EstablishResponse) ToAPI() *api.PeeringEstablishResponse {
|
|
|
|
var t api.PeeringEstablishResponse
|
|
|
|
EstablishResponseToAPI(resp, &t)
|
2022-05-25 18:43:35 +00:00
|
|
|
return &t
|
|
|
|
}
|
|
|
|
|
|
|
|
// convenience
|
|
|
|
func NewGenerateTokenRequestFromAPI(req *api.PeeringGenerateTokenRequest) *GenerateTokenRequest {
|
|
|
|
if req == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
t := &GenerateTokenRequest{}
|
|
|
|
GenerateTokenRequestFromAPI(req, t)
|
|
|
|
return t
|
|
|
|
}
|
|
|
|
|
|
|
|
// convenience
|
2022-06-10 16:10:46 +00:00
|
|
|
func NewEstablishRequestFromAPI(req *api.PeeringEstablishRequest) *EstablishRequest {
|
2022-05-25 18:43:35 +00:00
|
|
|
if req == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2022-06-10 16:10:46 +00:00
|
|
|
t := &EstablishRequest{}
|
|
|
|
EstablishRequestFromAPI(req, t)
|
2022-05-25 18:43:35 +00:00
|
|
|
return t
|
|
|
|
}
|
2022-05-23 23:57:42 +00:00
|
|
|
|
|
|
|
func (r *TrustBundleListByServiceRequest) CacheInfo() cache.RequestInfo {
|
|
|
|
info := cache.RequestInfo{
|
|
|
|
// TODO(peering): Revisit whether this is the token to use once request types accept a token.
|
|
|
|
Token: r.Token(),
|
|
|
|
Datacenter: r.Datacenter,
|
|
|
|
MinIndex: 0,
|
|
|
|
Timeout: 0,
|
|
|
|
MustRevalidate: false,
|
|
|
|
|
|
|
|
// TODO(peering): Cache.notifyPollingQuery polls at this interval. We need to revisit how that polling works.
|
|
|
|
// Using an exponential backoff when the result hasn't changed may be preferable.
|
|
|
|
MaxAge: 1 * time.Second,
|
|
|
|
}
|
|
|
|
|
|
|
|
v, err := hashstructure.Hash([]interface{}{
|
|
|
|
r.Partition,
|
|
|
|
r.Namespace,
|
|
|
|
r.ServiceName,
|
|
|
|
}, nil)
|
|
|
|
if err == nil {
|
|
|
|
// If there is an error, we don't set the key. A blank key forces
|
|
|
|
// no cache for this request so the request is forwarded directly
|
|
|
|
// to the server.
|
|
|
|
info.Key = strconv.FormatUint(v, 10)
|
|
|
|
}
|
|
|
|
|
|
|
|
return info
|
|
|
|
}
|
2022-06-08 22:53:32 +00:00
|
|
|
|
|
|
|
func TimePtrFromProto(s *timestamp.Timestamp) *time.Time {
|
|
|
|
if s == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
t := structs.TimeFromProto(s)
|
|
|
|
return &t
|
|
|
|
}
|
|
|
|
|
|
|
|
func TimePtrToProto(s *time.Time) *timestamp.Timestamp {
|
|
|
|
if s == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return structs.TimeToProto(*s)
|
|
|
|
}
|