ClickHouse/programs/copier/ClusterPartition.h

18 lines
331 B
C++
Raw Normal View History

2020-02-19 15:01:08 +00:00
#pragma once
#include "Aliases.h"
namespace DB
{
/// Contains info about all shards that contain a partition
2020-02-20 09:06:00 +00:00
struct ClusterPartition
2020-02-19 20:50:27 +00:00
{
2020-02-19 15:01:08 +00:00
double elapsed_time_seconds = 0;
UInt64 bytes_copied = 0;
UInt64 rows_copied = 0;
UInt64 blocks_copied = 0;
UInt64 total_tries = 0;
};
}