Skip to content

Support gRPC Richer Error Model or ease trailing metadata access #1892

Open
@Skoti

Description

@Skoti

Currently, the GRPCStatus is not related to Status defined in google/rpc/status.proto.

According to Richer Error Model specification, the repeated google.protobuf.Any details field

enables servers to return and clients to consume additional error details expressed as one or more protobuf messages.

This is beneficial if you want to go beyond the standard gRPC codes error model and start providing more detailed information.

Preferred solution

The GRPCStatus gains the details field.

Alternative

Since the details field is transported as trailing metadata:

The protobuf binary encoding of this extra error information is provided as trailing metadata in the response.

We can workaround the missing details field. The trailingMetadata is available in all calls, for example:

public var trailingMetadata: HPACKHeaders {
get async throws {
try await self.withRPCCancellation {
try await self.responseParts.trailingMetadata.get()
}
}
}

The only inconvenient part is that async/await wrappers do not expose it in any way.

extension GRPCClient {
public func performAsyncUnaryCall<Request: Message & Sendable, Response: Message & Sendable>(
path: String,
request: Request,
callOptions: CallOptions? = nil,
interceptors: [ClientInterceptor<Request, Response>] = [],
responseType: Response.Type = Response.self
) async throws -> Response {
let call = self.channel.makeAsyncUnaryCall(
path: path,
request: request,
callOptions: callOptions ?? self.defaultCallOptions,
interceptors: interceptors
)
return try await withTaskCancellationHandler {
try await call.response
} onCancel: {
call.cancel()
}
}

However, the library has GRPCStatusAndTrailers struct that could be used here or perhaps even deeper in the codebase.

public struct GRPCStatusAndTrailers: Equatable {
/// The status.
public var status: GRPCStatus
/// The trailers.
public var trailers: HPACKHeaders?
public init(status: GRPCStatus, trailers: HPACKHeaders? = nil) {
self.status = status
self.trailers = trailers
}
}

Then the async/await wrappers (or maybe at some lower level) instead of simply propagating the error, could transform it to status and then add metadata and throw it, something like:

let status = (error as! GRPCStatusTransformable).makeGRPCStatus()
throw GRPCStatusAndTrailers(status: status, trailers: call.trailingMetadata)

The GRPCStatusAndTrailers could conform to GRPCStatusTransformable for backward compatibility.
This would be an easy win, and allow library users to easily obtain detailed error information.

Questions

  1. Do you plan to support the Rich Error Model in the long term?
  2. What do you think about the alternative solution (for example the one above) in the short term for async/await APIs?

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    kind/enhancementImprovements to existing feature.

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions