Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump elasticsearch-beyonder from 7.13.2 to 7.15 and add support for index lifecycle policies #338

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 15, 2021

Bumps elasticsearch-beyonder from 7.13.2 to 7.15.

Commits
  • dd65c02 prepare release beyonder-7.15
  • 7875ebf Move project to 7.15-SNAPSHOT
  • 913fa05 Merge pull request #194 from dadoonet/dependabot/maven/org.apache.maven.plugi...
  • 4548714 Merge pull request #198 from wsourdin/add-index-lifecycle
  • d54745d Add Index lifecycle
  • afd0f17 Merge pull request #197 from dadoonet/dependabot/maven/jackson.version-2.13.0
  • a53607e Bump jackson.version from 2.12.5 to 2.13.0
  • 73ada85 Merge pull request #196 from dadoonet/dependabot/maven/elasticsearch.version-...
  • 976bf64 Bump elasticsearch.version from 7.14.2 to 7.15.0
  • 73bd24a Merge pull request #195 from dadoonet/dependabot/maven/elasticsearch.version-...
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added the update label Oct 15, 2021
@dependabot dependabot bot requested a review from dadoonet October 15, 2021 04:17
@dadoonet
Copy link
Owner

@dependabot rebase

Bumps [elasticsearch-beyonder](https://github.com/dadoonet/elasticsearch-beyonder) from 7.13.2 to 7.15.
- [Release notes](https://github.com/dadoonet/elasticsearch-beyonder/releases)
- [Commits](dadoonet/elasticsearch-beyonder@beyonder-7.13.2...beyonder-7.15)

---
updated-dependencies:
- dependency-name: fr.pilato.elasticsearch:elasticsearch-beyonder
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/maven/fr.pilato.elasticsearch-elasticsearch-beyonder-7.15 branch from 9a32517 to 9d6b78a Compare October 15, 2021 07:46
This feature will call the [Index Lifecycle APIs](https://www.elastic.co/guide/en/elasticsearch/reference/current/index-lifecycle-management.html).

Let say you want to create a policy named `policy1`. Just create a file named
`/es/_index_lifecycles/policy1.json`:

```json
{
  "policy": {
    "phases": {
      "warm": {
        "min_age": "10d",
        "actions": {
          "forcemerge": {
            "max_num_segments": 1
          }
        }
      },
      "delete": {
        "min_age": "30d",
        "actions": {
          "delete": {}
        }
      }
    }
  }
}
```

It will be automatically loaded into elasticsearch when you start the factory.
If you want to apply this policy to your index, you can define the following settings for the index in
`/es/twitter/_settings.json`:

```json
{
	"settings" : {
		"index.lifecycle.name": "policy1"
	}
}
```
@dadoonet dadoonet changed the title Bump elasticsearch-beyonder from 7.13.2 to 7.15 Bump elasticsearch-beyonder from 7.13.2 to 7.15 and add support for index lifecycle policies Oct 15, 2021
@dadoonet dadoonet merged commit d981078 into master Oct 15, 2021
@dependabot dependabot bot deleted the dependabot/maven/fr.pilato.elasticsearch-elasticsearch-beyonder-7.15 branch October 15, 2021 08:43
@dadoonet dadoonet added this to the 7.1 milestone Jan 13, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant