armada icon indicating copy to clipboard operation
armada copied to clipboard

Add CreateQueues and UpdateQueues rpc calls to our grpc clients

Open kannon92 opened this issue 3 years ago • 2 comments

With https://github.com/G-Research/armada/pull/1060 added new endpoints to submit.proto.

    rpc CreateQueues (QueueList) returns (BatchQueueCreateResponse) {
        option(google.api.http) = {
            post: "/v1/batched/create_queues"
            body: "*"
        };
    }
    rpc UpdateQueues (QueueList) returns (BatchQueueUpdateResponse) {
        option (google.api.http) = {
            put: "/v1/batched/update_queues"
            body: "*"
        };
    }
  1. These RPC calls should be used in the python client.
  2. Unit tests should be written for these.
  3. Integration tests.
  4. Documentation for the method.

kannon92 avatar Jul 13 '22 14:07 kannon92

I will give doing this in a few weeks.

Sharpz7 avatar Jul 15 '22 14:07 Sharpz7

5

dave-gantenbein avatar Jul 20 '22 16:07 dave-gantenbein