Windows 7 - linux samba performance | ||||||
posted by Michal Krupa on March 25, 2014, 10:37 a.m. | ||||||
| ||||||
Thread Tags: samba, linux, windows | ||||||
|
Hi. I've bumped a serious issue with windows 7 and samba sharing performance. I'm using this samba share to keep all my plugins and python modules. Unfortunately I'm right now facing the problem, that all the modules are loading muuuuch slower than from the local hard drive. Whe accessing the same modules from linux they're loading only slightly slower then from the local hard drive. I've made a smal test in python:
######################################################## import datetime
####################################################
It opens the file for reading 2000 times and measures the time of . For me the results were: windows - local file ("C:\test.txt") about .1s linux - local file ("/tmp/test.txt") about .01s windows - samba share ("\\server\share\test.txt") about 10s (!!!) linux - samba share ("\\server\share\test.txt") about 1s
Has anyone faced similiar problem with windows 7 access to samba shares? |