This is an automated email from the ASF dual-hosted git repository. chenxi pushed a commit to branch ozone-1.4 in repository https://gitbox.apache.org/repos/asf/ozone.git
commit 9a02d16fe731e1d928731dac10465c8ab84d42c0 Author: Xi Chen <[email protected]> AuthorDate: Fri Aug 16 00:36:57 2024 +0800 Update proto.lock for Ozone 1.4.1 --- .../interface-client/src/main/resources/proto.lock | 12 ++ .../interface-server/src/main/resources/proto.lock | 24 ++++ .../interface-client/src/main/resources/proto.lock | 136 ++++++++++++++++++++- 3 files changed, 169 insertions(+), 3 deletions(-) diff --git a/hadoop-hdds/interface-client/src/main/resources/proto.lock b/hadoop-hdds/interface-client/src/main/resources/proto.lock index 1f3f552a4d..e59b77b93d 100644 --- a/hadoop-hdds/interface-client/src/main/resources/proto.lock +++ b/hadoop-hdds/interface-client/src/main/resources/proto.lock @@ -2433,6 +2433,18 @@ "name": "containerCount", "type": "int64", "optional": true + }, + { + "id": 6, + "name": "committed", + "type": "int64", + "optional": true + }, + { + "id": 7, + "name": "freeSpaceToSpare", + "type": "int64", + "optional": true } ] }, diff --git a/hadoop-hdds/interface-server/src/main/resources/proto.lock b/hadoop-hdds/interface-server/src/main/resources/proto.lock index 6966915f4a..bb5748eab2 100644 --- a/hadoop-hdds/interface-server/src/main/resources/proto.lock +++ b/hadoop-hdds/interface-server/src/main/resources/proto.lock @@ -1427,6 +1427,30 @@ "value": "false" } ] + }, + { + "id": 8, + "name": "committed", + "type": "uint64", + "optional": true, + "options": [ + { + "name": "default", + "value": "0" + } + ] + }, + { + "id": 9, + "name": "freeSpaceToSpare", + "type": "uint64", + "optional": true, + "options": [ + { + "name": "default", + "value": "0" + } + ] } ] }, diff --git a/hadoop-ozone/interface-client/src/main/resources/proto.lock b/hadoop-ozone/interface-client/src/main/resources/proto.lock index b8f5c395ba..0b28e0953c 100644 --- a/hadoop-ozone/interface-client/src/main/resources/proto.lock +++ b/hadoop-ozone/interface-client/src/main/resources/proto.lock @@ -3270,6 +3270,12 @@ "name": "exclusiveReplicatedSize", "type": "uint64", "optional": true + }, + { + "id": 19, + "name": "deepCleanedDeletedDir", + "type": "bool", + "optional": true } ] }, @@ -4137,6 +4143,12 @@ "name": "ecReplicationConfig", "type": "hadoop.hdds.ECReplicationConfig", "optional": true + }, + { + "id": 8, + "name": "eTag", + "type": "string", + "optional": true } ] }, @@ -4687,6 +4699,29 @@ } ] }, + { + "name": "DeleteKeyError", + "fields": [ + { + "id": 1, + "name": "key", + "type": "string", + "optional": true + }, + { + "id": 2, + "name": "errorCode", + "type": "string", + "optional": true + }, + { + "id": 3, + "name": "errorMsg", + "type": "string", + "optional": true + } + ] + }, { "name": "DeleteKeysResponse", "fields": [ @@ -4701,6 +4736,12 @@ "name": "status", "type": "bool", "optional": true + }, + { + "id": 3, + "name": "errors", + "type": "DeleteKeyError", + "is_repeated": true } ] }, @@ -5636,6 +5677,12 @@ "name": "partName", "type": "string", "optional": true + }, + { + "id": 2, + "name": "eTag", + "type": "string", + "optional": true } ] }, @@ -5699,6 +5746,12 @@ "name": "partName", "type": "string", "required": true + }, + { + "id": 3, + "name": "eTag", + "type": "string", + "optional": true } ] }, @@ -5965,6 +6018,12 @@ "name": "size", "type": "uint64", "required": true + }, + { + "id": 5, + "name": "eTag", + "type": "string", + "optional": true } ] }, @@ -6671,7 +6730,13 @@ "id": 2, "name": "updatedSnapshotDBKey", "type": "string", - "is_repeated": true + "is_repeated": true, + "options": [ + { + "name": "deprecated", + "value": "true" + } + ] } ] }, @@ -6682,6 +6747,36 @@ "id": 1, "name": "snapshotProperty", "type": "SnapshotProperty", + "optional": true, + "options": [ + { + "name": "deprecated", + "value": "true" + } + ] + }, + { + "id": 2, + "name": "snapshotKey", + "type": "string", + "optional": true + }, + { + "id": 3, + "name": "snapshotSize", + "type": "SnapshotSize", + "optional": true + }, + { + "id": 4, + "name": "deepCleanedDeletedDir", + "type": "bool", + "optional": true + }, + { + "id": 5, + "name": "deepCleanedDeletedKey", + "type": "bool", "optional": true } ] @@ -6693,18 +6788,53 @@ "id": 1, "name": "snapshotKey", "type": "string", - "optional": true + "optional": true, + "options": [ + { + "name": "deprecated", + "value": "true" + } + ] }, { "id": 2, "name": "exclusiveSize", "type": "uint64", - "optional": true + "optional": true, + "options": [ + { + "name": "deprecated", + "value": "true" + } + ] }, { "id": 3, "name": "exclusiveReplicatedSize", "type": "uint64", + "optional": true, + "options": [ + { + "name": "deprecated", + "value": "true" + } + ] + } + ] + }, + { + "name": "SnapshotSize", + "fields": [ + { + "id": 1, + "name": "exclusiveSize", + "type": "uint64", + "optional": true + }, + { + "id": 2, + "name": "exclusiveReplicatedSize", + "type": "uint64", "optional": true } ] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
