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

[WIP] improve metadata perfomance for HDFS. #2995

Open
wants to merge 3 commits into
base: curvefs-optimization
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -177,3 +177,4 @@ curvefs/sdk/libcurvefs/examples/bin
curvefs/sdk/output/
hadoop-test/
nnbench-test/
dependency-reduced-pom.xml
5 changes: 3 additions & 2 deletions .obm.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
container_name: curve-build-playground.master
container_image: opencurvedocker/curve-build:ubuntu22
container_name: curve-build-playground.debian11
container_image: opencurvedocker/curve-base:build-debian11

5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ ci-list:
@bash util/build_in_image.sh --stor=$(stor) --list

ci-build:
@bash util/build_in_image.sh --stor=$(stor) --only=$(only) --dep=$(dep) --release=$(release) --ci=$(ci) --os=$(os) --sanitizer=$(sanitizer)
@bash util/build_in_image.sh --stor=$(stor) --only=$(only) --dep=$(dep) --release=$(release) --ci=$(ci) --os=$(os)

ci-dep:
@bash util/build_in_image.sh --stor=$(stor) --only="" --dep=1
Expand Down Expand Up @@ -127,3 +127,6 @@ init-hadoop:

sdk:
@bash util/sdk.sh

clean:
@bash util/clean.sh
6 changes: 0 additions & 6 deletions curvefs/docker/debian11/Dockerfile

This file was deleted.

139 changes: 0 additions & 139 deletions curvefs/docker/debian11/entrypoint.sh

This file was deleted.

9 changes: 0 additions & 9 deletions curvefs/docker/openeuler/Dockerfile

This file was deleted.

139 changes: 0 additions & 139 deletions curvefs/docker/openeuler/entrypoint.sh

This file was deleted.

4 changes: 3 additions & 1 deletion curvefs/proto/metaserver.proto
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,13 @@ message CreateDentryRequest {
required uint32 partitionId = 3;
required Dentry dentry = 4;
optional Time create = 5;
optional CreateInodeRequest createInodeRequest = 6;
}

message CreateDentryResponse {
required MetaStatusCode statusCode = 1;
optional uint64 appliedIndex = 2;
optional Inode inode = 3;
}

message DeleteDentryRequest {
Expand Down Expand Up @@ -213,7 +215,7 @@ message UpdateDeallocatableBlockGroupRequest {
}

message UpdateDeallocatableBlockGroupResponse {
required MetaStatusCode statusCode = 1;
required MetaStatusCode statusCode = 1;
optional uint64 appliedIndex = 2;
}

Expand Down
Loading