Files
scylladb/idl/forward_request.idl.hh
Jadw1 29a0be75da forward_service: support UDA and native aggregate parallelization
Enables parallelization of UDA and native aggregates. The way the
query is parallelized is the same as in #9209. Separate reduction
type for `COUNT(*)` is left for compatibility reason.
2022-07-18 15:25:41 +02:00

37 lines
855 B
C++

namespace db {
namespace functions {
class function_name {
sstring keyspace;
sstring name;
};
}
}
namespace query {
struct forward_request {
struct aggregation_info {
db::functions::function_name name;
std::vector<sstring> column_names;
};
enum class reduction_type : uint8_t {
count,
aggregate
};
std::vector<query::forward_request::reduction_type> reduction_types;
query::read_command cmd;
dht::partition_range_vector pr;
db::consistency_level cl;
lowres_clock::time_point timeout;
std::optional<std::vector<query::forward_request::aggregation_info>> aggregation_infos [[version 5.1]];
};
struct forward_result {
std::vector<bytes_opt> query_results;
};
verb forward_request(query::forward_request, std::optional<tracing::trace_info>) -> query::forward_result;
}