我正在尝试从快照还原索引,在此期间,我收到未分配碎片的datadog警报。我想禁用警报,直到还原完成。那可能吗?恢复索引后,我将对索引进行一些验证,然后使其成为实时索引。
我可以在恢复时间窗口内禁用#include <type_traits>
#include <cstdio>
struct test {
test() = default;
~test() {
}
test(const test&) = default;
int i{42};
};
static_assert(std::is_copy_constructible_v<test>, "werks"); // OK
static_assert(std::is_trivially_copy_constructible_v<test>, "sad"); // FAILS
int main() {
test t;
test t2(t);
printf("%d\n", t2.i);
return 0;
}
吗?