在dble目录下出现的文件“Memoryxxxxx.xxx.temp.db”文件是什么? #3144
Answered
by
Dinosauria
Dinosauria
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
Dinosauria
Feb 21, 2022
Replies: 1 comment
-
temp.db文件的目的:用于临时存储后端节点返回的大量数据,避免dble发生OOM而宕机。 temp.db的文件命名规则:
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
PanternBao
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
temp.db文件的目的:
用于临时存储后端节点返回的大量数据,避免dble发生OOM而宕机。
temp.db的文件命名规则:
Memory{random}.{index}.temp.db
中间结果集在Dble中暂存的场景:
A、B表,分别对应后端库为(dn1、dn2)和(dn3、dn4)
此外,还有count()、distinct等场景.
根据Explain sql看,Dbl…