vpai | 80b6d01 | 2014-12-17 11:47:32 -0800 | [diff] [blame] | 1 | /* |
| 2 | * |
Craig Tiller | 6169d5f | 2016-03-31 07:46:18 -0700 | [diff] [blame] | 3 | * Copyright 2015, Google Inc. |
vpai | 80b6d01 | 2014-12-17 11:47:32 -0800 | [diff] [blame] | 4 | * All rights reserved. |
| 5 | * |
| 6 | * Redistribution and use in source and binary forms, with or without |
| 7 | * modification, are permitted provided that the following conditions are |
| 8 | * met: |
| 9 | * |
| 10 | * * Redistributions of source code must retain the above copyright |
| 11 | * notice, this list of conditions and the following disclaimer. |
| 12 | * * Redistributions in binary form must reproduce the above |
| 13 | * copyright notice, this list of conditions and the following disclaimer |
| 14 | * in the documentation and/or other materials provided with the |
| 15 | * distribution. |
| 16 | * * Neither the name of Google Inc. nor the names of its |
| 17 | * contributors may be used to endorse or promote products derived from |
| 18 | * this software without specific prior written permission. |
| 19 | * |
| 20 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 21 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 22 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 23 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 24 | * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 25 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 26 | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 27 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 28 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 29 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 30 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 31 | * |
| 32 | */ |
| 33 | |
vpai | 80b6d01 | 2014-12-17 11:47:32 -0800 | [diff] [blame] | 34 | #include <cassert> |
Vijay Pai | 372fd87 | 2015-06-08 13:30:08 -0700 | [diff] [blame] | 35 | #include <chrono> |
vpai | 80b6d01 | 2014-12-17 11:47:32 -0800 | [diff] [blame] | 36 | #include <memory> |
Craig Tiller | 5c004c6 | 2015-02-23 16:31:57 -0800 | [diff] [blame] | 37 | #include <mutex> |
Vijay Pai | 18c0477 | 2016-01-04 09:52:10 -0800 | [diff] [blame] | 38 | #include <sstream> |
vpai | 80b6d01 | 2014-12-17 11:47:32 -0800 | [diff] [blame] | 39 | #include <string> |
| 40 | #include <thread> |
| 41 | #include <vector> |
vpai | 80b6d01 | 2014-12-17 11:47:32 -0800 | [diff] [blame] | 42 | |
David Garcia Quintas | 6a48405 | 2016-01-25 19:12:37 -0800 | [diff] [blame] | 43 | #include <grpc++/channel.h> |
Vijay Pai | 18c0477 | 2016-01-04 09:52:10 -0800 | [diff] [blame] | 44 | #include <grpc++/client_context.h> |
| 45 | #include <grpc++/server.h> |
| 46 | #include <grpc++/server_builder.h> |
vpai | 80b6d01 | 2014-12-17 11:47:32 -0800 | [diff] [blame] | 47 | #include <grpc/grpc.h> |
Craig Tiller | 5c004c6 | 2015-02-23 16:31:57 -0800 | [diff] [blame] | 48 | #include <grpc/support/alloc.h> |
vpai | 80b6d01 | 2014-12-17 11:47:32 -0800 | [diff] [blame] | 49 | #include <grpc/support/histogram.h> |
Craig Tiller | 5c004c6 | 2015-02-23 16:31:57 -0800 | [diff] [blame] | 50 | #include <grpc/support/host_port.h> |
Vijay Pai | bc78c20 | 2015-07-31 11:24:06 -0700 | [diff] [blame] | 51 | #include <grpc/support/log.h> |
| 52 | #include <grpc/support/time.h> |
vjpai | 46f6523 | 2015-03-23 10:10:27 -0700 | [diff] [blame] | 53 | #include <gtest/gtest.h> |
yang-g | 9e2f90c | 2015-08-21 15:35:03 -0700 | [diff] [blame] | 54 | |
Craig Tiller | 9533d04 | 2016-03-25 17:11:06 -0700 | [diff] [blame] | 55 | #include "src/core/lib/profiling/timers.h" |
Vijay Pai | 5bd6f2e | 2016-01-11 10:33:39 -0800 | [diff] [blame] | 56 | #include "src/proto/grpc/testing/services.grpc.pb.h" |
Craig Tiller | 6af9ed0 | 2015-03-02 22:42:10 -0800 | [diff] [blame] | 57 | #include "test/cpp/qps/client.h" |
Craig Tiller | 6af9ed0 | 2015-03-02 22:42:10 -0800 | [diff] [blame] | 58 | #include "test/cpp/qps/histogram.h" |
Vijay Pai | 372fd87 | 2015-06-08 13:30:08 -0700 | [diff] [blame] | 59 | #include "test/cpp/qps/interarrival.h" |
Craig Tiller | 732a875 | 2016-02-22 15:59:19 -0800 | [diff] [blame] | 60 | #include "test/cpp/qps/usage_timer.h" |
Craig Tiller | 86253ca | 2015-10-08 13:31:02 -0700 | [diff] [blame] | 61 | |
Craig Tiller | 6af9ed0 | 2015-03-02 22:42:10 -0800 | [diff] [blame] | 62 | namespace grpc { |
| 63 | namespace testing { |
vpai | 80b6d01 | 2014-12-17 11:47:32 -0800 | [diff] [blame] | 64 | |
Vijay Pai | 18c0477 | 2016-01-04 09:52:10 -0800 | [diff] [blame] | 65 | static std::unique_ptr<BenchmarkService::Stub> BenchmarkStubCreator( |
| 66 | std::shared_ptr<Channel> ch) { |
| 67 | return BenchmarkService::NewStub(ch); |
| 68 | } |
| 69 | |
| 70 | class SynchronousClient |
| 71 | : public ClientImpl<BenchmarkService::Stub, SimpleRequest> { |
Craig Tiller | 6af9ed0 | 2015-03-02 22:42:10 -0800 | [diff] [blame] | 72 | public: |
Vijay Pai | 18c0477 | 2016-01-04 09:52:10 -0800 | [diff] [blame] | 73 | SynchronousClient(const ClientConfig& config) |
| 74 | : ClientImpl<BenchmarkService::Stub, SimpleRequest>( |
| 75 | config, BenchmarkStubCreator) { |
vjpai | 46f6523 | 2015-03-23 10:10:27 -0700 | [diff] [blame] | 76 | num_threads_ = |
Vijay Pai | 36ff3f0 | 2015-05-04 14:40:21 -0700 | [diff] [blame] | 77 | config.outstanding_rpcs_per_channel() * config.client_channels(); |
vjpai | 46f6523 | 2015-03-23 10:10:27 -0700 | [diff] [blame] | 78 | responses_.resize(num_threads_); |
Vijay Pai | 372fd87 | 2015-06-08 13:30:08 -0700 | [diff] [blame] | 79 | SetupLoadTest(config, num_threads_); |
Craig Tiller | 6af9ed0 | 2015-03-02 22:42:10 -0800 | [diff] [blame] | 80 | } |
vpai | 80b6d01 | 2014-12-17 11:47:32 -0800 | [diff] [blame] | 81 | |
Vijay Pai | 36ff3f0 | 2015-05-04 14:40:21 -0700 | [diff] [blame] | 82 | virtual ~SynchronousClient(){}; |
Nicolas "Pixel" Noble | 7e80efc | 2015-02-20 03:13:38 +0100 | [diff] [blame] | 83 | |
vjpai | 46f6523 | 2015-03-23 10:10:27 -0700 | [diff] [blame] | 84 | protected: |
Vijay Pai | 372fd87 | 2015-06-08 13:30:08 -0700 | [diff] [blame] | 85 | void WaitToIssue(int thread_idx) { |
Vijay Pai | 1132c6b | 2016-02-11 06:05:24 -0800 | [diff] [blame] | 86 | if (!closed_loop_) { |
| 87 | gpr_sleep_until(NextIssueTime(thread_idx)); |
Vijay Pai | 372fd87 | 2015-06-08 13:30:08 -0700 | [diff] [blame] | 88 | } |
| 89 | } |
| 90 | |
vjpai | 46f6523 | 2015-03-23 10:10:27 -0700 | [diff] [blame] | 91 | size_t num_threads_; |
| 92 | std::vector<SimpleResponse> responses_; |
| 93 | }; |
| 94 | |
| 95 | class SynchronousUnaryClient GRPC_FINAL : public SynchronousClient { |
| 96 | public: |
Vijay Pai | 36ff3f0 | 2015-05-04 14:40:21 -0700 | [diff] [blame] | 97 | SynchronousUnaryClient(const ClientConfig& config) |
| 98 | : SynchronousClient(config) { |
| 99 | StartThreads(num_threads_); |
| 100 | } |
| 101 | ~SynchronousUnaryClient() { EndThreads(); } |
Vijay Pai | 0b94127 | 2015-04-29 13:58:36 -0700 | [diff] [blame] | 102 | |
Craig Tiller | 8a5a666 | 2015-04-09 11:31:28 -0700 | [diff] [blame] | 103 | bool ThreadFunc(Histogram* histogram, size_t thread_idx) GRPC_OVERRIDE { |
Vijay Pai | 372fd87 | 2015-06-08 13:30:08 -0700 | [diff] [blame] | 104 | WaitToIssue(thread_idx); |
Craig Tiller | 8856875 | 2015-03-04 10:50:43 -0800 | [diff] [blame] | 105 | auto* stub = channels_[thread_idx % channels_.size()].get_stub(); |
vjpai | e2d39e0 | 2016-02-24 12:36:15 -0800 | [diff] [blame] | 106 | double start = UsageTimer::Now(); |
Craig Tiller | 0ba432d | 2015-10-09 16:57:11 -0700 | [diff] [blame] | 107 | GPR_TIMER_SCOPE("SynchronousUnaryClient::ThreadFunc", 0); |
Craig Tiller | 8856875 | 2015-03-04 10:50:43 -0800 | [diff] [blame] | 108 | grpc::ClientContext context; |
Craig Tiller | a182bf1 | 2015-03-04 13:54:39 -0800 | [diff] [blame] | 109 | grpc::Status s = |
| 110 | stub->UnaryCall(&context, request_, &responses_[thread_idx]); |
vjpai | e2d39e0 | 2016-02-24 12:36:15 -0800 | [diff] [blame] | 111 | histogram->Add((UsageTimer::Now() - start) * 1e9); |
Yang Gao | c1a2c31 | 2015-06-16 10:59:46 -0700 | [diff] [blame] | 112 | return s.ok(); |
Craig Tiller | 6af9ed0 | 2015-03-02 22:42:10 -0800 | [diff] [blame] | 113 | } |
Craig Tiller | 5c004c6 | 2015-02-23 16:31:57 -0800 | [diff] [blame] | 114 | }; |
| 115 | |
vjpai | 46f6523 | 2015-03-23 10:10:27 -0700 | [diff] [blame] | 116 | class SynchronousStreamingClient GRPC_FINAL : public SynchronousClient { |
| 117 | public: |
Vijay Pai | 36ff3f0 | 2015-05-04 14:40:21 -0700 | [diff] [blame] | 118 | SynchronousStreamingClient(const ClientConfig& config) |
Vijay Pai | 90e7369 | 2015-08-05 19:15:36 -0700 | [diff] [blame] | 119 | : SynchronousClient(config) { |
Vijay Pai | eed63fa | 2015-08-05 23:08:34 +0000 | [diff] [blame] | 120 | context_ = new grpc::ClientContext[num_threads_]; |
| 121 | stream_ = new std::unique_ptr< |
Vijay Pai | 90e7369 | 2015-08-05 19:15:36 -0700 | [diff] [blame] | 122 | grpc::ClientReaderWriter<SimpleRequest, SimpleResponse>>[num_threads_]; |
Vijay Pai | 36ff3f0 | 2015-05-04 14:40:21 -0700 | [diff] [blame] | 123 | for (size_t thread_idx = 0; thread_idx < num_threads_; thread_idx++) { |
vjpai | 46f6523 | 2015-03-23 10:10:27 -0700 | [diff] [blame] | 124 | auto* stub = channels_[thread_idx % channels_.size()].get_stub(); |
vjpai | 0a41293 | 2015-05-04 16:39:18 -0700 | [diff] [blame] | 125 | stream_[thread_idx] = stub->StreamingCall(&context_[thread_idx]); |
vjpai | 46f6523 | 2015-03-23 10:10:27 -0700 | [diff] [blame] | 126 | } |
| 127 | StartThreads(num_threads_); |
| 128 | } |
| 129 | ~SynchronousStreamingClient() { |
Craig Tiller | 77e0d64 | 2015-04-27 10:52:54 -0700 | [diff] [blame] | 130 | EndThreads(); |
Vijay Pai | 90e7369 | 2015-08-05 19:15:36 -0700 | [diff] [blame] | 131 | for (auto stream = &stream_[0]; stream != &stream_[num_threads_]; |
| 132 | stream++) { |
vjpai | 0a41293 | 2015-05-04 16:39:18 -0700 | [diff] [blame] | 133 | if (*stream) { |
Craig Tiller | 5c8737d | 2015-05-21 11:42:17 -0700 | [diff] [blame] | 134 | (*stream)->WritesDone(); |
Yang Gao | c1a2c31 | 2015-06-16 10:59:46 -0700 | [diff] [blame] | 135 | EXPECT_TRUE((*stream)->Finish().ok()); |
vjpai | 0a41293 | 2015-05-04 16:39:18 -0700 | [diff] [blame] | 136 | } |
vjpai | 46f6523 | 2015-03-23 10:10:27 -0700 | [diff] [blame] | 137 | } |
Vijay Pai | eed63fa | 2015-08-05 23:08:34 +0000 | [diff] [blame] | 138 | delete[] stream_; |
| 139 | delete[] context_; |
vjpai | 46f6523 | 2015-03-23 10:10:27 -0700 | [diff] [blame] | 140 | } |
Vijay Pai | 55bb5bd | 2015-03-23 12:44:09 -0700 | [diff] [blame] | 141 | |
Craig Tiller | 8a5a666 | 2015-04-09 11:31:28 -0700 | [diff] [blame] | 142 | bool ThreadFunc(Histogram* histogram, size_t thread_idx) GRPC_OVERRIDE { |
Vijay Pai | 372fd87 | 2015-06-08 13:30:08 -0700 | [diff] [blame] | 143 | WaitToIssue(thread_idx); |
Craig Tiller | 0ba432d | 2015-10-09 16:57:11 -0700 | [diff] [blame] | 144 | GPR_TIMER_SCOPE("SynchronousStreamingClient::ThreadFunc", 0); |
vjpai | e2d39e0 | 2016-02-24 12:36:15 -0800 | [diff] [blame] | 145 | double start = UsageTimer::Now(); |
vjpai | 0a41293 | 2015-05-04 16:39:18 -0700 | [diff] [blame] | 146 | if (stream_[thread_idx]->Write(request_) && |
Craig Tiller | 5c8737d | 2015-05-21 11:42:17 -0700 | [diff] [blame] | 147 | stream_[thread_idx]->Read(&responses_[thread_idx])) { |
vjpai | e2d39e0 | 2016-02-24 12:36:15 -0800 | [diff] [blame] | 148 | histogram->Add((UsageTimer::Now() - start) * 1e9); |
Craig Tiller | 8a5a666 | 2015-04-09 11:31:28 -0700 | [diff] [blame] | 149 | return true; |
Craig Tiller | aa2fca5 | 2015-04-09 10:56:06 -0700 | [diff] [blame] | 150 | } |
Craig Tiller | 8a5a666 | 2015-04-09 11:31:28 -0700 | [diff] [blame] | 151 | return false; |
vjpai | 46f6523 | 2015-03-23 10:10:27 -0700 | [diff] [blame] | 152 | } |
Vijay Pai | 36ff3f0 | 2015-05-04 14:40:21 -0700 | [diff] [blame] | 153 | |
| 154 | private: |
Vijay Pai | eed63fa | 2015-08-05 23:08:34 +0000 | [diff] [blame] | 155 | // These are both conceptually std::vector but cannot be for old compilers |
| 156 | // that expect contained classes to support copy constructors |
Vijay Pai | 90e7369 | 2015-08-05 19:15:36 -0700 | [diff] [blame] | 157 | grpc::ClientContext* context_; |
| 158 | std::unique_ptr<grpc::ClientReaderWriter<SimpleRequest, SimpleResponse>>* |
| 159 | stream_; |
vjpai | 46f6523 | 2015-03-23 10:10:27 -0700 | [diff] [blame] | 160 | }; |
| 161 | |
Vijay Pai | 36ff3f0 | 2015-05-04 14:40:21 -0700 | [diff] [blame] | 162 | std::unique_ptr<Client> CreateSynchronousUnaryClient( |
| 163 | const ClientConfig& config) { |
vjpai | 46f6523 | 2015-03-23 10:10:27 -0700 | [diff] [blame] | 164 | return std::unique_ptr<Client>(new SynchronousUnaryClient(config)); |
| 165 | } |
Vijay Pai | 36ff3f0 | 2015-05-04 14:40:21 -0700 | [diff] [blame] | 166 | std::unique_ptr<Client> CreateSynchronousStreamingClient( |
| 167 | const ClientConfig& config) { |
vjpai | 46f6523 | 2015-03-23 10:10:27 -0700 | [diff] [blame] | 168 | return std::unique_ptr<Client>(new SynchronousStreamingClient(config)); |
vpai | 80b6d01 | 2014-12-17 11:47:32 -0800 | [diff] [blame] | 169 | } |
| 170 | |
Craig Tiller | 6af9ed0 | 2015-03-02 22:42:10 -0800 | [diff] [blame] | 171 | } // namespace testing |
David Garcia Quintas | 2bf574f | 2016-01-14 15:27:08 -0800 | [diff] [blame] | 172 | } // namespace grpc |