submatview: set up expiry of materializers

pull/10112/head
Daniel Nephin 4 years ago
parent c574108354
commit 7d13465c7b

@ -20,7 +20,9 @@ type entry struct {
materializer *Materializer materializer *Materializer
expiry *ttlcache.Entry expiry *ttlcache.Entry
stop func() stop func()
// TODO: add watchCount // notifier is the count of active Notify goroutines. This entry will
// remain in the store as long as this count remains > 0.
notifier int
} }
// TODO: start expiration loop // TODO: start expiration loop
@ -52,11 +54,13 @@ func (s *Store) Run(ctx context.Context) {
he := timer.Entry he := timer.Entry
s.expiryHeap.Remove(he.Index()) s.expiryHeap.Remove(he.Index())
// TODO: expiry here
// if e.watchCount == 0 {}
e := s.byKey[he.Key()] e := s.byKey[he.Key()]
// Only stop the materializer if there are no active calls to Notify.
if e.notifier == 0 {
e.stop() e.stop()
//delete(s.entries, entry.Key()) delete(s.byKey, he.Key())
}
s.lock.Unlock() s.lock.Unlock()
} }
@ -77,11 +81,11 @@ func (s *Store) Get(
// TODO: only the Index field of ResultMeta is relevant, return a result struct instead. // TODO: only the Index field of ResultMeta is relevant, return a result struct instead.
) (interface{}, cache.ResultMeta, error) { ) (interface{}, cache.ResultMeta, error) {
info := req.CacheInfo() info := req.CacheInfo()
key := makeEntryKey(typ, info) e := s.getEntry(getEntryOpts{
e := s.getEntry(key, req.NewMaterializer) typ: typ,
info: info,
// TODO: requires a lock to update the heap. newMaterializer: req.NewMaterializer,
//s.expiryHeap.Update(e.expiry.Index(), info.Timeout + ttl) })
// TODO: no longer any need to return cache.FetchResult from Materializer.Fetch // TODO: no longer any need to return cache.FetchResult from Materializer.Fetch
// TODO: pass context instead of Done chan, also replaces Timeout param // TODO: pass context instead of Done chan, also replaces Timeout param
@ -101,15 +105,26 @@ func (s *Store) Notify(
correlationID string, correlationID string,
updateCh chan<- cache.UpdateEvent, updateCh chan<- cache.UpdateEvent,
) error { ) error {
// TODO: set entry to not expire until ctx is cancelled.
info := req.CacheInfo() info := req.CacheInfo()
key := makeEntryKey(typ, info) e := s.getEntry(getEntryOpts{
e := s.getEntry(key, req.NewMaterializer) typ: typ,
info: info,
var index uint64 newMaterializer: req.NewMaterializer,
notifier: true,
})
go func() { go func() {
index := info.MinIndex
// TODO: better way to handle this?
defer func() {
s.lock.Lock()
e.notifier--
s.byKey[e.expiry.Key()] = e
s.expiryHeap.Update(e.expiry.Index(), idleTTL)
s.lock.Unlock()
}()
for { for {
result, err := e.materializer.Fetch(ctx.Done(), cache.FetchOptions{MinIndex: index}) result, err := e.materializer.Fetch(ctx.Done(), cache.FetchOptions{MinIndex: index})
switch { switch {
@ -140,28 +155,33 @@ func (s *Store) Notify(
return nil return nil
} }
func (s *Store) getEntry(key string, newMat func() *Materializer) entry { func (s *Store) getEntry(opts getEntryOpts) entry {
s.lock.RLock() info := opts.info
e, ok := s.byKey[key] key := makeEntryKey(opts.typ, info)
s.lock.RUnlock()
if ok {
return e
}
s.lock.Lock() s.lock.Lock()
defer s.lock.Unlock() defer s.lock.Unlock()
// Check again after acquiring the write lock, in case we raced to create the entry. e, ok := s.byKey[key]
e, ok = s.byKey[key]
if ok { if ok {
s.expiryHeap.Update(e.expiry.Index(), info.Timeout+idleTTL)
if opts.notifier {
e.notifier++
}
return e return e
} }
e = entry{materializer: newMat()}
ctx, cancel := context.WithCancel(context.Background()) ctx, cancel := context.WithCancel(context.Background())
e.stop = cancel mat := opts.newMaterializer()
go e.materializer.Run(ctx) go mat.Run(ctx)
e = entry{
materializer: mat,
stop: cancel,
expiry: s.expiryHeap.Add(key, info.Timeout+idleTTL),
}
if opts.notifier {
e.notifier++
}
s.byKey[key] = e s.byKey[key] = e
return e return e
} }
@ -175,3 +195,10 @@ type Request interface {
cache.Request cache.Request
NewMaterializer() *Materializer NewMaterializer() *Materializer
} }
type getEntryOpts struct {
typ string
info cache.RequestInfo
newMaterializer func() *Materializer
notifier bool
}

Loading…
Cancel
Save