blob: d38553252a51087a4e40f5580d6d0fe3a5aa3f36 [file] [log] [blame]
Jens Axboe263e5292006-10-18 15:37:01 +02001/*
2 * Status and ETA code
3 */
4#include <unistd.h>
5#include <fcntl.h>
6#include <string.h>
7
8#include "fio.h"
Jens Axboe263e5292006-10-18 15:37:01 +02009
10static char run_str[MAX_JOBS + 1];
11
12/*
13 * Sets the status of the 'td' in the printed status map.
14 */
15static void check_str_update(struct thread_data *td)
16{
17 char c = run_str[td->thread_number - 1];
18
19 switch (td->runstate) {
20 case TD_REAPED:
21 c = '_';
22 break;
23 case TD_EXITED:
24 c = 'E';
25 break;
26 case TD_RUNNING:
27 if (td_rw(td)) {
Jens Axboe413dd452007-02-23 09:26:09 +010028 if (td_random(td))
Jens Axboe263e5292006-10-18 15:37:01 +020029 c = 'm';
Jens Axboe413dd452007-02-23 09:26:09 +010030 else
31 c = 'M';
Jens Axboe263e5292006-10-18 15:37:01 +020032 } else if (td_read(td)) {
Jens Axboe413dd452007-02-23 09:26:09 +010033 if (td_random(td))
Jens Axboe263e5292006-10-18 15:37:01 +020034 c = 'r';
Jens Axboe263e5292006-10-18 15:37:01 +020035 else
Jens Axboe413dd452007-02-23 09:26:09 +010036 c = 'R';
37 } else {
38 if (td_random(td))
Jens Axboe263e5292006-10-18 15:37:01 +020039 c = 'w';
Jens Axboe413dd452007-02-23 09:26:09 +010040 else
41 c = 'W';
Jens Axboe263e5292006-10-18 15:37:01 +020042 }
43 break;
44 case TD_VERIFYING:
45 c = 'V';
46 break;
47 case TD_FSYNCING:
48 c = 'F';
49 break;
50 case TD_CREATED:
51 c = 'C';
52 break;
53 case TD_INITIALIZED:
54 c = 'I';
55 break;
56 case TD_NOT_CREATED:
57 c = 'P';
58 break;
59 default:
60 log_err("state %d\n", td->runstate);
61 }
62
63 run_str[td->thread_number - 1] = c;
64}
65
66/*
67 * Convert seconds to a printable string.
68 */
69static void eta_to_str(char *str, int eta_sec)
70{
71 unsigned int d, h, m, s;
Jens Axboe165faf12007-02-07 11:30:37 +010072 int disp_hour = 0;
Jens Axboe263e5292006-10-18 15:37:01 +020073
74 d = h = m = s = 0;
75
76 s = eta_sec % 60;
77 eta_sec /= 60;
78 m = eta_sec % 60;
79 eta_sec /= 60;
80 h = eta_sec % 24;
81 eta_sec /= 24;
82 d = eta_sec;
83
Jens Axboe165faf12007-02-07 11:30:37 +010084 if (d) {
85 disp_hour = 1;
Jens Axboe1e97cce2006-12-05 11:44:16 +010086 str += sprintf(str, "%02ud:", d);
Jens Axboe263e5292006-10-18 15:37:01 +020087 }
Jens Axboe165faf12007-02-07 11:30:37 +010088
89 if (h || disp_hour)
Jens Axboe1e97cce2006-12-05 11:44:16 +010090 str += sprintf(str, "%02uh:", h);
Jens Axboe263e5292006-10-18 15:37:01 +020091
Jens Axboe1e97cce2006-12-05 11:44:16 +010092 str += sprintf(str, "%02um:", m);
93 str += sprintf(str, "%02us", s);
Jens Axboe263e5292006-10-18 15:37:01 +020094}
95
96/*
97 * Best effort calculation of the estimated pending runtime of a job.
98 */
99static int thread_eta(struct thread_data *td, unsigned long elapsed)
100{
101 unsigned long long bytes_total, bytes_done;
Jens Axboe1e97cce2006-12-05 11:44:16 +0100102 unsigned long eta_sec = 0;
Jens Axboe263e5292006-10-18 15:37:01 +0200103
104 bytes_total = td->total_io_size;
105
Jens Axboe74939e32006-10-19 20:37:12 +0200106 /*
107 * if writing, bytes_total will be twice the size. If mixing,
108 * assume a 50/50 split and thus bytes_total will be 50% larger.
109 */
Jens Axboe0dd83772007-09-04 12:38:28 +0200110 if (td->o.do_verify && td->o.verify && td_write(td)) {
Jens Axboe74939e32006-10-19 20:37:12 +0200111 if (td_rw(td))
112 bytes_total = bytes_total * 3 / 2;
113 else
114 bytes_total <<= 1;
115 }
116
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100117 if (td->o.zone_size && td->o.zone_skip)
118 bytes_total /= (td->o.zone_skip / td->o.zone_size);
Jens Axboe263e5292006-10-18 15:37:01 +0200119
120 if (td->runstate == TD_RUNNING || td->runstate == TD_VERIFYING) {
Jens Axboecf4464c2007-04-17 20:14:42 +0200121 double perc, perc_t;
Jens Axboe263e5292006-10-18 15:37:01 +0200122
123 bytes_done = td->io_bytes[DDIR_READ] + td->io_bytes[DDIR_WRITE];
124 perc = (double) bytes_done / (double) bytes_total;
125 if (perc > 1.0)
126 perc = 1.0;
127
Jens Axboecf4464c2007-04-17 20:14:42 +0200128 if (td->o.time_based) {
129 perc_t = (double) elapsed / (double) td->o.timeout;
130 if (perc_t < perc)
131 perc = perc_t;
132 }
133
Jens Axboe1e97cce2006-12-05 11:44:16 +0100134 eta_sec = (unsigned long) (elapsed * (1.0 / perc)) - elapsed;
Jens Axboe263e5292006-10-18 15:37:01 +0200135
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100136 if (td->o.timeout && eta_sec > (td->o.timeout - elapsed))
137 eta_sec = td->o.timeout - elapsed;
Jens Axboe263e5292006-10-18 15:37:01 +0200138 } else if (td->runstate == TD_NOT_CREATED || td->runstate == TD_CREATED
139 || td->runstate == TD_INITIALIZED) {
140 int t_eta = 0, r_eta = 0;
141
142 /*
143 * We can only guess - assume it'll run the full timeout
144 * if given, otherwise assume it'll run at the specified rate.
145 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100146 if (td->o.timeout)
147 t_eta = td->o.timeout + td->o.start_delay - elapsed;
148 if (td->o.rate) {
149 r_eta = (bytes_total / 1024) / td->o.rate;
150 r_eta += td->o.start_delay - elapsed;
Jens Axboe263e5292006-10-18 15:37:01 +0200151 }
152
153 if (r_eta && t_eta)
154 eta_sec = min(r_eta, t_eta);
155 else if (r_eta)
156 eta_sec = r_eta;
157 else if (t_eta)
158 eta_sec = t_eta;
159 else
160 eta_sec = 0;
161 } else {
162 /*
163 * thread is already done or waiting for fsync
164 */
165 eta_sec = 0;
166 }
167
168 return eta_sec;
169}
170
Jens Axboe46fda8d2007-02-11 00:49:30 +0100171static void calc_rate(unsigned long mtime, unsigned long long *io_bytes,
172 unsigned long long *prev_io_bytes, unsigned int *rate)
173{
174 rate[0] = (io_bytes[0] - prev_io_bytes[0]) / mtime;
175 rate[1] = (io_bytes[1] - prev_io_bytes[1]) / mtime;
176 prev_io_bytes[0] = io_bytes[0];
177 prev_io_bytes[1] = io_bytes[1];
178}
179
Jens Axboe263e5292006-10-18 15:37:01 +0200180/*
181 * Print status of the jobs we know about. This includes rate estimates,
182 * ETA, thread state, etc.
183 */
184void print_thread_status(void)
185{
186 unsigned long elapsed = mtime_since_genesis() / 1000;
187 int i, nr_running, nr_pending, t_rate, m_rate, *eta_secs, eta_sec;
Jens Axboee6e41602007-03-27 20:20:36 +0200188 int t_iops, m_iops, files_open;
Jens Axboe34572e22006-10-20 09:33:18 +0200189 struct thread_data *td;
Jens Axboe2eaa41c2007-02-11 00:51:30 +0100190 char eta_str[128];
Jens Axboe263e5292006-10-18 15:37:01 +0200191 double perc = 0.0;
Jens Axboe6043c572006-11-03 11:37:47 +0100192 unsigned long long io_bytes[2];
Jens Axboe46fda8d2007-02-11 00:49:30 +0100193 unsigned long rate_time, disp_time, bw_avg_time;
194 struct timeval now;
Aaron Carroll43819602007-10-26 11:10:28 +0200195 int linelen;
Jens Axboe46fda8d2007-02-11 00:49:30 +0100196
197 static unsigned long long rate_io_bytes[2];
198 static unsigned long long disp_io_bytes[2];
199 static struct timeval rate_prev_time, disp_prev_time;
200 static unsigned int rate[2];
Aaron Carroll43819602007-10-26 11:10:28 +0200201 static int linelen_last;
Jens Axboe6043c572006-11-03 11:37:47 +0100202
Aaron Carrolle592a062007-09-14 09:49:41 +0200203 if (temp_stall_ts || terse_output || eta_print == FIO_ETA_NEVER)
204 return;
205
206 if (!isatty(STDOUT_FILENO) && (eta_print != FIO_ETA_ALWAYS))
Jens Axboe263e5292006-10-18 15:37:01 +0200207 return;
208
Jens Axboe46fda8d2007-02-11 00:49:30 +0100209 if (!rate_io_bytes[0] && !rate_io_bytes[1])
210 fill_start_time(&rate_prev_time);
211 if (!disp_io_bytes[0] && !disp_io_bytes[1])
212 fill_start_time(&disp_prev_time);
Jens Axboe6043c572006-11-03 11:37:47 +0100213
Jens Axboe263e5292006-10-18 15:37:01 +0200214 eta_secs = malloc(thread_number * sizeof(int));
215 memset(eta_secs, 0, thread_number * sizeof(int));
216
Jens Axboe6043c572006-11-03 11:37:47 +0100217 io_bytes[0] = io_bytes[1] = 0;
Jens Axboeac71feb2007-03-16 10:24:07 +0100218 nr_pending = nr_running = t_rate = m_rate = t_iops = m_iops = 0;
Jens Axboebb3884d2007-01-17 17:23:11 +1100219 bw_avg_time = ULONG_MAX;
Jens Axboee6e41602007-03-27 20:20:36 +0200220 files_open = 0;
Jens Axboe34572e22006-10-20 09:33:18 +0200221 for_each_td(td, i) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100222 if (td->o.bw_avg_time < bw_avg_time)
223 bw_avg_time = td->o.bw_avg_time;
Jens Axboe46fda8d2007-02-11 00:49:30 +0100224 if (td->runstate == TD_RUNNING || td->runstate == TD_VERIFYING
225 || td->runstate == TD_FSYNCING) {
Jens Axboe263e5292006-10-18 15:37:01 +0200226 nr_running++;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100227 t_rate += td->o.rate;
228 m_rate += td->o.ratemin;
Jens Axboeac71feb2007-03-16 10:24:07 +0100229 t_iops += td->o.rate_iops;
230 m_iops += td->o.rate_iops_min;
Jens Axboee6e41602007-03-27 20:20:36 +0200231 files_open += td->nr_open_files;
Jens Axboe263e5292006-10-18 15:37:01 +0200232 } else if (td->runstate < TD_RUNNING)
233 nr_pending++;
234
235 if (elapsed >= 3)
236 eta_secs[i] = thread_eta(td, elapsed);
237 else
238 eta_secs[i] = INT_MAX;
239
240 check_str_update(td);
Jens Axboe6043c572006-11-03 11:37:47 +0100241 io_bytes[0] += td->io_bytes[0];
242 io_bytes[1] += td->io_bytes[1];
Jens Axboe263e5292006-10-18 15:37:01 +0200243 }
244
245 if (exitall_on_terminate)
246 eta_sec = INT_MAX;
247 else
248 eta_sec = 0;
249
Jens Axboe34572e22006-10-20 09:33:18 +0200250 for_each_td(td, i) {
Jens Axboe263e5292006-10-18 15:37:01 +0200251 if (exitall_on_terminate) {
252 if (eta_secs[i] < eta_sec)
253 eta_sec = eta_secs[i];
254 } else {
255 if (eta_secs[i] > eta_sec)
256 eta_sec = eta_secs[i];
257 }
258 }
259
Jens Axboeeecf2722006-10-20 14:00:36 +0200260 free(eta_secs);
261
Jens Axboe263e5292006-10-18 15:37:01 +0200262 if (eta_sec != INT_MAX && elapsed) {
263 perc = (double) elapsed / (double) (elapsed + eta_sec);
264 eta_to_str(eta_str, eta_sec);
265 }
266
Jens Axboe46fda8d2007-02-11 00:49:30 +0100267 fio_gettime(&now, NULL);
268 rate_time = mtime_since(&rate_prev_time, &now);
269
270 if (write_bw_log && rate_time> bw_avg_time) {
271 calc_rate(rate_time, io_bytes, rate_io_bytes, rate);
272 memcpy(&rate_prev_time, &now, sizeof(now));
273 add_agg_sample(rate[DDIR_READ], DDIR_READ);
274 add_agg_sample(rate[DDIR_WRITE], DDIR_WRITE);
Jens Axboe6043c572006-11-03 11:37:47 +0100275 }
276
Jens Axboe46fda8d2007-02-11 00:49:30 +0100277 disp_time = mtime_since(&disp_prev_time, &now);
278 if (disp_time < 1000)
279 return;
280
281 calc_rate(disp_time, io_bytes, disp_io_bytes, rate);
282 memcpy(&disp_prev_time, &now, sizeof(now));
283
Jens Axboe263e5292006-10-18 15:37:01 +0200284 if (!nr_running && !nr_pending)
285 return;
286
Jens Axboee6e41602007-03-27 20:20:36 +0200287 printf("Jobs: %d (f=%d)", nr_running, files_open);
Jens Axboe263e5292006-10-18 15:37:01 +0200288 if (m_rate || t_rate)
Jens Axboe2cb8d962007-01-13 15:15:47 +0100289 printf(", CR=%d/%d KiB/s", t_rate, m_rate);
Jens Axboeac71feb2007-03-16 10:24:07 +0100290 else if (m_iops || t_iops)
291 printf(", CR=%d/%d IOPS", t_iops, m_iops);
Jens Axboe263e5292006-10-18 15:37:01 +0200292 if (eta_sec != INT_MAX && nr_running) {
293 perc *= 100.0;
Aaron Carroll43819602007-10-26 11:10:28 +0200294 linelen = printf(": [%s] [%3.1f%% done] [%6u/%6u kb/s] [eta %s]",
295 run_str, perc, rate[0], rate[1], eta_str);
296 if (linelen >= 0 && linelen < linelen_last)
297 printf("%*s", linelen_last-linelen, "");
298 linelen_last = linelen;
Jens Axboe263e5292006-10-18 15:37:01 +0200299 }
300 printf("\r");
301 fflush(stdout);
Jens Axboe263e5292006-10-18 15:37:01 +0200302}
303
304void print_status_init(int thread_number)
305{
306 run_str[thread_number] = 'P';
307}