We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da4d7aa commit 273187cCopy full SHA for 273187c
packages/cubejs-query-orchestrator/src/orchestrator/QueryCache.ts
@@ -865,6 +865,17 @@ export class QueryCache {
865
const { renewalThreshold, primaryQuery, renewCycle } = options;
866
const renewalKey = options.renewalKey && this.queryRedisKey(options.renewalKey);
867
const redisKey = this.queryRedisKey(cacheKey);
868
+
869
+ this.logger('Cache lookup started', {
870
+ cacheKey,
871
+ newRenewalKey: renewalKey,
872
+ renewalThreshold,
873
+ requestId: options.requestId,
874
+ spanId,
875
+ primaryQuery,
876
+ renewCycle
877
+ });
878
879
const fetchNew = () => (
880
this.queryWithRetryAndRelease(query, values, {
881
cacheKey,
0 commit comments