-
Notifications
You must be signed in to change notification settings - Fork 24.9k
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
[Connector API] Fix bug with with wrong target index for access control sync #109097
[Connector API] Fix bug with with wrong target index for access control sync #109097
Conversation
Hi @jedrazb, I've created a changelog YAML for you. |
Pinging @elastic/ent-search-eng (Team:Enterprise Search) |
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.
Just to make sure I understand it - the problem happens if in Kibana somebody is scheduling an access control sync manually?
@artem-shelkovnikov as of now Kibana doesn't make use of Connector API to create on-demand syncs. Everything works as expected (Kibana UI, scheduled AC syncs, etc. ) except for Connector API We need to fix this bug before integrating Kibana with this endpoint. |
💔 Backport failed
You can use sqren/backport to manually backport by running |
…ol sync (elastic#109097) (cherry picked from commit d9e6f54) # Conflicts: # x-pack/plugin/ent-search/src/main/java/org/elasticsearch/xpack/application/connector/syncjob/ConnectorSyncJobIndexService.java
💔 Some backports could not be created
Manual backportTo create the backport manually run:
Questions ?Please refer to the Backport tool documentation |
Not backporting to |
Bug overview
access_control
sync, theconnector.index_name
should point to a special index, prefixed with.search-acl-filter-
that is intended to hold access control data.search-acl-filter-{index-name}
, where index-name references the currently attached index.Changes
Validation