Skip to content

Commit

Permalink
Don't print log file initialization throttling info
Browse files Browse the repository at this point in the history
Summary:
Remove the informational print of transaction log initialization throttling,
which turned out quite excessive. We could get the throttle rate from the
global variable innodb_txlog_init_rate anyway.

Test Plan: jenkins

Reviewers: santoshb

Reviewed By: santoshb
  • Loading branch information
tianx authored and jtolmer committed Jan 5, 2016
1 parent f81189c commit 0fb428b
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions storage/innobase/os/os0file.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2333,11 +2333,6 @@ os_file_set_size(
/* Write buffer full of zeros */
memset(buf, 0, buf_size);

if (os_txlog_init_rate > 0) {
fprintf(stderr, "InnoDB: log file write is throttled at %lluMB/s\n",
os_txlog_init_rate/(1ULL<<20));
}

if (size >= (os_offset_t) 100 << 20) {

fprintf(stderr, "InnoDB: Progress in MB:");
Expand Down

0 comments on commit 0fb428b

Please sign in to comment.