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

HDDS-10926. Block deletion should update container merkle tree. #6875

Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
bf0dd6e
Initial outline of checksum manager and merkle tree with proto
errose28 Jun 6, 2024
408cff9
Merge branch 'HDDS-10239-container-reconciliation' into mt-manager-wip
errose28 Jun 6, 2024
3adbe5a
Add config key for lock stripes
errose28 Jun 18, 2024
e02a609
Keep deleted block list sorted
errose28 Jun 18, 2024
3680a2e
Change chunk checksum proto, add the first passing test
errose28 Jun 20, 2024
0d5800c
Use config defaults for test setup
errose28 Jun 21, 2024
eb01da4
Finish tests for ContainerMerkleTree
errose28 Jun 21, 2024
f35effd
Add tests for checksum maanger and standardize proto names
errose28 Jun 21, 2024
21dd870
Updates after reviewing diff
errose28 Jun 21, 2024
47cd213
Rename checksum manager and file. Fix findbugs and Rat
errose28 Jun 24, 2024
6460fe7
Make checksum file read/write for the API based on files, not protos
errose28 Jun 25, 2024
ff55f27
Initially mark where blocks will be added
errose28 Jun 25, 2024
fffeba6
Block deleting task supports updating the file
errose28 Jun 26, 2024
4822941
Basic block delete test passes
errose28 Jun 26, 2024
6087fa3
Add test for block delete commands retried
errose28 Jun 27, 2024
9714259
Rename data tree to container tree
errose28 Jun 27, 2024
aacac83
Merge branch 'HDDS-10887-mt-manager' into HDDS-10926-mt-delete
errose28 Jun 27, 2024
3161ad8
Use generic container type in checksum manager
errose28 Jun 27, 2024
041c5c2
Checkstyle
errose28 Jun 27, 2024
838eb59
Merge branch 'HDDS-10239-container-reconciliation' into HDDS-10926-mt…
errose28 Jun 28, 2024
be95b85
Merge branch 'HDDS-10239-container-reconciliation' into HDDS-10926-mt…
errose28 Jul 26, 2024
245844c
Use block name in task
errose28 Jul 26, 2024
51e7020
Update test description
errose28 Jul 30, 2024
1748205
Move test helper methods to util class
errose28 Jul 30, 2024
5d24704
Add more tests for blocks being written to the file
errose28 Jul 30, 2024
0145809
Checkstyle
errose28 Jul 30, 2024
52207ce
Fix rat
errose28 Jul 30, 2024
a82c863
Add metrics unregister workaround from WIP HDDS-10376
errose28 Jul 31, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix rat
  • Loading branch information
errose28 committed Jul 30, 2024
commit 52207ce2feef0e4ecfa32ff4bf9bd5eef5d5834a
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.hadoop.ozone.container.checksum;

import org.apache.hadoop.hdds.conf.ConfigurationSource;
Expand Down