Skip to content

2.6.1

Compare
Choose a tag to compare
@mmenozzi mmenozzi released this 22 Nov 14:50
· 1 commit to master since this release

⚠️ BC Break

There's a BC break with previous version 2.6.0. In that version, in the esb.yml file, we specified a single es_index key to be populated with the Elasticsearch index create API body. Now, to properly support index updates, we had to move up settings, mappings and aliases into their own first-level key. See the README for more info.

Before:

flows:
  sample_flow: 
    # ...
    es_index:
      settings: 
        index:
          mapping:
            total_fields:
              limit: 2000
      mapping:
        properties:
          title:
            type: text
      aliases:
        my_alias:
          is_hidden: true

After:

flows:
  sample_flow: 
    # ...
    es_index_settings:
      index:
        mapping:
          total_fields:
            limit: 2000
    es_index_mapping:
      properties:
        title:
          type: text
    es_index_aliases:
      my_alias:
        is_hidden: true

What's Changed

Full Changelog: 2.6.0...2.7.0