Add support for trim as a workload type
[fio.git] / eta.c
CommitLineData
263e529f
JA
1/*
2 * Status and ETA code
3 */
4#include <unistd.h>
5#include <fcntl.h>
6#include <string.h>
7
8#include "fio.h"
263e529f 9
fca70358 10static char run_str[REAL_MAX_JOBS + 1];
263e529f
JA
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) {
5ec10eaa 20 case TD_REAPED:
4f7e57a4
JA
21 if (td->error)
22 c = 'X';
a5e371a6
JA
23 else if (td->sig)
24 c = 'K';
4f7e57a4
JA
25 else
26 c = '_';
5ec10eaa
JA
27 break;
28 case TD_EXITED:
29 c = 'E';
30 break;
b29ee5b3
JA
31 case TD_RAMP:
32 c = '/';
33 break;
5ec10eaa
JA
34 case TD_RUNNING:
35 if (td_rw(td)) {
e3b3f81e
JA
36 if (td_random(td)) {
37 if (td->o.rwmix[DDIR_READ] == 100)
38 c = 'r';
39 else if (td->o.rwmix[DDIR_WRITE] == 100)
40 c = 'w';
41 else
42 c = 'm';
43 } else {
44 if (td->o.rwmix[DDIR_READ] == 100)
45 c = 'R';
46 else if (td->o.rwmix[DDIR_WRITE] == 100)
47 c = 'W';
48 else
49 c = 'M';
50 }
5ec10eaa
JA
51 } else if (td_read(td)) {
52 if (td_random(td))
53 c = 'r';
54 else
55 c = 'R';
6eaf09d6 56 } else if (td_write(td)) {
5ec10eaa
JA
57 if (td_random(td))
58 c = 'w';
59 else
60 c = 'W';
6eaf09d6
SL
61 } else {
62 if (td_random(td))
63 c = 'd';
64 else
65 c = 'D';
5ec10eaa
JA
66 }
67 break;
b0f65863
JA
68 case TD_PRE_READING:
69 c = 'p';
70 break;
5ec10eaa
JA
71 case TD_VERIFYING:
72 c = 'V';
73 break;
74 case TD_FSYNCING:
75 c = 'F';
76 break;
77 case TD_CREATED:
78 c = 'C';
79 break;
80 case TD_INITIALIZED:
81 c = 'I';
82 break;
83 case TD_NOT_CREATED:
84 c = 'P';
85 break;
86 default:
87 log_err("state %d\n", td->runstate);
263e529f
JA
88 }
89
90 run_str[td->thread_number - 1] = c;
91}
92
93/*
94 * Convert seconds to a printable string.
95 */
9c02f6ef 96static void eta_to_str(char *str, unsigned long eta_sec)
263e529f
JA
97{
98 unsigned int d, h, m, s;
165faf16 99 int disp_hour = 0;
263e529f 100
263e529f
JA
101 s = eta_sec % 60;
102 eta_sec /= 60;
103 m = eta_sec % 60;
104 eta_sec /= 60;
105 h = eta_sec % 24;
106 eta_sec /= 24;
107 d = eta_sec;
108
165faf16
JA
109 if (d) {
110 disp_hour = 1;
1e97cce9 111 str += sprintf(str, "%02ud:", d);
263e529f 112 }
165faf16
JA
113
114 if (h || disp_hour)
1e97cce9 115 str += sprintf(str, "%02uh:", h);
263e529f 116
1e97cce9
JA
117 str += sprintf(str, "%02um:", m);
118 str += sprintf(str, "%02us", s);
263e529f
JA
119}
120
121/*
122 * Best effort calculation of the estimated pending runtime of a job.
123 */
b29ee5b3 124static int thread_eta(struct thread_data *td)
263e529f
JA
125{
126 unsigned long long bytes_total, bytes_done;
1e97cce9 127 unsigned long eta_sec = 0;
b29ee5b3
JA
128 unsigned long elapsed;
129
130 elapsed = (mtime_since_now(&td->epoch) + 999) / 1000;
263e529f
JA
131
132 bytes_total = td->total_io_size;
133
2e3bd4c2
JA
134 if (td->o.fill_device && td->o.size == -1ULL) {
135 if (!td->fill_device_size || td->fill_device_size == -1ULL)
136 return 0;
137
138 bytes_total = td->fill_device_size;
139 }
140
74939e38
JA
141 /*
142 * if writing, bytes_total will be twice the size. If mixing,
143 * assume a 50/50 split and thus bytes_total will be 50% larger.
144 */
0dd8377f 145 if (td->o.do_verify && td->o.verify && td_write(td)) {
74939e38
JA
146 if (td_rw(td))
147 bytes_total = bytes_total * 3 / 2;
148 else
149 bytes_total <<= 1;
150 }
151
2dc1bbeb
JA
152 if (td->o.zone_size && td->o.zone_skip)
153 bytes_total /= (td->o.zone_skip / td->o.zone_size);
263e529f
JA
154
155 if (td->runstate == TD_RUNNING || td->runstate == TD_VERIFYING) {
cf4464ca 156 double perc, perc_t;
263e529f 157
6eaf09d6
SL
158 bytes_done = td->io_bytes[DDIR_READ] + td->io_bytes[DDIR_WRITE] +
159 td->io_bytes[DDIR_TRIM];
263e529f
JA
160 perc = (double) bytes_done / (double) bytes_total;
161 if (perc > 1.0)
162 perc = 1.0;
163
cf4464ca
JA
164 if (td->o.time_based) {
165 perc_t = (double) elapsed / (double) td->o.timeout;
166 if (perc_t < perc)
167 perc = perc_t;
168 }
169
1e97cce9 170 eta_sec = (unsigned long) (elapsed * (1.0 / perc)) - elapsed;
263e529f 171
d3eeeabc
JA
172 if (td->o.timeout &&
173 eta_sec > (td->o.timeout + done_secs - elapsed))
174 eta_sec = td->o.timeout + done_secs - elapsed;
263e529f 175 } else if (td->runstate == TD_NOT_CREATED || td->runstate == TD_CREATED
b29ee5b3 176 || td->runstate == TD_INITIALIZED
b0f65863
JA
177 || td->runstate == TD_RAMP
178 || td->runstate == TD_PRE_READING) {
263e529f
JA
179 int t_eta = 0, r_eta = 0;
180
181 /*
182 * We can only guess - assume it'll run the full timeout
183 * if given, otherwise assume it'll run at the specified rate.
184 */
b29ee5b3 185 if (td->o.timeout) {
cda99fa0
SSP
186 t_eta = td->o.timeout + td->o.start_delay +
187 td->o.ramp_time;
b29ee5b3
JA
188
189 if (in_ramp_time(td)) {
190 unsigned long ramp_left;
191
cda99fa0 192 ramp_left = mtime_since_now(&td->epoch);
b29ee5b3
JA
193 ramp_left = (ramp_left + 999) / 1000;
194 if (ramp_left <= t_eta)
195 t_eta -= ramp_left;
196 }
197 }
6eaf09d6
SL
198 if (td->o.rate[DDIR_READ] || td->o.rate[DDIR_WRITE] ||
199 td->o.rate[DDIR_TRIM]) {
0b9d69ec 200 r_eta = (bytes_total / 1024) /
6eaf09d6
SL
201 (td->o.rate[DDIR_READ] + td->o.rate[DDIR_WRITE] +
202 td->o.rate[DDIR_TRIM]);
d3eeeabc 203 r_eta += td->o.start_delay;
263e529f
JA
204 }
205
206 if (r_eta && t_eta)
207 eta_sec = min(r_eta, t_eta);
208 else if (r_eta)
209 eta_sec = r_eta;
210 else if (t_eta)
211 eta_sec = t_eta;
212 else
213 eta_sec = 0;
214 } else {
215 /*
216 * thread is already done or waiting for fsync
217 */
218 eta_sec = 0;
219 }
220
221 return eta_sec;
222}
223
46fda8d0
JA
224static void calc_rate(unsigned long mtime, unsigned long long *io_bytes,
225 unsigned long long *prev_io_bytes, unsigned int *rate)
226{
b7f05eb0
JA
227 int i;
228
6eaf09d6 229 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
b7f05eb0
JA
230 unsigned long long diff;
231
232 diff = io_bytes[i] - prev_io_bytes[i];
233 rate[i] = ((1000 * diff) / mtime) / 1024;
6eaf09d6
SL
234
235 prev_io_bytes[i] = io_bytes[i];
b7f05eb0 236 }
46fda8d0 237}
5ec10eaa 238
adb02ba8
JA
239static void calc_iops(unsigned long mtime, unsigned long long *io_iops,
240 unsigned long long *prev_io_iops, unsigned int *iops)
241{
6eaf09d6
SL
242 int i;
243
244 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
245 iops[i] = ((io_iops[i] - prev_io_iops[i]) * 1000) / mtime;
246 prev_io_iops[i] = io_iops[i];
247 }
adb02ba8
JA
248}
249
263e529f
JA
250/*
251 * Print status of the jobs we know about. This includes rate estimates,
252 * ETA, thread state, etc.
253 */
af9c9fb3 254int calc_thread_status(struct jobs_eta *je, int force)
263e529f 255{
34572e28 256 struct thread_data *td;
b75a394f
JA
257 int i;
258 unsigned long rate_time, disp_time, bw_avg_time, *eta_secs;
6eaf09d6
SL
259 unsigned long long io_bytes[DDIR_RWDIR_CNT];
260 unsigned long long io_iops[DDIR_RWDIR_CNT];
46fda8d0
JA
261 struct timeval now;
262
6eaf09d6
SL
263 static unsigned long long rate_io_bytes[DDIR_RWDIR_CNT];
264 static unsigned long long disp_io_bytes[DDIR_RWDIR_CNT];
265 static unsigned long long disp_io_iops[DDIR_RWDIR_CNT];
46fda8d0 266 static struct timeval rate_prev_time, disp_prev_time;
6043c579 267
af9c9fb3
JA
268 if (!force) {
269 if (temp_stall_ts || terse_output || eta_print == FIO_ETA_NEVER)
270 return 0;
e592a06b 271
af9c9fb3
JA
272 if (!isatty(STDOUT_FILENO) && (eta_print != FIO_ETA_ALWAYS))
273 return 0;
274 }
263e529f 275
6eaf09d6
SL
276 if (!rate_io_bytes[DDIR_READ] && !rate_io_bytes[DDIR_WRITE] &&
277 !rate_io_bytes[DDIR_TRIM])
46fda8d0 278 fill_start_time(&rate_prev_time);
6eaf09d6
SL
279 if (!disp_io_bytes[DDIR_READ] && !disp_io_bytes[DDIR_WRITE] &&
280 !disp_io_bytes[DDIR_TRIM])
46fda8d0 281 fill_start_time(&disp_prev_time);
6043c579 282
d3eeeabc
JA
283 eta_secs = malloc(thread_number * sizeof(unsigned long));
284 memset(eta_secs, 0, thread_number * sizeof(unsigned long));
263e529f 285
b75a394f
JA
286 je->elapsed_sec = (mtime_since_genesis() + 999) / 1000;
287
6eaf09d6
SL
288 io_bytes[DDIR_READ] = io_bytes[DDIR_WRITE] = io_bytes[DDIR_TRIM] = 0;
289 io_iops[DDIR_READ] = io_iops[DDIR_WRITE] = io_iops[DDIR_TRIM] = 0;
bb3884d8 290 bw_avg_time = ULONG_MAX;
34572e28 291 for_each_td(td, i) {
b7f05eb0
JA
292 if (is_power_of_2(td->o.kb_base))
293 je->is_pow2 = 1;
2dc1bbeb
JA
294 if (td->o.bw_avg_time < bw_avg_time)
295 bw_avg_time = td->o.bw_avg_time;
46fda8d0 296 if (td->runstate == TD_RUNNING || td->runstate == TD_VERIFYING
b0f65863
JA
297 || td->runstate == TD_FSYNCING
298 || td->runstate == TD_PRE_READING) {
b75a394f 299 je->nr_running++;
242c38db
JA
300 if (td_read(td)) {
301 je->t_rate += td->o.rate[DDIR_READ];
302 je->t_iops += td->o.rate_iops[DDIR_READ];
303 je->m_rate += td->o.ratemin[DDIR_READ];
304 je->m_iops += td->o.rate_iops_min[DDIR_READ];
305 }
306 if (td_write(td)) {
307 je->t_rate += td->o.rate[DDIR_WRITE];
308 je->t_iops += td->o.rate_iops[DDIR_WRITE];
309 je->m_rate += td->o.ratemin[DDIR_WRITE];
310 je->m_iops += td->o.rate_iops_min[DDIR_WRITE];
311 }
6eaf09d6
SL
312 if (td_trim(td)) {
313 je->t_rate += td->o.rate[DDIR_TRIM];
314 je->t_iops += td->o.rate_iops[DDIR_TRIM];
315 je->m_rate += td->o.ratemin[DDIR_TRIM];
316 je->m_iops += td->o.rate_iops_min[DDIR_TRIM];
317 }
318
b75a394f 319 je->files_open += td->nr_open_files;
b29ee5b3 320 } else if (td->runstate == TD_RAMP) {
b75a394f
JA
321 je->nr_running++;
322 je->nr_ramp++;
263e529f 323 } else if (td->runstate < TD_RUNNING)
b75a394f 324 je->nr_pending++;
263e529f 325
b75a394f 326 if (je->elapsed_sec >= 3)
b29ee5b3 327 eta_secs[i] = thread_eta(td);
263e529f
JA
328 else
329 eta_secs[i] = INT_MAX;
330
331 check_str_update(td);
b29ee5b3
JA
332
333 if (td->runstate > TD_RAMP) {
6eaf09d6
SL
334 int ddir;
335 for (ddir = DDIR_READ; ddir < DDIR_RWDIR_CNT; ddir++) {
336 io_bytes[ddir] += td->io_bytes[ddir];
337 io_iops[ddir] += td->io_blocks[ddir];
338 }
b29ee5b3 339 }
263e529f
JA
340 }
341
342 if (exitall_on_terminate)
b75a394f 343 je->eta_sec = INT_MAX;
263e529f 344 else
b75a394f 345 je->eta_sec = 0;
263e529f 346
34572e28 347 for_each_td(td, i) {
9c5a3854 348 if (exitall_on_terminate) {
b75a394f
JA
349 if (eta_secs[i] < je->eta_sec)
350 je->eta_sec = eta_secs[i];
9c5a3854 351 } else {
b75a394f
JA
352 if (eta_secs[i] > je->eta_sec)
353 je->eta_sec = eta_secs[i];
9c5a3854 354 }
263e529f
JA
355 }
356
eecf272f
JA
357 free(eta_secs);
358
46fda8d0
JA
359 fio_gettime(&now, NULL);
360 rate_time = mtime_since(&rate_prev_time, &now);
361
b29ee5b3 362 if (write_bw_log && rate_time > bw_avg_time && !in_ramp_time(td)) {
b75a394f 363 calc_rate(rate_time, io_bytes, rate_io_bytes, je->rate);
46fda8d0 364 memcpy(&rate_prev_time, &now, sizeof(now));
b75a394f
JA
365 add_agg_sample(je->rate[DDIR_READ], DDIR_READ, 0);
366 add_agg_sample(je->rate[DDIR_WRITE], DDIR_WRITE, 0);
6eaf09d6 367 add_agg_sample(je->rate[DDIR_TRIM], DDIR_TRIM, 0);
6043c579
JA
368 }
369
46fda8d0 370 disp_time = mtime_since(&disp_prev_time, &now);
a5b01f1b
JA
371
372 /*
373 * Allow a little slack, the target is to print it every 1000 msecs
374 */
af9c9fb3 375 if (!force && disp_time < 900)
b75a394f 376 return 0;
46fda8d0 377
b75a394f
JA
378 calc_rate(disp_time, io_bytes, disp_io_bytes, je->rate);
379 calc_iops(disp_time, io_iops, disp_io_iops, je->iops);
adb02ba8 380
46fda8d0
JA
381 memcpy(&disp_prev_time, &now, sizeof(now));
382
af9c9fb3 383 if (!force && !je->nr_running && !je->nr_pending)
b75a394f
JA
384 return 0;
385
1d1f45ae
JA
386 je->nr_threads = thread_number;
387 memcpy(je->run_str, run_str, thread_number * sizeof(char));
388
b75a394f
JA
389 return 1;
390}
391
cf451d1e 392void display_thread_status(struct jobs_eta *je)
b75a394f 393{
b75a394f
JA
394 static int linelen_last;
395 static int eta_good;
79074e7c 396 char output[REAL_MAX_JOBS + 512], *p = output;
b75a394f
JA
397 char eta_str[128];
398 double perc = 0.0;
b75a394f 399
cf451d1e
JA
400 if (je->eta_sec != INT_MAX && je->elapsed_sec) {
401 perc = (double) je->elapsed_sec / (double) (je->elapsed_sec + je->eta_sec);
402 eta_to_str(eta_str, je->eta_sec);
b75a394f
JA
403 }
404
cf451d1e
JA
405 p += sprintf(p, "Jobs: %d (f=%d)", je->nr_running, je->files_open);
406 if (je->m_rate || je->t_rate) {
581e7141
JA
407 char *tr, *mr;
408
b7f05eb0
JA
409 mr = num2str(je->m_rate, 4, 0, je->is_pow2);
410 tr = num2str(je->t_rate, 4, 0, je->is_pow2);
37db14fe 411 p += sprintf(p, ", CR=%s/%s KB/s", tr, mr);
581e7141
JA
412 free(tr);
413 free(mr);
cf451d1e
JA
414 } else if (je->m_iops || je->t_iops)
415 p += sprintf(p, ", CR=%d/%d IOPS", je->t_iops, je->m_iops);
416 if (je->eta_sec != INT_MAX && je->nr_running) {
0721d11e 417 char perc_str[32];
6eaf09d6
SL
418 char *iops_str[DDIR_RWDIR_CNT];
419 char *rate_str[DDIR_RWDIR_CNT];
79074e7c 420 size_t left;
adb02ba8 421 int l;
6eaf09d6 422 int ddir;
5ec10eaa 423
cf451d1e 424 if ((!je->eta_sec && !eta_good) || je->nr_ramp == je->nr_running)
cac58fd5
JA
425 strcpy(perc_str, "-.-% done");
426 else {
427 eta_good = 1;
428 perc *= 100.0;
0721d11e 429 sprintf(perc_str, "%3.1f%% done", perc);
cac58fd5 430 }
0721d11e 431
6eaf09d6
SL
432 for (ddir = DDIR_READ; ddir < DDIR_RWDIR_CNT; ddir++) {
433 rate_str[ddir] = num2str(je->rate[ddir], 5,
434 1024, je->is_pow2);
435 iops_str[ddir] = num2str(je->iops[ddir], 4, 1, 0);
436 }
adb02ba8 437
79074e7c
JA
438 left = sizeof(output) - (p - output) - 1;
439
6eaf09d6
SL
440 l = snprintf(p, left, ": [%s] [%s] [%s/%s/%s /s] [%s/%s/%s iops] [eta %s]",
441 je->run_str, perc_str, rate_str[DDIR_READ],
442 rate_str[DDIR_WRITE], rate_str[DDIR_TRIM],
443 iops_str[DDIR_READ], iops_str[DDIR_WRITE],
444 iops_str[DDIR_TRIM], eta_str);
37db14fe 445 p += l;
adb02ba8 446 if (l >= 0 && l < linelen_last)
37db14fe 447 p += sprintf(p, "%*s", linelen_last - l, "");
adb02ba8 448 linelen_last = l;
d1bd7213 449
6eaf09d6
SL
450 for (ddir = DDIR_READ; ddir < DDIR_RWDIR_CNT; ddir++) {
451 free(rate_str[ddir]);
452 free(iops_str[ddir]);
453 }
263e529f 454 }
37db14fe
JA
455 p += sprintf(p, "\r");
456
cf451d1e
JA
457 printf("%s", output);
458 fflush(stdout);
263e529f
JA
459}
460
cf451d1e
JA
461void print_thread_status(void)
462{
1d1f45ae 463 struct jobs_eta *je;
b814fb26 464 size_t size;
1d1f45ae 465
b814fb26
JA
466 if (!thread_number)
467 return;
cf451d1e 468
b814fb26
JA
469 size = sizeof(*je) + thread_number * sizeof(char) + 1;
470 je = malloc(size);
471 memset(je, 0, size);
cf451d1e 472
af9c9fb3 473 if (calc_thread_status(je, 0))
1d1f45ae 474 display_thread_status(je);
cf451d1e 475
1d1f45ae 476 free(je);
cf451d1e 477}
b75a394f 478
2b13e716 479void print_status_init(int thr_number)
263e529f 480{
2b13e716 481 run_str[thr_number] = 'P';
263e529f 482}