mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2025-04-03 18:55:55 +02:00
fix: remove caching for footprint db field
- footprints before first worker run are cached as empty, and are permanently returned as such until app restart - fixes Polar plot for running jobs #328
This commit is contained in:
parent
dd470d49ec
commit
1e63cdbcda
@ -217,11 +217,6 @@ func (r *JobRepository) UpdateMetadata(job *schema.Job, key, val string) (err er
|
|||||||
|
|
||||||
func (r *JobRepository) FetchFootprint(job *schema.Job) (map[string]float64, error) {
|
func (r *JobRepository) FetchFootprint(job *schema.Job) (map[string]float64, error) {
|
||||||
start := time.Now()
|
start := time.Now()
|
||||||
cachekey := fmt.Sprintf("footprint:%d", job.ID)
|
|
||||||
if cached := r.cache.Get(cachekey, nil); cached != nil {
|
|
||||||
job.Footprint = cached.(map[string]float64)
|
|
||||||
return job.Footprint, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := sq.Select("job.footprint").From("job").Where("job.id = ?", job.ID).
|
if err := sq.Select("job.footprint").From("job").Where("job.id = ?", job.ID).
|
||||||
RunWith(r.stmtCache).QueryRow().Scan(&job.RawFootprint); err != nil {
|
RunWith(r.stmtCache).QueryRow().Scan(&job.RawFootprint); err != nil {
|
||||||
@ -238,7 +233,6 @@ func (r *JobRepository) FetchFootprint(job *schema.Job) (map[string]float64, err
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
r.cache.Put(cachekey, job.Footprint, len(job.Footprint), 24*time.Hour)
|
|
||||||
log.Debugf("Timer FetchFootprint %s", time.Since(start))
|
log.Debugf("Timer FetchFootprint %s", time.Since(start))
|
||||||
return job.Footprint, nil
|
return job.Footprint, nil
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user