定义缓存时如何从自定义类获取QueryFields?

时间:2018-09-06 11:15:11

标签: java ignite

我正在尝试通过jdbc获取Ignite Cache数据。为此,我定义了新的自定义类并注释字段:

public class MyClass implements Serializable {
    @QuerySqlField(index = true)
    public Integer id;

    @QuerySqlField(index = true)
    public String records_offset;

    @QuerySqlField(index = true)
    public Integer session_id;
...
}

然后我以这种方式开始点火:

CacheConfiguration conf = new CacheConfiguration();
conf.setBackups(1);
conf.setName("test");

QueryEntity queryEntity = new QueryEntity();
queryEntity.setKeyType(Integer.class.getName());
queryEntity.setValueType(CDR.class.getName());
queryEntity.setTableName("CDR");

conf.setQueryEntities(Arrays.asList(queryEntity));
IgniteConfiguration iconf = new IgniteConfiguration();
iconf.setCacheConfiguration(conf);
iconf.setPeerClassLoadingEnabled(true);
this.ignite = Ignition.start(iconf);
this.cache = ignite.getOrCreateCache("test");

现在,当我尝试从JDBC获取数据时,出现错误:

Error: class org.apache.ignite.binary.BinaryObjectException: Custom objects are not supported (state=50000,code=0)

我可以定义一组字段,以获得从JDBC获取数据的机会

LinkedHashMap<String, String> fields = new LinkedHashMap();
fields.put("session_id", Integer.class.getName());
fields.put("records_offset", String.class.getName());
queryEntity.setFields(fields);

但是,如果我已经在类定义中注释了字段,为什么还要这样做呢?

1 个答案:

答案 0 :(得分:1)

您可以使用三个选项来定义SQL模式:

  1. 注释和CacheConfiguration.setIndexedTypes https://apacheignite.readme.io/docs/cache-queries#section-query-configuration-by-annotations

  2. 您可以配置QueryEntity: https://apacheignite.readme.io/docs/cache-queries#section-query-configuration-using-queryentity

  3. 或仅使用纯SQL: https://apacheignite-sql.readme.io/docs/create-table

在您的情况下,您混合了[1]和[2],因此为QueryEntity注册了用于索引的键和值,但是定义了带有注释的字段,因此不同方式的混合不起作用。您需要坚持使用特定的方式,就像您已经通过使用CacheConfiguration.setIndexedTypes方法添加用于索引的键和值注册一样。因此,您现在就可以摆脱QueryEntity。