3 * Author: Mingqiang Zhuang
5 * Created on February 10, 2009
7 * (c) Copyright 2009, Schooner Information Technology, Inc.
8 * http://www.schoonerinfotech.com/
15 #if TIME_WITH_SYS_TIME
16 # include <sys/time.h>
20 # include <sys/time.h>
26 #include "ms_thread.h"
27 #include "ms_setting.h"
28 #include "ms_atomic.h"
30 /* command distribution adjustment cycle */
31 #define CMD_DISTR_ADJUST_CYCLE 1000
32 #define DISADJUST_FACTOR 0.03 /**
33 * In one adjustment cycle, if undo set or get
34 * operations proportion is more than 3% , means
35 * there are too many new item or need more new
36 * item in the window. This factor shows it.
39 /* get item from task window */
40 static ms_task_item_t
*ms_get_cur_opt_item(ms_conn_t
*c
);
41 static ms_task_item_t
*ms_get_next_get_item(ms_conn_t
*c
);
42 static ms_task_item_t
*ms_get_next_set_item(ms_conn_t
*c
);
43 static ms_task_item_t
*ms_get_random_overwrite_item(ms_conn_t
*c
);
46 /* select next operation to do */
47 static void ms_select_opt(ms_conn_t
*c
, ms_task_t
*task
);
50 /* set and get speed estimate for controlling and adjustment */
51 static bool ms_is_set_too_fast(ms_task_t
*task
);
52 static bool ms_is_get_too_fast(ms_task_t
*task
);
53 static void ms_kick_out_item(ms_task_item_t
*item
);
56 /* miss rate adjustment */
57 static bool ms_need_overwrite_item(ms_task_t
*task
);
58 static bool ms_adjust_opt(ms_conn_t
*c
, ms_task_t
*task
);
61 /* deal with data verification initialization */
62 static void ms_task_data_verify_init(ms_task_t
*task
);
63 static void ms_task_expire_verify_init(ms_task_t
*task
);
66 /* select a new task to do */
67 static ms_task_t
*ms_get_task(ms_conn_t
*c
, bool warmup
);
70 /* run the selected task */
71 static void ms_update_set_result(ms_conn_t
*c
, ms_task_item_t
*item
);
72 static void ms_update_stat_result(ms_conn_t
*c
);
73 static void ms_update_multi_get_result(ms_conn_t
*c
);
74 static void ms_update_single_get_result(ms_conn_t
*c
, ms_task_item_t
*item
);
75 static void ms_update_task_result(ms_conn_t
*c
);
76 static void ms_single_getset_task_sch(ms_conn_t
*c
);
77 static void ms_multi_getset_task_sch(ms_conn_t
*c
);
78 static void ms_send_signal(ms_sync_lock_t
*sync_lock
);
79 static void ms_warmup_server(ms_conn_t
*c
);
80 static int ms_run_getset_task(ms_conn_t
*c
);
84 * used to get the current operation item(object)
86 * @param c, pointer of the concurrency
88 * @return ms_task_item_t*, current operating item
90 static ms_task_item_t
*ms_get_cur_opt_item(ms_conn_t
*c
)
92 return c
->curr_task
.item
;
97 * used to get the next item to do get operation
99 * @param c, pointer of the concurrency
101 * @return ms_task_item_t*, the pointer of the next item to do
104 static ms_task_item_t
*ms_get_next_get_item(ms_conn_t
*c
)
106 ms_task_item_t
*item
= NULL
;
108 if (c
->set_cursor
<= 0)
110 /* the first item in the window */
111 item
= &c
->item_win
[0];
113 else if (c
->set_cursor
> 0 && c
->set_cursor
< (uint32_t)c
->win_size
)
115 /* random get one item set before */
116 item
= &c
->item_win
[random() % (int64_t)c
->set_cursor
];
120 /* random get one item from the window */
121 item
= &c
->item_win
[random() % c
->win_size
];
125 } /* ms_get_next_get_item */
129 * used to get the next item to do set operation
131 * @param c, pointer of the concurrency
133 * @return ms_task_item_t*, the pointer of the next item to do
136 static ms_task_item_t
*ms_get_next_set_item(ms_conn_t
*c
)
139 * when a set command successes, the cursor will plus 1. If set
140 * fails, the cursor doesn't change. it isn't necessary to
141 * increase the cursor here.
143 return &c
->item_win
[(int64_t)c
->set_cursor
% c
->win_size
];
148 * If we need do overwrite, we could select a item set before.
149 * This function is used to get a item set before to do
152 * @param c, pointer of the concurrency
154 * @return ms_task_item_t*, the pointer of the previous item of
157 static ms_task_item_t
*ms_get_random_overwrite_item(ms_conn_t
*c
)
159 return ms_get_next_get_item(c
);
160 } /* ms_get_random_overwrite_item */
163 * According to the proportion of operations(get or set), select
164 * an operation to do.
166 * @param c, pointer of the concurrency
167 * @param task, pointer of current task in the concurrency
169 static void ms_select_opt(ms_conn_t
*c
, ms_task_t
*task
)
171 double get_prop
= ms_setting
.cmd_distr
[CMD_GET
].cmd_prop
;
172 double set_prop
= ms_setting
.cmd_distr
[CMD_SET
].cmd_prop
;
174 /* update cycle operation number if necessary */
175 if ((task
->cycle_undo_get
== 0) || (task
->cycle_undo_set
== 0))
177 task
->cycle_undo_get
+= (int)(CMD_DISTR_ADJUST_CYCLE
* get_prop
);
178 task
->cycle_undo_set
+= (int)(CMD_DISTR_ADJUST_CYCLE
* set_prop
);
182 * According to operation distribution to choose doing which
183 * operation. If it can't set new object to sever, just change
184 * to do get operation.
186 if ((set_prop
> PROP_ERROR
)
187 && ((double)task
->get_opt
* set_prop
>= (double)task
->set_opt
191 task
->item
= ms_get_next_set_item(c
);
196 task
->item
= ms_get_next_get_item(c
);
198 } /* ms_select_opt */
202 * used to judge whether the number of get operations done is
203 * more than expected number of get operations to do right now.
205 * @param task, pointer of current task in the concurrency
207 * @return bool, if get too fast, return true, else return false
209 static bool ms_is_get_too_fast(ms_task_t
*task
)
211 double get_prop
= ms_setting
.cmd_distr
[CMD_GET
].cmd_prop
;
212 double set_prop
= ms_setting
.cmd_distr
[CMD_SET
].cmd_prop
;
214 /* no get operation */
215 if (get_prop
< PROP_ERROR
)
220 int max_undo_set
= (int)(set_prop
/ get_prop
* (1.0 + DISADJUST_FACTOR
))
221 * task
->cycle_undo_get
;
223 if (((double)task
->get_opt
* set_prop
> (double)task
->set_opt
* get_prop
)
224 && (task
->cycle_undo_set
> max_undo_set
))
230 } /* ms_is_get_too_fast */
234 * used to judge whether the number of set operations done is
235 * more than expected number of set operations to do right now.
237 * @param task, pointer of current task in the concurrency
239 * @return bool, if set too fast, return true, else return false
241 static bool ms_is_set_too_fast(ms_task_t
*task
)
243 double get_prop
= ms_setting
.cmd_distr
[CMD_GET
].cmd_prop
;
244 double set_prop
= ms_setting
.cmd_distr
[CMD_SET
].cmd_prop
;
246 /* no set operation */
247 if (set_prop
< PROP_ERROR
)
252 /* If it does set operation too fast, skip some */
253 int max_undo_get
= (int)((get_prop
/ set_prop
* (1.0 + DISADJUST_FACTOR
))
254 * (double)task
->cycle_undo_set
);
256 if (((double)task
->get_opt
* set_prop
< (double)task
->set_opt
* get_prop
)
257 && (task
->cycle_undo_get
> max_undo_get
))
263 } /* ms_is_set_too_fast */
267 * kick out the old item in the window, and add a new item to
268 * overwrite the old item. When we don't want to do overwrite
269 * object, and the current item to do set operation is an old
270 * item, we could kick out the old item and add a new item. Then
271 * we can ensure we set new object every time.
273 * @param item, pointer of task item which includes the object
276 static void ms_kick_out_item(ms_task_item_t
*item
)
278 /* allocate a new item */
279 item
->key_prefix
= ms_get_key_prefix();
281 item
->key_suffix_offset
++;
282 item
->value_offset
= INVALID_OFFSET
; /* new item use invalid value offset */
283 item
->client_time
= 0;
284 } /* ms_kick_out_item */
288 * used to judge whether we need overwrite object based on the
289 * options user specified
291 * @param task, pointer of current task in the concurrency
293 * @return bool, if need overwrite, return true, else return
296 static bool ms_need_overwrite_item(ms_task_t
*task
)
298 ms_task_item_t
*item
= task
->item
;
300 assert(item
!= NULL
);
301 assert(task
->cmd
== CMD_SET
);
304 * according to data overwrite percent to determine if do data
307 if (task
->overwrite_set
< (double)task
->set_opt
308 * ms_setting
.overwrite_percent
)
314 } /* ms_need_overwirte_item */
318 * used to adjust operation. the function must be called after
319 * select operation. the function change get operation to set
320 * operation, or set operation to get operation based on the
323 * @param c, pointer of the concurrency
324 * @param task, pointer of current task in the concurrency
326 * @return bool, if success, return true, else return false
328 static bool ms_adjust_opt(ms_conn_t
*c
, ms_task_t
*task
)
330 ms_task_item_t
*item
= task
->item
;
332 assert(item
!= NULL
);
334 if (task
->cmd
== CMD_SET
)
336 /* If did set operation too fast, skip some */
337 if (ms_is_set_too_fast(task
))
339 /* get the item instead */
340 if (item
->value_offset
!= INVALID_OFFSET
)
347 /* If the current item is not a new item, kick it out */
348 if (item
->value_offset
!= INVALID_OFFSET
)
350 if (ms_need_overwrite_item(task
))
353 task
->overwrite_set
++;
357 /* kick out the current item to do set operation */
358 ms_kick_out_item(item
);
361 else /* it's a new item */
364 if (ms_need_overwrite_item(task
))
367 * overwrite not use the item with current set cursor, revert
372 item
= ms_get_random_overwrite_item(c
);
373 if (item
->value_offset
!= INVALID_OFFSET
)
376 task
->overwrite_set
++;
378 else /* item is a new item */
380 /* select the item to run, and cancel overwrite */
390 if (item
->value_offset
== INVALID_OFFSET
)
397 * If It does get operation too fast, it will change the
400 if (ms_is_get_too_fast(task
))
402 /* don't kick out the first item in the window */
403 if (! ms_is_set_too_fast(task
))
405 ms_kick_out_item(item
);
415 assert(item
->value_offset
!= INVALID_OFFSET
);
420 } /* ms_adjust_opt */
424 * used to initialize the task which need verify data.
426 * @param task, pointer of current task in the concurrency
428 static void ms_task_data_verify_init(ms_task_t
*task
)
430 ms_task_item_t
*item
= task
->item
;
432 assert(item
!= NULL
);
433 assert(task
->cmd
== CMD_GET
);
436 * according to data verification percent to determine if do
439 if (task
->verified_get
< (double)task
->get_opt
440 * ms_setting
.verify_percent
)
443 * currently it doesn't do verify, just increase the counter,
444 * and do verification next proper get command
446 if ((task
->item
->value_offset
!= INVALID_OFFSET
)
447 && (item
->exp_time
== 0))
450 task
->finish_verify
= false;
451 task
->verified_get
++;
454 } /* ms_task_data_verify_init */
458 * used to initialize the task which need verify expire time.
460 * @param task, pointer of current task in the concurrency
462 static void ms_task_expire_verify_init(ms_task_t
*task
)
464 ms_task_item_t
*item
= task
->item
;
466 assert(item
!= NULL
);
467 assert(task
->cmd
== CMD_GET
);
468 assert(item
->exp_time
> 0);
471 task
->finish_verify
= false;
472 } /* ms_task_expire_verify_init */
476 * used to get one task, the function initializes the task
479 * @param c, pointer of the concurrency
480 * @param warmup, whether it need warmup
482 * @return ms_task_t*, pointer of current task in the
485 static ms_task_t
*ms_get_task(ms_conn_t
*c
, bool warmup
)
487 ms_task_t
*task
= &c
->curr_task
;
492 task
->finish_verify
= true;
493 task
->get_miss
= true;
498 task
->item
= ms_get_next_set_item(c
);
503 /* according to operation distribution to choose doing which operation */
504 ms_select_opt(c
, task
);
506 if (! ms_adjust_opt(c
, task
))
511 if ((ms_setting
.verify_percent
> 0) && (task
->cmd
== CMD_GET
))
513 ms_task_data_verify_init(task
);
516 if ((ms_setting
.exp_ver_per
> 0) && (task
->cmd
== CMD_GET
)
517 && (task
->item
->exp_time
> 0))
519 ms_task_expire_verify_init(task
);
526 * Only update get and delete counter, set counter will be
527 * updated after set operation successes.
529 if (task
->cmd
== CMD_GET
)
532 task
->cycle_undo_get
--;
540 * send a signal to the main monitor thread
542 * @param sync_lock, pointer of the lock
544 static void ms_send_signal(ms_sync_lock_t
*sync_lock
)
546 pthread_mutex_lock(&sync_lock
->lock
);
548 pthread_cond_signal(&sync_lock
->cond
);
549 pthread_mutex_unlock(&sync_lock
->lock
);
550 } /* ms_send_signal */
554 * If user only want to do get operation, but there is no object
555 * in server , so we use this function to warmup the server, and
556 * set some objects to server. It runs at the beginning of task.
558 * @param c, pointer of the concurrency
560 static void ms_warmup_server(ms_conn_t
*c
)
563 ms_task_item_t
*item
;
566 * Extra one loop to get the last command returned state.
567 * Normally it gets the previous command returned state.
569 if ((c
->remain_warmup_num
>= 0)
570 && (c
->remain_warmup_num
!= c
->warmup_num
))
572 item
= ms_get_cur_opt_item(c
);
573 /* only update the set command result state for data verification */
574 if ((c
->precmd
.cmd
== CMD_SET
) && (c
->precmd
.retstat
== MCD_STORED
))
576 item
->value_offset
= item
->key_suffix_offset
;
577 /* set success, update counter */
580 else if (c
->precmd
.cmd
== CMD_SET
&& c
->precmd
.retstat
!= MCD_STORED
)
582 printf("key: %" PRIx64
" didn't set success\n", item
->key_prefix
);
586 /* the last time don't run a task */
587 if (c
->remain_warmup_num
-- > 0)
589 /* operate next task item */
590 task
= ms_get_task(c
, true);
596 * finish warming up server, wait all connects initialize
597 * complete. Then all connects can start do task at the same
600 if (c
->remain_warmup_num
== -1)
602 ms_send_signal(&ms_global
.warmup_lock
);
603 c
->remain_warmup_num
--; /* never run the if branch */
605 } /* ms_warmup_server */
609 * dispatch single get and set task
611 * @param c, pointer of the concurrency
613 static void ms_single_getset_task_sch(ms_conn_t
*c
)
616 ms_task_item_t
*item
;
618 /* the last time don't run a task */
619 if (c
->remain_exec_num
-- > 0)
621 task
= ms_get_task(c
, false);
623 if (task
->cmd
== CMD_SET
)
627 else if (task
->cmd
== CMD_GET
)
629 assert(task
->cmd
== CMD_GET
);
633 } /* ms_single_getset_task_sch */
637 * dispatch multi-get and set task
639 * @param c, pointer of the concurrency
641 static void ms_multi_getset_task_sch(ms_conn_t
*c
)
644 ms_mlget_task_item_t
*mlget_item
;
648 if (c
->remain_exec_num
-- > 0)
650 task
= ms_get_task(c
, false);
651 if (task
->cmd
== CMD_SET
) /* just do it */
653 ms_mcd_set(c
, task
->item
);
658 assert(task
->cmd
== CMD_GET
);
659 mlget_item
= &c
->mlget_task
.mlget_item
[c
->mlget_task
.mlget_num
];
660 mlget_item
->item
= task
->item
;
661 mlget_item
->verify
= task
->verify
;
662 mlget_item
->finish_verify
= task
->finish_verify
;
663 mlget_item
->get_miss
= task
->get_miss
;
664 c
->mlget_task
.mlget_num
++;
666 /* enough multi-get task items can be done */
667 if ((c
->mlget_task
.mlget_num
>= ms_setting
.mult_key_num
)
668 || ((c
->remain_exec_num
== 0) && (c
->mlget_task
.mlget_num
> 0)))
677 if ((c
->remain_exec_num
<= 0) && (c
->mlget_task
.mlget_num
> 0))
684 } /* ms_multi_getset_task_sch */
688 * calculate the difference value of two time points
690 * @param start_time, the start time
691 * @param end_time, the end time
693 * @return uint64_t, the difference value between start_time and end_time in us
695 int64_t ms_time_diff(struct timeval
*start_time
, struct timeval
*end_time
)
697 int64_t endtime
= end_time
->tv_sec
* 1000000 + end_time
->tv_usec
;
698 int64_t starttime
= start_time
->tv_sec
* 1000000 + start_time
->tv_usec
;
700 assert(endtime
>= starttime
);
702 return endtime
- starttime
;
707 * after get the response from server for multi-get, the
708 * function update the state of the task and do data verify if
711 * @param c, pointer of the concurrency
713 static void ms_update_multi_get_result(ms_conn_t
*c
)
715 ms_mlget_task_item_t
*mlget_item
;
716 ms_task_item_t
*item
;
717 char *orignval
= NULL
;
718 char *orignkey
= NULL
;
726 for (int i
= 0; i
< c
->mlget_task
.mlget_num
; i
++)
728 mlget_item
= &c
->mlget_task
.mlget_item
[i
];
729 item
= mlget_item
->item
;
730 orignval
= &ms_setting
.char_block
[item
->value_offset
];
731 orignkey
= &ms_setting
.char_block
[item
->key_suffix_offset
];
733 /* update get miss counter */
734 if (mlget_item
->get_miss
)
736 atomic_add_size(&ms_stats
.get_misses
, 1);
739 /* get nothing from server for this task item */
740 if (mlget_item
->verify
&& ! mlget_item
->finish_verify
)
742 /* verify expire time if necessary */
743 if (item
->exp_time
> 0)
745 struct timeval curr_time
;
746 gettimeofday(&curr_time
, NULL
);
748 /* object doesn't expire but can't get it now */
749 if (curr_time
.tv_sec
- item
->client_time
750 < item
->exp_time
- EXPIRE_TIME_ERROR
)
752 atomic_add_size(&ms_stats
.unexp_unget
, 1);
754 if (ms_setting
.verbose
)
758 strftime(set_time
, 64, "%Y-%m-%d %H:%M:%S",
759 localtime(&item
->client_time
));
760 strftime(cur_time
, 64, "%Y-%m-%d %H:%M:%S",
761 localtime(&curr_time
.tv_sec
));
763 "\n\t<%d expire time verification failed, object "
764 "doesn't expire but can't get it now\n"
766 "\tkey: %" PRIx64
" %.*s\n"
767 "\tset time: %s current time: %s "
768 "diff time: %d expire time: %d\n"
769 "\texpected data len: %d\n"
770 "\texpected data: %.*s\n"
771 "\treceived data: \n",
775 item
->key_size
- (int)KEY_PREFIX_SIZE
,
779 (int)(curr_time
.tv_sec
- item
->client_time
),
790 atomic_add_size(&ms_stats
.vef_miss
, 1);
792 if (ms_setting
.verbose
)
794 fprintf(stderr
, "\n<%d data verification failed\n"
796 "\tkey: %" PRIx64
" %.*s\n"
797 "\texpected data len: %d\n"
798 "\texpected data: %.*s\n"
799 "\treceived data: \n",
800 c
->sfd
, item
->key_size
, item
->key_prefix
,
801 item
->key_size
- (int)KEY_PREFIX_SIZE
,
802 orignkey
, item
->value_size
, item
->value_size
, orignval
);
808 c
->mlget_task
.mlget_num
= 0;
809 c
->mlget_task
.value_index
= INVALID_OFFSET
;
810 } /* ms_update_multi_get_result */
814 * after get the response from server for single get, the
815 * function update the state of the task and do data verify if
818 * @param c, pointer of the concurrency
819 * @param item, pointer of task item which includes the object
822 static void ms_update_single_get_result(ms_conn_t
*c
, ms_task_item_t
*item
)
824 char *orignval
= NULL
;
825 char *orignkey
= NULL
;
827 if ((c
== NULL
) || (item
== NULL
))
832 assert(item
!= NULL
);
834 orignval
= &ms_setting
.char_block
[item
->value_offset
];
835 orignkey
= &ms_setting
.char_block
[item
->key_suffix_offset
];
837 /* update get miss counter */
838 if ((c
->precmd
.cmd
== CMD_GET
) && c
->curr_task
.get_miss
)
840 atomic_add_size(&ms_stats
.get_misses
, 1);
843 /* get nothing from server for this task item */
844 if ((c
->precmd
.cmd
== CMD_GET
) && c
->curr_task
.verify
845 && ! c
->curr_task
.finish_verify
)
847 /* verify expire time if necessary */
848 if (item
->exp_time
> 0)
850 struct timeval curr_time
;
851 gettimeofday(&curr_time
, NULL
);
853 /* object doesn't expire but can't get it now */
854 if (curr_time
.tv_sec
- item
->client_time
855 < item
->exp_time
- EXPIRE_TIME_ERROR
)
857 atomic_add_size(&ms_stats
.unexp_unget
, 1);
859 if (ms_setting
.verbose
)
863 strftime(set_time
, 64, "%Y-%m-%d %H:%M:%S",
864 localtime(&item
->client_time
));
865 strftime(cur_time
, 64, "%Y-%m-%d %H:%M:%S",
866 localtime(&curr_time
.tv_sec
));
868 "\n\t<%d expire time verification failed, object "
869 "doesn't expire but can't get it now\n"
871 "\tkey: %" PRIx64
" %.*s\n"
872 "\tset time: %s current time: %s "
873 "diff time: %d expire time: %d\n"
874 "\texpected data len: %d\n"
875 "\texpected data: %.*s\n"
876 "\treceived data: \n",
880 item
->key_size
- (int)KEY_PREFIX_SIZE
,
884 (int)(curr_time
.tv_sec
- item
->client_time
),
895 atomic_add_size(&ms_stats
.vef_miss
, 1);
897 if (ms_setting
.verbose
)
899 fprintf(stderr
, "\n<%d data verification failed\n"
901 "\tkey: %" PRIx64
" %.*s\n"
902 "\texpected data len: %d\n"
903 "\texpected data: %.*s\n"
904 "\treceived data: \n",
905 c
->sfd
, item
->key_size
, item
->key_prefix
,
906 item
->key_size
- (int)KEY_PREFIX_SIZE
,
907 orignkey
, item
->value_size
, item
->value_size
, orignval
);
912 } /* ms_update_single_get_result */
916 * after get the response from server for set the function
917 * update the state of the task and do data verify if necessary.
919 * @param c, pointer of the concurrency
920 * @param item, pointer of task item which includes the object
923 static void ms_update_set_result(ms_conn_t
*c
, ms_task_item_t
*item
)
925 if ((c
== NULL
) || (item
== NULL
))
930 assert(item
!= NULL
);
932 if (c
->precmd
.cmd
== CMD_SET
)
934 switch (c
->precmd
.retstat
)
937 if (item
->value_offset
== INVALID_OFFSET
)
939 /* first set with the same offset of key suffix */
940 item
->value_offset
= item
->key_suffix_offset
;
944 /* not first set, just increase the value offset */
945 item
->value_offset
+= 1;
948 /* set successes, update counter */
950 c
->curr_task
.set_opt
++;
951 c
->curr_task
.cycle_undo_set
--;
954 case MCD_SERVER_ERROR
:
959 } /* ms_update_set_result */
963 * update the response time result
965 * @param c, pointer of the concurrency
967 static void ms_update_stat_result(ms_conn_t
*c
)
969 bool get_miss
= false;
977 gettimeofday(&c
->end_time
, NULL
);
978 uint64_t time_diff
= (uint64_t)ms_time_diff(&c
->start_time
, &c
->end_time
);
980 pthread_mutex_lock(&ms_statistic
.stat_mutex
);
982 switch (c
->precmd
.cmd
)
985 ms_record_event(&ms_statistic
.set_stat
, time_diff
, false);
989 if (c
->curr_task
.get_miss
)
993 ms_record_event(&ms_statistic
.get_stat
, time_diff
, get_miss
);
1000 ms_record_event(&ms_statistic
.total_stat
, time_diff
, get_miss
);
1001 pthread_mutex_unlock(&ms_statistic
.stat_mutex
);
1002 } /* ms_update_stat_result */
1006 * after get response from server for the current operation, and
1007 * before doing the next operation, update the state of the
1008 * current operation.
1010 * @param c, pointer of the concurrency
1012 static void ms_update_task_result(ms_conn_t
*c
)
1014 ms_task_item_t
*item
;
1022 item
= ms_get_cur_opt_item(c
);
1027 assert(item
!= NULL
);
1029 ms_update_set_result(c
, item
);
1031 if ((ms_setting
.stat_freq
> 0)
1032 && ((c
->precmd
.cmd
== CMD_SET
) || (c
->precmd
.cmd
== CMD_GET
)))
1034 ms_update_stat_result(c
);
1037 /* update multi-get task item */
1038 if (((ms_setting
.mult_key_num
> 1)
1039 && (c
->mlget_task
.mlget_num
>= ms_setting
.mult_key_num
))
1040 || ((c
->remain_exec_num
== 0) && (c
->mlget_task
.mlget_num
> 0)))
1042 ms_update_multi_get_result(c
);
1046 ms_update_single_get_result(c
, item
);
1048 } /* ms_update_task_result */
1052 * run get and set operation
1054 * @param c, pointer of the concurrency
1056 * @return int, if success, return 0, else return -1
1058 static int ms_run_getset_task(ms_conn_t
*c
)
1061 * extra one loop to get the last command return state. get the
1062 * last command return state.
1064 if ((c
->remain_exec_num
>= 0)
1065 && (c
->remain_exec_num
!= c
->exec_num
))
1067 ms_update_task_result(c
);
1071 if (ms_setting
.mult_key_num
> 1)
1073 /* operate next task item */
1074 ms_multi_getset_task_sch(c
);
1078 /* operate next task item */
1079 ms_single_getset_task_sch(c
);
1082 /* no task to do, exit */
1083 if ((c
->remain_exec_num
== -1) || ms_global
.time_out
)
1089 } /* ms_run_getset_task */
1093 * the state machine call the function to execute task.
1095 * @param c, pointer of the concurrency
1097 * @return int, if success, return 0, else return -1
1099 int ms_exec_task(struct conn
*c
)
1101 if (! ms_global
.finish_warmup
)
1103 ms_warmup_server(c
);
1107 if (ms_run_getset_task(c
) != 0)
1114 } /* ms_exec_task */