Sync-base: move "_data" to suffix

makes cache much less bad
This commit is contained in:
2025-04-18 11:06:15 +02:00
parent e167c21d40
commit 9859378627

View File

@@ -41,7 +41,7 @@ public record RemoteObjectMeta(PCollection<JDataRef> refsFrom, boolean frozen,
}
public static JObjectKey ofDataKey(JObjectKey key) {
return JObjectKey.of("data_" + key.value());
return JObjectKey.of(key.value() + "_data");
}
@Override