【发布时间】:2019-02-12 22:36:35
【问题描述】:
用同一集群中另一个缓存中的数据以最高性能的方式更新 Ignite 缓存中每个现有值的字段的最佳方法是什么(数千万条记录,每条大约 1 KB)?
伪代码:
try (mappings = getCache("mappings")) {
try (entities = getCache("entities")) {
entities.foreach((key, entity) -> entity.setInternalId(mappings.getValue(entity.getExternalId());
}
}
【问题讨论】:
标签: performance ignite