I created a branch with 'debug' in my repo. There for each operation, it shows dataset information with chunk size. I created a table from output of debug information as follows.
https://github.com/tinaok/benchmarking/blob/debug/chunksize.md
For Automatic chunking scheme, I tried to re-calculate the chunking size, out of number of element each chunk size that each debug output showed.
For the benchmark with 512MB, chunk size =(251, 192, 160) : it reproduce 520 * 384 * 320 * 8 = 511MB so it is ok.
But for 256MB , chunk size =(317, 192, 160): it is 317 * 192 * 160 * 8=78MB, so chunking size is not working.
Same for 128MB, chunk size =(251, 192, 160): it is 251 * 192* 160 * 8=62MB, so chunking size is not working.
anyidia what's going on here?
I created a branch with 'debug' in my repo. There for each operation, it shows dataset information with chunk size. I created a table from output of debug information as follows.
https://github.com/tinaok/benchmarking/blob/debug/chunksize.md
For Automatic chunking scheme, I tried to re-calculate the chunking size, out of number of element each chunk size that each debug output showed.
For the benchmark with 512MB, chunk size =(251, 192, 160) : it reproduce 520 * 384 * 320 * 8 = 511MB so it is ok.
But for 256MB , chunk size =(317, 192, 160): it is 317 * 192 * 160 * 8=78MB, so chunking size is not working.
Same for 128MB, chunk size =(251, 192, 160): it is 251 * 192* 160 * 8=62MB, so chunking size is not working.
anyidia what's going on here?