HDFGroup / hsds

Cloud-native, service based access to HDF data
https://www.hdfgroup.org/solutions/hdf-kita/
Apache License 2.0
126 stars 52 forks source link

Fixes #191

Closed trmt closed 1 year ago

trmt commented 1 year ago
jreadey commented 1 year ago

Good catch - looks like the blosc_get_nthreads() was only getting called when the blosc_nthreads config was set to zero. Did you get better performance using the number of threads available on the processor?

trmt commented 1 year ago

It was just test run in systemd-nspawn container with cpu limit option. that's why i set blosc_nthreads to zero and caught that error

jreadey commented 1 year ago

Good you found that. Setting blosc_nthreads to zero may not be what you want to limit cpu usage though. Zero causes the number of threads to be based on whatever the processor supports. Using a value of one would be the most cpu-limiting choice.

trmt commented 1 year ago

thanks for advice