• Home
  • Raw
  • Download

Lines Matching +full:- +full:- +full:retry +full:- +full:all +full:- +full:errors

7------------------|--------|----------------------------------------------------------------------…
10 … belongs to an error space that is not known in this address space. Also errors raised by APIs tha…
13 … If a request is denied for some users within a class of users, such as user-based access control,…
15errors). `PERMISSION_DENIED` must not be used if the caller can not be identified (use `UNAUTHENTI…
16 | RESOURCE_EXHAUSTED | 8 | Some resource has been exhausted, perhaps a per-user quota, or perhaps t…
17-empty, an rmdir operation is applied to a non-directory, etc. Service implementors can use the fo…
19-of-file. Unlike `INVALID_ARGUMENT`, this error indicates a problem that may be fixed if the syste…
21 …ternal errors. This means that some invariants expected by the underlying system have been broken.…
22 …rrected by retrying with a backoff. Note that it is not always safe to retry non-idempotent operat…
26 All RPCs started at a client return a `status` object composed of an integer
27 `code` and a string `message`. The server-side can choose the status it returns
32 The gRPC client and server-side implementations may also generate and
33 return `status` on their own when errors happen. Only a subset of
34 the pre-defined status codes are generated by the gRPC libraries. This
37 server-side to return one of the codes generated by the gRPC libraries).
40 libraries (on either the client-side or server-side) and summarizes the
44 | ------------- |:-------------| :-----:|
52 | Could not decompress, but compression algorithm supported (Client -> Server) | INTERNAL | Server |
53 | Could not decompress, but compression algorithm supported (Server -> Client) | INTERNAL | Client |
55 | Server temporarily out of resources (e.g., Flow-control resource limits reached) | RESOURCE_EXHAU…
57 | Flow-control protocol violation | INTERNAL | Both |
68 - INVALID_ARGUMENT
69 - NOT_FOUND
70 - ALREADY_EXISTS
71 - FAILED_PRECONDITION
72 - ABORTED
73 - OUT_OF_RANGE
74 - DATA_LOSS
76retry](https://github.com/grpc/proposal/blob/master/A6-client-retries.md) failed RPCs must decide …