c-thiel commented on code in PR #12584:
URL: https://github.com/apache/iceberg/pull/12584#discussion_r3764421838


##########
open-api/rest-catalog-open-api.yaml:
##########
@@ -4387,338 +4367,393 @@ components:
           items:
             $ref: '#/components/schemas/TableIdentifier'
 
-    ListFunctionsResponse:
+    ListNamespacesResponse:
       type: object
       properties:
         next-page-token:
           $ref: '#/components/schemas/PageToken'
-        identifiers:
+        namespaces:
           type: array
           uniqueItems: true
           items:
-            $ref: '#/components/schemas/CatalogObjectIdentifier'
+            $ref: '#/components/schemas/Namespace'
 
-    ListNamespacesResponse:
+    UpdateNamespacePropertiesResponse:
       type: object
+      required:
+        - updated
+        - removed
       properties:
-        next-page-token:
-          $ref: '#/components/schemas/PageToken'
-        namespaces:
+        updated:
+          description: List of property keys that were added or updated
           type: array
           uniqueItems: true
           items:
-            $ref: '#/components/schemas/Namespace'
-
-    LoadFunctionResult:
-      description: |
-        Result returned when a function is loaded from the catalog.
-
+            type: string
+        removed:
+          description: List of properties that were removed
+          type: array
+          items:
+            type: string
+        missing:
+          type: array
+          items:
+            type: string
+          description:
+            List of properties requested for removal that were not found
+            in the namespace's properties. Represents a partial success 
response.
+            Server's do not need to implement this.
+          nullable: true
 
-        The function metadata JSON is returned in the `metadata` field. The 
location of the metadata
-        file is returned in the `metadata-location` field, if available.
+    CommitTableResponse:
       type: object
       required:
+        - metadata-location
         - metadata
       properties:
         metadata-location:
           type: string
         metadata:
-          $ref: '#/components/schemas/FunctionMetadata'
-
-    FunctionMetadata:
-      description: |
-        Portable UDF metadata format.
-
+          $ref: '#/components/schemas/TableMetadata'
 
-        Each function is represented by a self-contained metadata file. The 
`format-version` field
-        identifies the UDF metadata format.
+    QueryEventsResponse:
       type: object
       required:
-        - function-uuid
-        - format-version
-        - definitions
-        - definition-log
+        - continuation-token
+        - events
       properties:
-        function-uuid:
-          type: string
-          format: uuid
-          description: A UUID that identifies this UDF, generated once at 
creation.
-        format-version:
-          type: integer
-          description: UDF specification format version (must be 1).
-          minimum: 1
-          maximum: 1
-        definitions:
-          type: array
-          description: List of function definition entities.
-          items:
-            $ref: '#/components/schemas/FunctionDefinition'
-        definition-log:
+        continuation-token:
+          type: string
+          description: >
+            An opaque continuation token to fetch the next page of events.
+            This token encodes the server's cursor position and filter state.
+            Clients should treat this as an opaque value and pass it 
unmodified in subsequent requests.
+            When no more events are currently available, the server returns an 
empty `events` array
+            and a `continuation-token` that the client can re-issue later to 
receive events that
+            occur after this point.
+        events:
           type: array
-          description: History of versions within the function's definitions.
           items:
-            $ref: '#/components/schemas/FunctionDefinitionLogEntry'
-        location:
-          type: string
-          description: The function's base location. This is used to store 
function metadata files.
-        properties:
-          type: object
-          description: A string-to-string map of properties.
-          additionalProperties:
-            type: string
-        secure:
-          type: boolean
-          description: Whether it is a secure function.
-          default: false
-        doc:
-          type: string
-          description: Documentation string.
+            $ref: "#/components/schemas/Event"
 
-    FunctionDefinition:
+    Event:
       type: object
       required:
-        - definition-id
-        - parameters
-        - return-type
-        - versions
-        - current-version-id
-        - function-type
+        - event-id
+        - request-id
+        - request-event-count
+        - timestamp-ms
+        - operation
       properties:
-        definition-id:
+        event-id:
           type: string
-          description: A canonical string derived from the parameter types, 
formatted as a comma-separated list with no spaces.
-        parameters:
-          type: array
-          description: Ordered list of function parameters. Invocation order 
must match this list.
-          items:
-            $ref: '#/components/schemas/FunctionParameter'
-        return-type:
-          $ref: '#/components/schemas/FunctionDataType'
-        return-nullable:
-          type: boolean
-          description: A hint to indicate whether the return value is nullable 
or not.
-          default: true
-        versions:
-          type: array
-          description: Versioned implementations of this definition.
-          items:
-            $ref: '#/components/schemas/FunctionDefinitionVersion'
-        current-version-id:
-          type: integer
-          description: Identifier of the current version for this definition.
-        function-type:
-          type: string
-          description: Function type. When set to "udtf", "return-type" must 
be a struct describing the output schema.
-          enum: ["udf", "udtf"]
-        doc:
+          description: Unique ID of this event. Clients should perform 
deduplication based on this ID.
+        request-id:
+          description: >
+            Opaque ID of the request this change belongs to.
+            This ID can be used to identify events that were part of the same 
request.
           type: string
-          description: Documentation string.
-
-    FunctionParameter:
+        request-event-count:
+          type: integer
+          description: >
+            Number of events produced by the originating catalog request (e.g. 
updateTable
+            or commitTransaction) that generated this event. Such requests can 
apply multiple
+            updates atomically, each surfaced as a separate event sharing the 
same `request-id`;
+            this count reports how many events that originating request 
produced in total.
+        timestamp-ms:
+          type: integer
+          format: int64
+          description: >
+            Timestamp when this event occurred (epoch milliseconds).
+            Timestamps are not guaranteed to be unique. Typically all events in
+            a transaction will have the same timestamp.
+        actor:
+          type: object
+          description: >
+            The actor who performed the operation, such as a user or service 
account.
+            Implementations may add arbitrary additional fields; the optional 
`id` field is
+            recommended as a portable identifier that consumers can render and 
key on.
+          properties:
+            id:
+              type: string
+              description: >
+                Recommended, optional. Stable identifier of the actor (e.g. a 
user or
+                service account). Provided when the server can attribute the 
operation.
+          additionalProperties: true
+        operation:
+          description: >
+            The operation that was performed, such as creating or updating a 
table.
+            The concrete type is selected by the `operation-type` 
discriminator defined on
+            `BaseOperation`. Clients should discard events with unknown 
operation types.

Review Comment:
   Applied in 
[5386777](https://github.com/apache/iceberg/pull/12584/commits/53867776f1e2fe9f0e7334a01bbbd13daad12476)



-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to