问题一:Hologres中distribution_key只能在建表的时候创建吗?
Hologres中distribution_key只能在建表的时候创建吗?表已经存在了,想要增加索引,怎么处理,文档翻了一下,没找到,感谢?
参考答案:
建表后如需修改Distribution Key需要重新建表并导入数据。
关于本问题的更多回答可点击进行查看:
https://developer.aliyun.com/ask/597952
问题二:Hologres是不是insert overwrite操作,会触发drop或truncate操作?
Hologres是不是insert overwrite操作,会触发drop或truncate操作?
参考答案:
是的,insert overwrite本质上就是先创建个临时表,然后drop,rename,其实表变了的。
关于本问题的更多回答可点击进行查看:
https://developer.aliyun.com/ask/595899
问题三:Hologres外表 查询的数据有缓存吗?
Hologres外表 查询的数据有缓存吗? 我的mc 非分区表,写入数据后, 并不能马上查询到,但是不是必现,有时延迟1min能查询到,有时立马能查询到?
参考答案:
meta可能会有延迟,可以mc数据更新后,sleep几秒,holo再查 ,
关于本问题的更多回答可点击进行查看:
https://developer.aliyun.com/ask/595897
问题四:Hologres要定期更新一张线上频繁查询的表,哪一个更好?
Hologres要定期更新一张线上频繁查询的表,INSERT ON CONFLICT 和INSERT OVERWRITE哪一个更好?(更新时对线上服务查询该表的影响最小)
参考答案:
如果能用insert on conflict走fixed plan,这样就是性能最快,影响最小。https://help.aliyun.com/zh/hologres/user-guide/accelerate-the-execution-of-sql-statements-by-using-fixed-plans?spm=a2c4g.11186623.0.0.2893a34eIsEZlj#section-jje-75s-m2w ,
关于本问题的更多回答可点击进行查看:
https://developer.aliyun.com/ask/595896
问题五:Hologres怎么把binlog 删掉?
Hologres怎么把binlog 删掉?
参考答案:
Binlog功能关闭会删掉 ,
关于本问题的更多回答可点击进行查看: