-
Notifications
You must be signed in to change notification settings - Fork 474
[ti_anomali] Modify field type to eliminate field conflicts within the data streams. #13909
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
[ti_anomali] Modify field type to eliminate field conflicts within the data streams. #13909
Conversation
Pinging @elastic/security-service-integrations (Team:Security-Service Integrations) |
🚀 Benchmarks reportTo see the full report comment with |
description: >- | ||
IDs of the trusted circles with which the indicator is shared. | ||
- name: type | ||
type: keyword | ||
description: >- | ||
Type of indicator—domain, email, ip, md5, string, url. | ||
- name: update_id | ||
type: long | ||
type: keyword |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
During integration upgrade, the source data stream-backed indices are rolled over, which doesn't cause conflicts during indexing.
But the destination indices aren't data stream backed, hence they wouldn't roll over. This will cause indexing failures because of mapping conflicts. You will also need to update transform's destination index suffix, and also fleet_transform_version
to actually update the transform.
Please also test the upgrade process.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We tried upgrading the integration without changing destination index and fleet_transform_version
and noticed that the destination index mapping has changed and newer documents ingested without any error. However, the newer documents still indexed with the previous field type, which is unusual. After changing the destination index name and fleet_transform_version
it ingested documents with modified field types.
💚 Build Succeeded
History
|
|
Package ti_anomali - 2.0.0 containing this change is available at https://epr.elastic.co/package/ti_anomali/2.0.0/ |
Proposed commit message
Checklist
changelog.yml
file.How to test this PR locally
Related issues