hanahmily commented on code in PR #913:
URL: 
https://github.com/apache/skywalking-banyandb/pull/913#discussion_r2678386537


##########
api/proto/banyandb/database/v1/rpc.proto:
##########
@@ -412,6 +579,23 @@ service GroupRegistryService {
 
   // Exist doesn't expose an HTTP endpoint. Please use HEAD method to touch 
Get instead
   rpc Exist(GroupRegistryServiceExistRequest) returns 
(GroupRegistryServiceExistResponse);
+
+  // Inspect retrieves detailed information about a group including its 
schemas, data distribution, and pending operations.
+  rpc Inspect(GroupRegistryServiceInspectRequest) returns 
(GroupRegistryServiceInspectResponse) {
+    option (google.api.http) = {get: "/v1/group/content/{group}"};
+  }
+
+  // Delete removes a group and optionally all its associated data.
+  // Supports dry-run mode to preview what would be deleted.
+  // May return immediately with a task_id for background deletion of large 
groups.
+  rpc Delete(GroupRegistryServiceDeleteRequest) returns 
(GroupRegistryServiceDeleteResponse) {
+    option (google.api.http) = {delete: "/v1/group/{group}"};

Review Comment:
   I prefer `/v1/group/schema/{group}`, there is no reason to break this 
convention. 



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to