Skip to content

Commit

Permalink
del amp code
Browse files Browse the repository at this point in the history
  • Loading branch information
foreverneverer committed Jun 5, 2020
1 parent 6b6e770 commit aa2fa6f
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/server/table_stats.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,6 @@ struct table_stats
total_multi_put_bytes += row.multi_put_bytes;
total_check_and_set_bytes += row.check_and_set_bytes;
total_check_and_mutate_bytes += row.check_and_mutate_bytes;
total_compaction_write_rate_megabytes += row.compaction_write_rate_megabytes;
total_compaction_read_rate_megabytes += row.compaction_read_rate_megabytes;
}

void merge(const table_stats &row_stats)
Expand Down Expand Up @@ -122,8 +120,6 @@ struct table_stats
total_multi_put_bytes += row_stats.total_multi_put_bytes;
total_check_and_set_bytes += row_stats.total_check_and_set_bytes;
total_check_and_mutate_bytes += row_stats.total_check_and_mutate_bytes;
total_compaction_write_rate_megabytes += row_stats.total_compaction_write_rate_megabytes;
total_compaction_read_rate_megabytes += row_stats.total_compaction_read_rate_megabytes;
}

std::string app_name;
Expand Down Expand Up @@ -167,8 +163,6 @@ struct table_stats
double total_multi_put_bytes = 0;
double total_check_and_set_bytes = 0;
double total_check_and_mutate_bytes = 0;
double total_compaction_write_rate_megabytes = 0;
double total_compaction_read_rate_megabytes = 0;
double max_total_qps = 0;
double min_total_qps = INT_MAX;
double max_total_cu = 0;
Expand Down

0 comments on commit aa2fa6f

Please sign in to comment.