12 #include <memcached.h>
14 #include "client_options.h"
15 #include "utilities.h"
16 #include "generator.h"
19 #define DEFAULT_INITIAL_LOAD 10000
20 #define DEFAULT_EXECUTE_NUMBER 10000
21 #define DEFAULT_CONCURRENCY 1
23 #define PROGRAM_NAME "memslap"
24 #define PROGRAM_DESCRIPTION "Generates a load against a memcached custer of servers."
26 /* Global Thread counter */
27 unsigned int thread_counter
;
28 pthread_mutex_t counter_mutex
;
29 pthread_cond_t count_threshhold
;
30 unsigned int master_wakeup
;
31 pthread_mutex_t sleeper_mutex
;
32 pthread_cond_t sleep_threshhold
;
34 void *run_task(void *p
);
37 typedef struct conclusions_st conclusions_st
;
38 typedef struct thread_context_st thread_context_st
;
44 struct thread_context_st
{
45 unsigned int key_count
;
46 pairs_st
*initial_pairs
;
47 unsigned int initial_number
;
48 pairs_st
*execute_pairs
;
49 unsigned int execute_number
;
51 memcached_server_st
*servers
;
54 struct conclusions_st
{
57 unsigned int rows_loaded
;
58 unsigned int rows_read
;
62 void options_parse(int argc
, char *argv
[]);
63 void conclusions_print(conclusions_st
*conclusion
);
64 void scheduler(memcached_server_st
*servers
, conclusions_st
*conclusion
);
65 pairs_st
*load_create_data(memcached_server_st
*servers
, unsigned int number_of
,
66 unsigned int *actual_loaded
);
67 void flush_all(memcached_server_st
*servers
);
69 static int opt_verbose
= 0;
70 static int opt_flush
= 0;
71 static int opt_non_blocking_io
= 0;
72 static int opt_tcp_nodelay
= 0;
73 static unsigned int opt_execute_number
= 0;
74 static unsigned int opt_createial_load
= 0;
75 static unsigned int opt_concurrency
= 0;
76 static int opt_displayflag
= 0;
77 static char *opt_servers
= NULL
;
78 test_type opt_test
= SET_TEST
;
80 int main(int argc
, char *argv
[])
82 conclusions_st conclusion
;
83 memcached_server_st
*servers
;
85 memset(&conclusion
, 0, sizeof(conclusions_st
));
88 options_parse(argc
, argv
);
94 if ((temp
= getenv("MEMCACHED_SERVERS")))
95 opt_servers
= strdup(temp
);
100 servers
= memcached_servers_parse(opt_servers
);
102 pthread_mutex_init(&counter_mutex
, NULL
);
103 pthread_cond_init(&count_threshhold
, NULL
);
104 pthread_mutex_init(&sleeper_mutex
, NULL
);
105 pthread_cond_init(&sleep_threshhold
, NULL
);
107 scheduler(servers
, &conclusion
);
111 (void)pthread_mutex_destroy(&counter_mutex
);
112 (void)pthread_cond_destroy(&count_threshhold
);
113 (void)pthread_mutex_destroy(&sleeper_mutex
);
114 (void)pthread_cond_destroy(&sleep_threshhold
);
115 conclusions_print(&conclusion
);
116 memcached_server_list_free(servers
);
121 void scheduler(memcached_server_st
*servers
, conclusions_st
*conclusion
)
124 unsigned int actual_loaded
;
126 struct timeval start_time
, end_time
;
127 pthread_t mainthread
; /* Thread descriptor */
128 pthread_attr_t attr
; /* Thread attributes */
129 pairs_st
*pairs
= NULL
;
131 pthread_attr_init(&attr
);
132 pthread_attr_setdetachstate(&attr
,
133 PTHREAD_CREATE_DETACHED
);
137 if (opt_createial_load
)
138 pairs
= load_create_data(servers
, opt_createial_load
, &actual_loaded
);
140 pthread_mutex_lock(&counter_mutex
);
143 pthread_mutex_lock(&sleeper_mutex
);
145 pthread_mutex_unlock(&sleeper_mutex
);
147 for (x
= 0; x
< opt_concurrency
; x
++)
149 thread_context_st
*context
;
150 context
= (thread_context_st
*)malloc(sizeof(thread_context_st
));
152 context
->servers
= servers
;
153 context
->test
= opt_test
;
155 context
->initial_pairs
= pairs
;
156 context
->initial_number
= actual_loaded
;
158 if (opt_test
== SET_TEST
)
160 context
->execute_pairs
= pairs_generate(opt_execute_number
);
161 context
->execute_number
= opt_execute_number
;
164 /* now you create the thread */
165 if (pthread_create(&mainthread
, &attr
, run_task
,
166 (void *)context
) != 0)
168 fprintf(stderr
,"Could not create thread\n");
174 pthread_mutex_unlock(&counter_mutex
);
175 pthread_attr_destroy(&attr
);
177 pthread_mutex_lock(&sleeper_mutex
);
179 pthread_mutex_unlock(&sleeper_mutex
);
180 pthread_cond_broadcast(&sleep_threshhold
);
182 gettimeofday(&start_time
, NULL
);
184 We loop until we know that all children have cleaned up.
186 pthread_mutex_lock(&counter_mutex
);
187 while (thread_counter
)
189 struct timespec abstime
;
191 memset(&abstime
, 0, sizeof(struct timespec
));
194 pthread_cond_timedwait(&count_threshhold
, &counter_mutex
, &abstime
);
196 pthread_mutex_unlock(&counter_mutex
);
198 gettimeofday(&end_time
, NULL
);
200 conclusion
->load_time
= timedif(end_time
, start_time
);
201 conclusion
->read_time
= timedif(end_time
, start_time
);
205 void options_parse(int argc
, char *argv
[])
207 memcached_programs_help_st help_options
[]=
212 static struct option long_options
[]=
214 {"concurrency", required_argument
, NULL
, OPT_SLAP_CONCURRENCY
},
215 {"debug", no_argument
, &opt_verbose
, OPT_DEBUG
},
216 {"execute-number", required_argument
, NULL
, OPT_SLAP_EXECUTE_NUMBER
},
217 {"flag", no_argument
, &opt_displayflag
, OPT_FLAG
},
218 {"flush", no_argument
, &opt_flush
, OPT_FLUSH
},
219 {"help", no_argument
, NULL
, OPT_HELP
},
220 {"initial-load", required_argument
, NULL
, OPT_SLAP_INITIAL_LOAD
}, /* Number to load initially */
221 {"non-blocking", no_argument
, &opt_non_blocking_io
, OPT_SLAP_NON_BLOCK
},
222 {"servers", required_argument
, NULL
, OPT_SERVERS
},
223 {"tcp-nodelay", no_argument
, &opt_tcp_nodelay
, OPT_SLAP_TCP_NODELAY
},
224 {"test", required_argument
, NULL
, OPT_SLAP_TEST
},
225 {"verbose", no_argument
, &opt_verbose
, OPT_VERBOSE
},
226 {"version", no_argument
, NULL
, OPT_VERSION
},
235 option_rv
= getopt_long(argc
, argv
, "Vhvds:", long_options
, &option_index
);
236 if (option_rv
== -1) break;
241 case OPT_VERBOSE
: /* --verbose or -v */
242 opt_verbose
= OPT_VERBOSE
;
244 case OPT_DEBUG
: /* --debug or -d */
245 opt_verbose
= OPT_DEBUG
;
247 case OPT_VERSION
: /* --version or -V */
248 version_command(PROGRAM_NAME
);
250 case OPT_HELP
: /* --help or -h */
251 help_command(PROGRAM_NAME
, PROGRAM_DESCRIPTION
, long_options
, help_options
);
253 case OPT_SERVERS
: /* --servers or -s */
254 opt_servers
= strdup(optarg
);
257 if (!strcmp(optarg
, "get"))
259 else if (!strcmp(optarg
, "set"))
263 fprintf(stderr
, "Your test, %s, is not a known test\n", optarg
);
267 case OPT_SLAP_CONCURRENCY
:
268 opt_concurrency
= strtol(optarg
, (char **)NULL
, 10);
269 case OPT_SLAP_EXECUTE_NUMBER
:
270 opt_execute_number
= strtol(optarg
, (char **)NULL
, 10);
272 case OPT_SLAP_INITIAL_LOAD
:
273 opt_createial_load
= strtol(optarg
, (char **)NULL
, 10);
276 /* getopt_long already printed an error message. */
283 if (opt_test
== GET_TEST
&& opt_createial_load
== 0)
284 opt_createial_load
= DEFAULT_INITIAL_LOAD
;
286 if (opt_execute_number
== 0)
287 opt_execute_number
= DEFAULT_EXECUTE_NUMBER
;
289 if (opt_concurrency
== 0)
290 opt_concurrency
= DEFAULT_CONCURRENCY
;
293 void conclusions_print(conclusions_st
*conclusion
)
295 printf("\tThreads connecting to servers %u\n", opt_concurrency
);
297 printf("\tLoaded %u rows\n", conclusion
->rows_loaded
);
298 printf("\tRead %u rows\n", conclusion
->rows_read
);
300 if (opt_test
== SET_TEST
)
301 printf("\tTook %ld.%03ld seconds to load data\n", conclusion
->load_time
/ 1000,
302 conclusion
->load_time
% 1000);
304 printf("\tTook %ld.%03ld seconds to read data\n", conclusion
->read_time
/ 1000,
305 conclusion
->read_time
% 1000);
308 void *run_task(void *p
)
310 thread_context_st
*context
= (thread_context_st
*)p
;
312 unsigned int value
= 1;
314 memc
= memcached_create(NULL
);
315 if (opt_non_blocking_io
)
316 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NO_BLOCK
, &value
);
318 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_TCP_NODELAY
, &value
);
320 memcached_server_push(memc
, context
->servers
);
322 pthread_mutex_lock(&sleeper_mutex
);
323 while (master_wakeup
)
325 pthread_cond_wait(&sleep_threshhold
, &sleeper_mutex
);
327 pthread_mutex_unlock(&sleeper_mutex
);
330 switch (context
->test
)
333 execute_set(memc
, context
->execute_pairs
, context
->execute_number
);
336 execute_get(memc
, context
->initial_pairs
, context
->initial_number
);
340 pthread_mutex_lock(&counter_mutex
);
342 pthread_cond_signal(&count_threshhold
);
343 pthread_mutex_unlock(&counter_mutex
);
344 memcached_free(memc
);
346 if (context
->execute_pairs
)
347 pairs_free(context
->execute_pairs
);
353 void flush_all(memcached_server_st
*servers
)
357 memc
= memcached_create(NULL
);
359 memcached_server_push(memc
, servers
);
361 memcached_flush(memc
, 0);
363 memcached_free(memc
);
366 pairs_st
*load_create_data(memcached_server_st
*servers
, unsigned int number_of
,
367 unsigned int *actual_loaded
)
372 memc
= memcached_create(NULL
);
373 /* We always used non-blocking IO for load since it is faster */
374 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NO_BLOCK
, NULL
);
375 memcached_server_push(memc
, servers
);
377 pairs
= pairs_generate(number_of
);
378 *actual_loaded
= execute_set(memc
, pairs
, number_of
);
380 memcached_free(memc
);