使用Spring-Data Elasticsearch在Elasticsearch中创建索引名称

我有一个用例,需要每月在Elasticsearch中创建索引。这个想法是在每月的基础上创建索引,以便它们易于维护,并且可以在过期时删除。为了实现这一点,我已经使用了spring-batch,并有一个每月的工作,它将在每月的基础上创建索引对于Elasticsearch-Java集成,我使用了Spring-Data Elasticsearch实现。我现在面临的问题是,我无法弄清楚如何使用Entity对象为索引和映射提供动态名称。我当前的实现是在牢记单一索引的情况下完成的。请找到我用来创建索引的以下代码

elasticsearchTemplate.createIndex(SingleChat.class);
elasticsearchTemplate.putMapping(SingleChat.class);
elasticsearchTemplate.refresh(SingleChat.class, true);

而SingleChat是我的实体类

@Document(indexName="singlemsgtemp_#{jobParameters['MONTH']}",type="singlechat")
public class SingleChat {
    @org.springframework.data.annotation.Id
    String Id;
    @Field(type = FieldType.String)
    String conservationId;
    @Field(type = FieldType.String)
    String from;
    @Field(type = FieldType.String)
    String to;
    @Field(type = FieldType.String)
    String msgContent; 
    @Field(type = FieldType.String)
    String sessionId;
    @Field(type = FieldType.Date, index = FieldIndex.not_analyzed, store = true, format = DateFormat.date_hour_minute_second_millis)
    Date postedDate;
    @Field(type = FieldType.Date, index = FieldIndex.not_analyzed, store = true, format = DateFormat.date_hour_minute_second_millis)
    Date expireDate;
}   

但这并没有像预期的那样工作。我也在尝试其他一些事情。但我愿意接受建议。也请随时评论我目前的方法,它是否有效。如果需要更多详细信息,请告诉我。


答案 1

我在项目中所做的是,每当它更改时,我们都会在DB中存储索引名称和类型name。

现在我得到索引,并以这种方式动态键入:

第一个解决方案

  • 1)在配置文件中,创建一个为某些属性返回值的Bean。在这里,我从DB或属性文件中注入了带有@Value注释的somePropertyValue:-

    @Value("${config.somePropertyValue}")
    private String somePropertyValue;
    
    @Bean
    public String somePropertyValue(){
        return somePropertyValue;
    }
    
  • 2)在此之后,可以将somePropertyValue注入到@Document注释中,如下所示:-

    @Document(index = "#{@somePropertyValue}")
    public class Foobar {
        //...
    }
    

第二种解决方案

  • 1)在豆中创建 getter setter :-

    @Component
    public class config{
         @Value("${config.somePropertyValue}")
         private String somePropertyValue;
    
         public String getSomePropertyValue() {
           return somePropertyValue;
         }
        public void setSomePropertyValue(String somePropertyValue) {
           this.somePropertyValue = somePropertyValue;
        }
    }
    
  • 2)在此之后,可以将somePropertyValue注入到@Document注释中,如下所示:-

    @Document(index = "#{config.somePropertyValue}")
    public class Foobar {
        //...
    }
    

答案 2

我在应用程序上所做的是,我使用 ElasticSearchTemplate 创建我的动态索引名称,然后将别名指向我创建的新索引,然后删除旧索引。

esTemplate.createIndex(newIndexName, loadfromFromFile(settingsFileName));
esTemplate.putMapping(newIndexName, "MYTYPE", loadfromFromFile(mappingFileName));

我没有使用类中的映射和设置,因为我需要它是动态的。

    protected String loadFromFile(String fileName) throws IllegalStateException {
       StringBuilder buffer = new StringBuilder(2048);
       try {
           InputStream is = getClass().getResourceAsStream(fileName);
           LineNumberReader reader = new LineNumberReader(new InputStreamReader(is));
           while (reader.ready()) {
               buffer.append(reader.readLine());
               buffer.append(' ');
           }
       } catch (Exception e) {
           throw new IllegalStateException("couldn't load file " + fileName, e);
       }
       return buffer.toString();
   }

推荐