forked from RedisLabs/memtier_benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.h
executable file
·266 lines (218 loc) · 8.44 KB
/
client.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
/*
* Copyright (C) 2011-2017 Redis Labs Ltd.
*
* This file is part of memtier_benchmark.
*
* memtier_benchmark is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 2.
*
* memtier_benchmark is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with memtier_benchmark. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _CLIENT_H
#define _CLIENT_H
#include <stdlib.h>
#include <stdio.h>
#include <netdb.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <vector>
#include <queue>
#include <map>
#include <iterator>
#include <event2/event.h>
#include <event2/buffer.h>
#include "protocol.h"
#include "JSON_handler.h"
class client; // forward decl
class client_group; // forward decl
struct benchmark_config;
class object_generator;
class data_object;
typedef std::map<float, int> latency_map;
typedef std::map<float, int>::iterator latency_map_itr;
typedef std::map<float, int>::const_iterator latency_map_itr_const;
class run_stats {
protected:
struct one_second_stats {
unsigned int m_second; // from start of test
unsigned long int m_bytes_get;
unsigned long int m_bytes_set;
unsigned long int m_ops_get;
unsigned long int m_ops_set;
unsigned long int m_ops_wait;
unsigned int m_get_hits;
unsigned int m_get_misses;
unsigned long long int m_total_get_latency;
unsigned long long int m_total_set_latency;
unsigned long long int m_total_wait_latency;
one_second_stats(unsigned int second);
void reset(unsigned int second);
void merge(const one_second_stats& other);
};
friend bool one_second_stats_predicate(const run_stats::one_second_stats& a, const run_stats::one_second_stats& b);
struct timeval m_start_time;
struct timeval m_end_time;
struct totals {
double m_ops_sec_set;
double m_ops_sec_get;
double m_ops_sec_wait;
double m_ops_sec;
double m_hits_sec;
double m_misses_sec;
double m_bytes_sec_set;
double m_bytes_sec_get;
double m_bytes_sec;
double m_latency_set;
double m_latency_get;
double m_latency_wait;
double m_latency;
unsigned long int m_bytes;
unsigned long int m_ops_set;
unsigned long int m_ops_get;
unsigned long int m_ops_wait;
unsigned long int m_ops;
totals();
void add(const totals& other);
} m_totals;
std::vector<one_second_stats> m_stats;
one_second_stats m_cur_stats;
latency_map m_get_latency_map;
latency_map m_set_latency_map;
latency_map m_wait_latency_map;
void roll_cur_stats(struct timeval* ts);
public:
run_stats();
void set_start_time(struct timeval* start_time);
void set_end_time(struct timeval* end_time);
void update_get_op(struct timeval* ts, unsigned int bytes, unsigned int latency, unsigned int hits, unsigned int misses);
void update_set_op(struct timeval* ts, unsigned int bytes, unsigned int latency);
void update_wait_op(struct timeval* ts, unsigned int latency);
void aggregate_average(const std::vector<run_stats>& all_stats);
void summarize(totals& result) const;
void merge(const run_stats& other, int iteration);
bool save_csv(const char *filename);
void debug_dump(void);
void print(FILE *file, bool histogram, const char* header = NULL, json_handler* jsonhandler = NULL);
unsigned int get_duration(void);
unsigned long int get_duration_usec(void);
unsigned long int get_total_bytes(void);
unsigned long int get_total_ops(void);
unsigned long int get_total_latency(void);
};
class client {
protected:
friend void client_event_handler(evutil_socket_t sfd, short evtype, void *opaque);
// connection related
int m_sockfd;
struct sockaddr_un* m_unix_sockaddr;
struct event* m_event;
struct event_base* m_event_base;
struct evbuffer *m_read_buf;
struct evbuffer *m_write_buf;
bool m_initialized;
bool m_connected;
enum authentication_state { auth_none, auth_sent, auth_done } m_authentication;
enum select_db_state { select_none, select_sent, select_done } m_db_selection;
// test related
benchmark_config* m_config;
abstract_protocol* m_protocol;
object_generator* m_obj_gen;
run_stats m_stats;
// pipeline management
enum request_type { rt_unknown, rt_set, rt_get, rt_wait,rt_auth, rt_select_db };
struct request {
request_type m_type;
struct timeval m_sent_time;
unsigned int m_size;
unsigned int m_keys;
request(request_type type, unsigned int size, struct timeval* sent_time, unsigned int keys);
virtual ~request(void) {}
};
std::queue<request *> m_pipeline;
unsigned int m_reqs_processed; // requests processed (responses received)
unsigned int m_set_ratio_count; // number of sets counter (overlaps on ratio)
unsigned int m_get_ratio_count; // number of gets counter (overlaps on ratio)
unsigned long m_tot_set_ops; // Total number of SET ops
unsigned long m_tot_wait_ops; // Total number of WAIT ops
keylist *m_keylist; // used to construct multi commands
bool setup_client(benchmark_config *config, abstract_protocol *protocol, object_generator *obj_gen);
int connect(void);
void disconnect(void);
void handle_event(short evtype);
int get_sockfd(void) { return m_sockfd; }
virtual bool finished();
virtual void create_request(struct timeval timestamp);
virtual void handle_response(struct timeval timestamp, request *request, protocol_response *response);
bool send_conn_setup_commands(struct timeval timestamp);
bool is_conn_setup_done(void);
void fill_pipeline(void);
void process_first_request(void);
void process_response(void);
public:
client(client_group* group);
client(struct event_base *event_base, benchmark_config *config, abstract_protocol *protocol, object_generator *obj_gen);
virtual ~client();
bool initialized(void);
int prepare(void);
run_stats* get_stats(void) { return &m_stats; }
};
class verify_client : public client {
protected:
struct verify_request : public request {
char *m_key;
unsigned int m_key_len;
char *m_value;
unsigned int m_value_len;
verify_request(request_type type,
unsigned int size,
struct timeval* sent_time,
unsigned int keys,
const char *key,
unsigned int key_len,
const char *value,
unsigned int value_len);
virtual ~verify_request(void);
};
bool m_finished;
unsigned long long int m_verified_keys;
unsigned long long int m_errors;
virtual bool finished(void);
virtual void create_request(struct timeval timestamp);
virtual void handle_response(struct timeval timestamp, request *request, protocol_response *response);
public:
verify_client(struct event_base *event_base, benchmark_config *config, abstract_protocol *protocol, object_generator *obj_gen);
unsigned long long int get_verified_keys(void);
unsigned long long int get_errors(void);
};
class client_group {
protected:
struct event_base* m_base;
benchmark_config *m_config;
abstract_protocol* m_protocol;
object_generator* m_obj_gen;
std::vector<client*> m_clients;
public:
client_group(benchmark_config *cfg, abstract_protocol *protocol, object_generator* obj_gen);
~client_group();
int create_clients(int count);
int prepare(void);
void run(void);
void write_client_stats(const char *prefix);
struct event_base *get_event_base(void) { return m_base; }
benchmark_config *get_config(void) { return m_config; }
abstract_protocol* get_protocol(void) { return m_protocol; }
object_generator* get_obj_gen(void) { return m_obj_gen; }
unsigned long int get_total_bytes(void);
unsigned long int get_total_ops(void);
unsigned long int get_total_latency(void);
unsigned long int get_duration_usec(void);
void merge_run_stats(run_stats* target);
};
#endif /* _CLIENT_H */