about load collection #37604
huangxueliang
started this conversation in
Show and tell
Replies: 1 comment
-
load() will return an error saying "service resource insufficient". You can estimate the original data size in this way: each dimension of vector is represented as a float32 value, which occupies 4 bytes. So, the original data size is: row_count * dimension * 4 bytes
If you estimate the data size is 30GB, you try to use a 32GB machine, it could be risky since sometimes memory usage peak may exceed the max capacity and cause OOM. It is recommended to keep more free space for memory. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
when we use the vector, need to load data(load collection -c cc_test) into memory,if there are large data beyond the Mem capacity,how can we do?
Beta Was this translation helpful? Give feedback.
All reactions