Copilot commented on code in PR #9483:
URL: https://github.com/apache/gravitino/pull/9483#discussion_r2621942597
##########
clients/client-python/gravitino/client/gravitino_metalake.py:
##########
@@ -567,8 +599,24 @@ def create_tag(self, tag_name, comment, properties) -> Tag:
Returns:
Tag: The tag information.
"""
- # TODO implement create_tag
- raise NotImplementedError()
+ tag_create_request = TagCreateRequest(
+ tag_name,
+ comment,
+ properties,
+ )
+ tag_create_request.validate()
+
+ url = self.API_METALAKES_TAGS_PATH.format(encode_string(self.name()))
Review Comment:
The URL pattern `API_METALAKES_TAGS_PATH` is defined with two placeholders
but only one argument (metalake name) is passed. For the create operation, this
should use a different path pattern without the tag name placeholder, like
`"api/metalakes/{}/tags"`. The current usage will cause a format error since
there's a missing argument for the second placeholder.
##########
clients/client-python/gravitino/dto/metadata_object_dto.py:
##########
@@ -0,0 +1,95 @@
+# 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
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# 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.
+
+
+from __future__ import annotations
+
+from dataclasses import dataclass, field
+from typing import Optional
+
+from dataclasses_json import config
+
+from gravitino.api.metadata_object import MetadataObject
+from gravitino.utils.precondition import Precondition
+
+
Review Comment:
`MetadataObjectDTO` is missing the `@dataclass_json` decorator. This class
is used as a field in `MetadataObjectListResponse` which is deserialized using
`from_json`. Without the decorator, the nested `MetadataObjectDTO` objects may
not be properly deserialized from JSON. Add `@dataclass_json` decorator before
the `@dataclass` decorator, similar to how `TagDTO` is decorated.
```suggestion
from dataclasses_json import config, dataclass_json
from gravitino.api.metadata_object import MetadataObject
from gravitino.utils.precondition import Precondition
@dataclass_json
```
##########
clients/client-python/gravitino/dto/responses/tag_response.py:
##########
@@ -0,0 +1,70 @@
+# 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
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# 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.
+
+from __future__ import annotations
+
+from dataclasses import dataclass, field
+
+from dataclasses_json import config
+
+from gravitino.dto.responses.base_response import BaseResponse
+from gravitino.dto.tag_dto import TagDTO
+from gravitino.utils.precondition import Precondition
+
+
+@dataclass
+class TagNamesListResponse(BaseResponse):
+ """Represents a response for a Tag Names List request."""
+
+ _tags: list[str] = field(default_factory=list,
metadata=config(field_name="names"))
+
+ def tag_names(self) -> list[str]:
+ return self._tags
+
+ def validate(self) -> None:
+ Precondition.check_argument(
+ self._tags is not None, "Tag Names List response should have tags"
+ )
+
+ for tag_name in self._tags:
+ Precondition.check_string_not_empty(
+ tag_name, "Tag Names List response should have non-empty tag
names"
+ )
+
+
+@dataclass
+class TagListResponse(BaseResponse):
+ """Represents a response for a Tag List request."""
+
+ _tags: list[TagDTO] = field(
+ default_factory=list, metadata=config(field_name="tags")
+ )
+
+ def tags(self) -> list[TagDTO]:
+ return self._tags
+
+
+@dataclass
+class TagResponse(BaseResponse):
+ """Represents a response for a tag."""
+
+ _tag: TagDTO = field(default=None, metadata=config(field_name="tag"))
Review Comment:
`TagResponse` class is missing a getter method for the `_tag` field. Similar
to how `TagNamesListResponse` has `tag_names()` and `TagListResponse` has
`tags()`, this class should have a `tag()` method that returns the TagDTO.
--
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]