-
Notifications
You must be signed in to change notification settings - Fork 11
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
Issue 1668 - Check files have the correct jobId assigned to them in compaction job state store update #1684
Merged
kr565370
merged 37 commits into
develop
from
1668-check-job-files-have-job-ids-before-statestore-update
Jan 17, 2024
Merged
Issue 1668 - Check files have the correct jobId assigned to them in compaction job state store update #1684
kr565370
merged 37 commits into
develop
from
1668-check-job-files-have-job-ids-before-statestore-update
Jan 17, 2024
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
kr565370
changed the title
Issue 1668 - Check job files have the correct jobId assigned to them in compaction job state store updates
Issue 1668 - Check job files have the correct jobId assigned to them in compaction job state store update
Jan 15, 2024
kr565370
changed the title
Issue 1668 - Check job files have the correct jobId assigned to them in compaction job state store update
Issue 1668 - Check files have the correct jobId assigned to them in compaction job state store update
Jan 15, 2024
kr565370
added
the
pr-stacked-top
A stacked pull request that we don't want to merge into its target until the target PR is merged
label
Jan 15, 2024
…eck in state store update
Base automatically changed from
1666-rename-fileinfo-to-filereference
to
develop
January 17, 2024 09:50
patchwork01
reviewed
Jan 17, 2024
...onfiguration/src/main/java/sleeper/configuration/properties/instance/CompactionProperty.java
Show resolved
Hide resolved
...on-job-execution/src/main/java/sleeper/compaction/jobexecution/CompactSortedFilesRunner.java
Outdated
Show resolved
Hide resolved
java/statestore/src/test/java/sleeper/statestore/dynamodb/DynamoDBFileReferenceStoreIT.java
Outdated
Show resolved
Hide resolved
…eReferenceStoreTest
…edFilesRunnerLocalStackIT
…eReferenceStoreIT
patchwork01
removed
the
pr-stacked-top
A stacked pull request that we don't want to merge into its target until the target PR is merged
label
Jan 17, 2024
…statestore-update # Conflicts: # java/compaction/compaction-job-execution/src/main/java/sleeper/compaction/jobexecution/CompactSortedFiles.java # java/core/src/test/java/sleeper/core/statestore/inmemory/InMemoryFileReferenceStoreTest.java # java/statestore/src/test/java/sleeper/statestore/dynamodb/DynamoDBFileReferenceStoreIT.java
patchwork01
approved these changes
Jan 17, 2024
gaffer01
reviewed
Jan 17, 2024
@@ -147,7 +148,8 @@ private RecordsProcessed compactNoSplitting() throws IOException, IteratorExcept | |||
// Create writer | |||
LOGGER.debug("Creating writer for file {}", compactionJob.getOutputFile()); | |||
Path outputPath = new Path(compactionJob.getOutputFile()); | |||
ParquetWriter<Record> writer = ParquetRecordWriterFactory.createParquetRecordWriter(outputPath, tableProperties, conf); | |||
ParquetWriter<Record> writer = ParquetRecordWriterFactory.createParquetRecordWriter( | |||
outputPath, tableProperties, conf, ParquetFileWriter.Mode.OVERWRITE); |
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.
Can you add a comment here saying why we've chosen to use OVERWRITE mode?
gaffer01
approved these changes
Jan 17, 2024
patchwork01
reviewed
Jan 17, 2024
...system-test-drivers/src/test/java/sleeper/systemtest/drivers/util/WaitForJobsStatusTest.java
Outdated
Show resolved
Hide resolved
patchwork01
reviewed
Jan 17, 2024
...est/system-test-drivers/src/main/java/sleeper/systemtest/drivers/util/WaitForJobsStatus.java
Outdated
Show resolved
Hide resolved
patchwork01
added
the
pr-base-for-stacking
Base for stacked pull requests (a dependency for others, where this PR's branch will be the base)
label
Jan 17, 2024
…es-have-job-ids-before-statestore-update
patchwork01
approved these changes
Jan 17, 2024
kr565370
deleted the
1668-check-job-files-have-job-ids-before-statestore-update
branch
January 17, 2024 16:52
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
pr-base-for-stacking
Base for stacked pull requests (a dependency for others, where this PR's branch will be the base)
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.
Rerunning functional system tests
Make sure you have checked all steps below.
Issue
PR"
Tests
Documentation
separate issue for that below.
NOTICES file to reflect this.