Skip to content

Commit e3ea1d2

Browse files
Reduce the attribute metadata cache invalidation interval to 3 minutes (#119)
1 parent 127c5f5 commit e3ea1d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hypertrace-core-graphql-attribute-store/src/main/java/org/hypertrace/core/graphql/attributes/CachingAttributeStore.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class CachingAttributeStore implements AttributeStore {
3636
channelRegistry.forAddress(
3737
serviceConfig.getAttributeServiceHost(),
3838
serviceConfig.getAttributeServicePort()))
39-
.withCacheExpiration(Duration.ofMinutes(5))
39+
.withCacheExpiration(Duration.ofMinutes(3))
4040
.withMaximumCacheContexts(1000)
4141
.build());
4242
}

0 commit comments

Comments
 (0)