Skip to content

Commit 9b8c950

Browse files
author
Otto van der Schaaf
authored
Add execution-id & separate the options BUILD targets (envoyproxy#656)
Another prelude to distributed test execution. Being able to identify executions and associate results is going to come in handy. Also, this separates some BUILD targets to allow for a leaner build process of future things that are going to depend on it. Signed-off-by: Otto van der Schaaf <[email protected]>
1 parent f0bc392 commit 9b8c950

File tree

7 files changed

+55
-5
lines changed

7 files changed

+55
-5
lines changed

api/client/options.proto

+7-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ message H1ConnectionReuseStrategy {
106106

107107
// TODO(oschaaf): Ultimately this will be a load test specification. The fact that it
108108
// can arrive via CLI is just a concrete detail. Change this to reflect that.
109-
// highest unused number is 39
109+
// highest unused number is 107
110110
message CommandLineOptions {
111111
// The target requests-per-second rate. Default: 5.
112112
google.protobuf.UInt32Value requests_per_second = 1
@@ -225,4 +225,10 @@ message CommandLineOptions {
225225
google.protobuf.Timestamp scheduled_start = 105;
226226

227227
reserved 38; // deprecated
228+
// Provide a unique execution id. Will be reflected in the output when set.
229+
// This is intended for future use in horizontally scaled scenarios in mind.
230+
// When populating this field, it is recommended to use unique identifiers for forward
231+
// compatibility purposes. In the future, this field may be auto-populated when left unset and
232+
// circumstances mandate so (distributed load test execution).
233+
google.protobuf.StringValue execution_id = 106;
228234
}

include/nighthawk/client/BUILD

+17-1
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,33 @@ licenses(["notice"]) # Apache 2
88

99
envoy_package()
1010

11+
envoy_basic_cc_library(
12+
name = "options_lib",
13+
hdrs = [
14+
"options.h",
15+
],
16+
include_prefix = "nighthawk/client",
17+
deps = [
18+
"//api/client:base_cc_proto",
19+
"//include/nighthawk/common:base_includes",
20+
"@envoy//include/envoy/common:time_interface",
21+
"@envoy//source/common/common:minimal_logger_lib_with_external_headers",
22+
"@envoy_api//envoy/config/cluster/v3:pkg_cc_proto",
23+
"@envoy_api//envoy/config/metrics/v3:pkg_cc_proto",
24+
],
25+
)
26+
1127
envoy_basic_cc_library(
1228
name = "client_includes",
1329
hdrs = [
1430
"benchmark_client.h",
1531
"client_worker.h",
1632
"factories.h",
17-
"options.h",
1833
"process.h",
1934
],
2035
include_prefix = "nighthawk/client",
2136
deps = [
37+
":options_lib",
2238
":output_collector_lib",
2339
":output_formatter_lib",
2440
"//api/client:base_cc_proto",

include/nighthawk/client/options.h

+2
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@ class Options {
7777
virtual std::string responseHeaderWithLatencyInput() const PURE;
7878

7979
virtual absl::optional<Envoy::SystemTime> scheduled_start() const PURE;
80+
virtual absl::optional<std::string> executionId() const PURE;
81+
8082
/**
8183
* Converts an Options instance to an equivalent CommandLineOptions instance in terms of option
8284
* values.

source/client/BUILD

+20-3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,25 @@ licenses(["notice"]) # Apache 2
88

99
envoy_package()
1010

11+
envoy_cc_library(
12+
name = "options_impl_lib",
13+
srcs = [
14+
"options_impl.cc",
15+
],
16+
hdrs = [
17+
"options_impl.h",
18+
],
19+
repository = "@envoy",
20+
visibility = ["//visibility:public"],
21+
deps = [
22+
":output_formatter_impl_lib",
23+
"//include/nighthawk/client:options_lib",
24+
"@envoy//source/common/protobuf:message_validator_lib_with_external_headers",
25+
"@envoy//source/common/protobuf:utility_lib_with_external_headers",
26+
"@envoy//source/server:options_lib_with_external_headers",
27+
],
28+
)
29+
1130
envoy_cc_library(
1231
name = "nighthawk_client_lib",
1332
srcs = [
@@ -16,7 +35,6 @@ envoy_cc_library(
1635
"client_worker_impl.cc",
1736
"factories_impl.cc",
1837
"flush_worker_impl.cc",
19-
"options_impl.cc",
2038
"process_impl.cc",
2139
"remote_process_impl.cc",
2240
"sni_utility.cc",
@@ -28,7 +46,6 @@ envoy_cc_library(
2846
"client_worker_impl.h",
2947
"factories_impl.h",
3048
"flush_worker_impl.h",
31-
"options_impl.h",
3249
"process_impl.h",
3350
"remote_process_impl.h",
3451
"sni_utility.h",
@@ -41,6 +58,7 @@ envoy_cc_library(
4158
repository = "@envoy",
4259
visibility = ["//visibility:public"],
4360
deps = [
61+
":options_impl_lib",
4462
":output_collector_impl_lib",
4563
":output_formatter_impl_lib",
4664
"//api/client:base_cc_proto",
@@ -87,7 +105,6 @@ envoy_cc_library(
87105
"@envoy//source/extensions/request_id/uuid:config_with_external_headers",
88106
"@envoy//source/extensions/transport_sockets:well_known_names_with_external_headers",
89107
"@envoy//source/extensions/transport_sockets/tls:context_lib_with_external_headers",
90-
"@envoy//source/server:options_lib_with_external_headers",
91108
"@envoy//source/server:server_lib_with_external_headers",
92109
"@envoy//source/server/config_validation:admin_lib_with_external_headers",
93110
"@envoy//include/envoy/http:protocol_interface_with_external_headers",

source/client/options_impl.cc

+6
Original file line numberDiff line numberDiff line change
@@ -659,6 +659,9 @@ OptionsImpl::OptionsImpl(const nighthawk::client::CommandLineOptions& options) {
659659
scheduled_start_ =
660660
Envoy::SystemTime(std::chrono::time_point<std::chrono::system_clock>(elapsed_since_epoch));
661661
}
662+
if (options.has_execution_id()) {
663+
execution_id_ = options.execution_id().value();
664+
}
662665
validate();
663666
}
664667

@@ -840,6 +843,9 @@ CommandLineOptionsPtr OptionsImpl::toCommandLineOptionsInternal() const {
840843
Envoy::ProtobufUtil::TimeUtil::NanosecondsToTimestamp(
841844
scheduled_start_.value().time_since_epoch().count());
842845
}
846+
if (execution_id_.has_value()) {
847+
command_line_options->mutable_execution_id()->set_value(execution_id_.value());
848+
}
843849
return command_line_options;
844850
}
845851

source/client/options_impl.h

+2
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ class OptionsImpl : public Options, public Envoy::Logger::Loggable<Envoy::Logger
9494
return latency_response_header_name_;
9595
};
9696
absl::optional<Envoy::SystemTime> scheduled_start() const override { return scheduled_start_; }
97+
absl::optional<std::string> executionId() const override { return execution_id_; }
9798

9899
private:
99100
void parsePredicates(const TCLAP::MultiArg<std::string>& arg,
@@ -151,6 +152,7 @@ class OptionsImpl : public Options, public Envoy::Logger::Loggable<Envoy::Logger
151152
uint32_t stats_flush_interval_{5};
152153
std::string latency_response_header_name_;
153154
absl::optional<Envoy::SystemTime> scheduled_start_;
155+
absl::optional<std::string> execution_id_;
154156
};
155157

156158
} // namespace Client

test/mocks/client/mock_options.h

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ class MockOptions : public Options {
5858
MOCK_CONST_METHOD0(statsFlushInterval, uint32_t());
5959
MOCK_CONST_METHOD0(responseHeaderWithLatencyInput, std::string());
6060
MOCK_CONST_METHOD0(scheduled_start, absl::optional<Envoy::SystemTime>());
61+
MOCK_CONST_METHOD0(executionId, absl::optional<std::string>());
6162
};
6263

6364
} // namespace Client

0 commit comments

Comments
 (0)