-
Notifications
You must be signed in to change notification settings - Fork 29
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
Field-level Redaction #1122
Open
ermontross
wants to merge
17
commits into
master
Choose a base branch
from
emontross/redaction
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Field-level Redaction #1122
+1,823
−68
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ermontross
force-pushed
the
emontross/redaction
branch
2 times, most recently
from
October 17, 2024 18:24
df00ed0
to
58e13f7
Compare
kyle-sammons
requested changes
Oct 17, 2024
astra/src/main/java/com/slack/astra/logstore/LuceneIndexStoreImpl.java
Outdated
Show resolved
Hide resolved
...rc/main/java/com/slack/astra/logstore/search/fieldRedaction/RedactionStoredFieldVisitor.java
Outdated
Show resolved
Hide resolved
...rc/main/java/com/slack/astra/logstore/search/fieldRedaction/RedactionStoredFieldVisitor.java
Outdated
Show resolved
Hide resolved
astra/src/main/java/com/slack/astra/metadata/fieldredaction/FieldRedactionMetadataStore.java
Outdated
Show resolved
Hide resolved
bryanlb
previously requested changes
Oct 21, 2024
astra/src/main/java/com/slack/astra/chunk/ReadOnlyChunkImpl.java
Outdated
Show resolved
Hide resolved
astra/src/main/java/com/slack/astra/logstore/search/fieldRedaction/RedactedFieldReader.java
Show resolved
Hide resolved
...main/java/com/slack/astra/logstore/search/fieldRedaction/RedactionFilterDirectoryReader.java
Outdated
Show resolved
Hide resolved
astra/src/main/java/com/slack/astra/logstore/search/fieldRedaction/RedactionLeafReader.java
Show resolved
Hide resolved
...rc/main/java/com/slack/astra/logstore/search/fieldRedaction/RedactionStoredFieldVisitor.java
Show resolved
Hide resolved
.../src/main/java/com/slack/astra/logstore/search/fieldRedaction/RedactionSubReaderWrapper.java
Show resolved
Hide resolved
astra/src/main/java/com/slack/astra/metadata/fieldredaction/FieldRedactionMetadataStore.java
Outdated
Show resolved
Hide resolved
astra/src/test/java/com/slack/astra/logstore/schema/FieldConflictStrategyTests.java
Show resolved
Hide resolved
astra/src/test/java/com/slack/astra/util/TestingFieldRedactionMetadataStore.java
Outdated
Show resolved
Hide resolved
kyle-sammons
previously approved these changes
Oct 22, 2024
ermontross
force-pushed
the
emontross/redaction
branch
from
November 12, 2024 23:18
8db2a3f
to
9a55a0a
Compare
kyle-sammons
approved these changes
Nov 13, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Add the ability to redact field values based on a field name for a specified time range via the manager API. This implemented is heavily based on OpenSearch's field masking.
The admin specifies a time range and a field name to redact. It redacts on read at the Lucene level by overwriting the reader. Currently, replaces the value of the field specified with
REDACTED
.Left to-dos for the future
REDACTED
Requirements