We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
想要直接写入hll类型,而不是使用HLL_HASH函数转换通过明细导入
需要直接写入hll等聚合函数中间状态类型,就类似clickhouse的AggregateFunction类型支持写入任何聚合函数的中间聚合状态,只需要写入的字节数组符合对应聚合函数序列化格式就能直接写入。
通过HLL_HASH函数导入hll类型,原始导入数据太多,直接导入hll类型导入数据会少很多。
打算把数据从druid和clickhouse迁移到starrocks,发现starrocks不是能直接写入所有的聚合函数类型。
能否像doris一样提供hll_from_base64/hll_to_base64函数,使可以通过 Stream load 导入数据hll类型数据。
当然最好也能支持其他常用聚合类型的导入,业务中我们使用较多的有:使用HLL计算基数,使用分位数sketch计算分位数。
The text was updated successfully, but these errors were encountered:
Yes. We will support this.
hll sketch will be supported after this pr(#49000).
hll sketch
Sorry, something went wrong.
No branches or pull requests
Feature request
想要直接写入hll类型,而不是使用HLL_HASH函数转换通过明细导入
需要直接写入hll等聚合函数中间状态类型,就类似clickhouse的AggregateFunction类型支持写入任何聚合函数的中间聚合状态,只需要写入的字节数组符合对应聚合函数序列化格式就能直接写入。
通过HLL_HASH函数导入hll类型,原始导入数据太多,直接导入hll类型导入数据会少很多。
打算把数据从druid和clickhouse迁移到starrocks,发现starrocks不是能直接写入所有的聚合函数类型。
能否像doris一样提供hll_from_base64/hll_to_base64函数,使可以通过 Stream load 导入数据hll类型数据。
当然最好也能支持其他常用聚合类型的导入,业务中我们使用较多的有:使用HLL计算基数,使用分位数sketch计算分位数。
The text was updated successfully, but these errors were encountered: