Ran Joe
Ran Joe
>  > > 这个Flags使用是在main函数之前的,所以在main函数之后任何对其操作貌似都不会关闭统计线程。 注释想表达:`SamplerCollector`单例在main函数之前构造的&启动了线程,所以flag实现不能放在`SamplerCollector`类中,因为不会生效。所以才放到了`Sampler::schedule`函数这儿控制。 另外在`echo_c++`例子中使用下面两种方式看着都可以正确关闭: 1. `bvar::detail::FLAGS_bvar_enable_sampling = false;` 2. `google::SetCommandLineOption("bvar_enable_sampling", "false");`
Maybe I can give it a try.
Curious about what issues rustls 0.23 solves and why greptime needs to be upgraded.
@sunng87 The greptime-proto code: https://github.com/GreptimeTeam/greptime-proto/pull/186.
You can try using a VPN from a different region, such as Japan, although I don't know why this would solve the problem.
@arhirani @darltrash It may be a region problem. Try switching the proxy region. Refer to: > You can try using a VPN from a different region, such as Japan, although...
Maybe `mysql_native_password` is no longer supported in mysql9.0?
> Checked some internals of mysql authentication process, this has to be purely implemented from our side. > > 1. change default authentication plugin to `caching_sha2_password` > 2. implement password...
Maybe I can give it a try.
The version uses the `branch-commit` format. When git checkout to a commit, there is no branch. https://github.com/GreptimeTeam/greptimedb/blob/93be81c0410a32f8955769599090de0f4f11e73f/src/common/version/src/lib.rs#L127-L129 Therefore, fix it by using commit id directly when the branch is empty.