Improvement in SMB Performance found
|
24th Feb, 2013, 03:36 AM
Post: #1
|
|||
|
|||
Improvement in SMB Performance found
My video data is stored on a windows server that I access via SMB from the Pi.
I was able to play back SD videos without any issue, but had problems with stuttering on Hi-Def sources. I added the video sources via the XBMC interface. However, since I wanted access to those shares from a terminal, I also mounted them in fstab. I used a standard mount entry with no options except for the username and password. Code: //video/files /media/video cifs username=uid,password=pwd 0 0 In an effort to keep my Pi healthy as long as possible, I had my overclock set to the "XBIAN" preset, figuring that the XBian folks knew what preset was best. In this configuration, I had stuttering problems with my 1080p sources. That was no good. So, I started looking into it. I started digging around the internet in linux forums for "slow smb linux" and I found the following thread: http://ubuntuforums.org/showthread.php?t=1429532 So, I decided to tweak a few things. I created the file "cifs.conf" in /etc/modprobe.d and added the following to it: Code: options cifs CIFSMaxBufSize=130048 I then modified my fstab entries to include the directio and rsize options: Code: //video/files /media/video cifs directio,rsize=130048,username=uid,password=pwd 0 0 Then I rebooted the Pi to clean everything out and redo the mounts. My testing showed VAST improvement. Now, the HD movie was actually watchable, although it would have the occasional hiccup in playback. It was just often enough to be "unacceptable." So, since I had maxed out the rsize options (according to the mount.cifs manpage) I decided to look elsewhere for a performance enhancement. So, I bumped my overclock up to "High" and rebooted. Got smooth playback now. |
|||
24th Feb, 2013, 03:49 AM
Post: #2
|
|||
|
|||
RE: Improvement in SMB Performance found
If you want to, you can open an issue on our git https://github.com/xbianonpi/xbian/issues/new about this.
Please read rules and do a search before you post! . FAQs . How to post log file? . Looking for answers? Please start here |
|||
24th Feb, 2013, 03:55 AM
Post: #3
|
|||
|
|||
RE: Improvement in SMB Performance found
Samba (default)
Code: dd if=/dev/zero of=/media/smb/test bs=1024 count=102400 NFS Code: dd if=/dev/zero of=/media/nfs/test bs=1024 count=102400 Samba (rsize) Code: dd if=/dev/zero of=/media/smb/test bs=1024 count=102400 It made my samba connection about 7 times slower. pilight - modular domotica solution
|
|||
24th Feb, 2013, 06:40 AM
Post: #4
|
|||
|
|||
RE: Improvement in SMB Performance found
strange. Maybe I'm just hitting the limits of the Pi.
When I have my library attached to a windows box using xbmc, it can scan the entire library in seconds and the movies are all there. The same process with the drives attached to the pi takes about 20 minutes. is xbian's NTFS code really inefficient? What can account for this discrepancy? |
|||
24th Feb, 2013, 06:51 AM
Post: #5
|
|||
|
|||
RE: Improvement in SMB Performance found
The fuse-ntfs drivers...
pilight - modular domotica solution
|
|||
24th Feb, 2013, 06:53 AM
Post: #6
|
|||
|
|||
RE: Improvement in SMB Performance found
Are they really THAT bad? since my video library is on external USB disk, I'd like to maintain them in a transportable format. Unfortunately, due to file size, FAT32 is not an option. The only other FS that seems to have universal read access (at least, many have RW) is NTFS.
Im going to try tweaking the options in fstab. Maybe I'll get something reasonable. Seems like I just keep striking out. |
|||
25th Feb, 2013, 02:08 AM
Post: #7
|
|||
|
|||
Re: Improvement in SMB Performance found
NTFS is CPU intensive. On my Mac fuse is not really a problem but the Pi just does not have that kind of power.
Whatever you do, don't switch to JFS as it is really unstable in combo with the Pi |
|||
18th Mar, 2013, 08:55 PM
Post: #8
|
|||
|
|||
RE: Improvement in SMB Performance found
@2twistyy, you could switch to eXFAT, both Windows and Mac support it.
or create 2 partitions, 1 small eXFAT and one EXT4 for all your data. If you need anything to be available when directly connected to pc or mac, simply use XBMC File Manager to copy it from EXT4 to the eXFAT partition. |
|||
6th Apr, 2013, 12:52 AM
Post: #9
|
|||
|
|||
RE: Improvement in SMB Performance found
Regarding NTFS:
Try the mount option "big_writes". For me it drops the CPU usage of the NTFS-3G driver from ~35% -> ~5%. So much more CPU left for the Pi and XBMC. http://www.tuxera.com/community/ntfs-3g-faq/#highcpu Fstab example: Code: UUID=DA20B /mnt/hdd ntfs-3g defaults,noatime,nodiratime,async,big_writes 0 0 Another option would be to get this alternative NTFS driver up and running: http://forum.xbian.org/thread-186.html |
|||
25th Jun, 2013, 11:20 PM
Post: #10
|
|||
|
|||
RE: Improvement in SMB Performance found
Well it is a good found and NTFS has great working but give over power to it so that it could work properly and every device should remain balance in every aspect.
|
|||
« Next Oldest | Next Newest »
|