gpt4 book ai didi

java - Hazelcast 不同键聚合

转载 作者:行者123 更新时间:2023-11-30 03:01:39 25 4
gpt4 key购买 nike

有没有办法使用Hazelcast aggregation获取不同的 IMap 关键属性?

Aggregations.distinctValues()以及 property extractor允许获取不同的属性;但是,我不确定如何使用聚合来获取不同的key属性。

public class AggregationTest {

public static void main(String[] args) throws Exception {

HazelcastInstance instance = Hazelcast.getOrCreateHazelcastInstance(new Config("hazelcast1"));

// Create map with test values
IMap<MapKey, MapValue> map = instance.getMap("tenantUserMap");
map.set(new MapKey("tenantA", "userA"), new MapValue("someMapValue1"));
map.set(new MapKey("tenantA", "userB"), new MapValue("someMapValue2"));
map.set(new MapKey("tenantB", "userA"), new MapValue("someMapValue1"));

// Use case: Obtain counts for each tenant (a property of the map's key)
// FIXME In order to iterate over each tenant to obtain a count, how do we get the list of distinct key properties??
Long tenantACount = map.aggregate(Supplier.fromKeyPredicate(new TenantKeyPredicate("tenantA")), Aggregations.count());
Long tenantBCount = map.aggregate(Supplier.fromKeyPredicate(new TenantKeyPredicate("tenantB")), Aggregations.count());
Long unknownTenantCount = map.aggregate(Supplier.fromKeyPredicate(new TenantKeyPredicate("unknown")), Aggregations.count());

System.out.println("tenantA count: " + tenantACount);
System.out.println("tenantB count: " + tenantBCount);
System.out.println("unknown count: " + unknownTenantCount);

// It is easily possible to obtain distinct VALUE properties... but how to obtain distinct KEY properties?
Set<Object> distinctValues = map.aggregate(Supplier.all(value -> value.getValue()), Aggregations.distinctValues());
System.out.println("distinct values: " + distinctValues);

instance.shutdown();
}

static class TenantKeyPredicate implements KeyPredicate<MapKey> {

private static final long serialVersionUID = 5073272969705387966L;

private final String tenant;

public TenantKeyPredicate(String tenant) {
this.tenant = tenant;
}

@Override
public boolean evaluate(MapKey key) {
return tenant.equals(key.getTenant());
}
}

static class MapKey implements Serializable {

private static final long serialVersionUID = -4067718572086979235L;

private final String tenant;
private final String username;

MapKey(String tenant, String username) {
this.tenant = tenant;
this.username = username;
}

public String getTenant() {
return tenant;
}

public String getUsername() {
return username;
}

}

static class MapValue implements Serializable {

private static final long serialVersionUID = 7173400494627910565L;

private final String value;

MapValue(String value) {
this.value = value;
}

public String getValue() {
return value;
}

}

}

最佳答案

您可以轻松实现自己的Supplier

供应商只是一个知道如何从 map 条目中提取数据的组件。在您的情况下,您想从 key 中提取数据。由于这在 Hazelcast 中并不常见(最好有一个简单的 key ),因此没有一个通用的实现可以做到这一点。

但是,就您的情况而言,这种实现很简单:

public class TenantSupplier extends Supplier<MapKey, MapValue, String> {

@Override
public String apply(Entry<MapKey, MapValue> entry) {
return entry.getKey().getTenant();
}
}

然后,您可以与该供应商聚合关键租户:

Set<String> uniqueTenant = map.aggregate(new TenantSupplier(), 
Aggregations.<MapKey, String, String>distinctValues());

关于java - Hazelcast 不同键聚合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35802879/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com