Home > Linux, 调优 > Linux下新系统调用sync_file_range

Linux下新系统调用sync_file_range

March 7th, 2011

原创文章,转载请注明: 转载自系统技术非业余研究

本文链接地址: Linux下新系统调用sync_file_range

我们在做数据库程序或者IO密集型的程序的时候,通常在更新的时候,比如说数据库程序,希望更新有一定的安全性,我们会在更新操作结束的时候调用fsync或者fdatasync来flush数据到持久设备去。而且通常是以页面为单位,16K一次或者4K一次。 安全性保证了,但是性能就有很大的损害。而且我们更新的时候,通常是更新文件的某一个页面,那么由于是更新覆盖操作,对文件系统的元数据来讲的话,无需变更,所以我们通常不大关心元数据是否写入。 当更新非常频繁的时候,我们时候能够有其他方法减少性能损失。sync_file_range同学出场了。

Linux下系统调用sync_file_range只在内核2.6.17及更高版本是可用的, 我们常用的RHEL 5U4是支持的。
这篇文章有他的介绍: http://lwn.net/Articles/178199/
也可以man sync_file_range下他的具体作用, 但是请注意,sync_file_range是不可移植的。

sync_file_range – sync a file segment with disk

sync_file_range() permits fine control when synchronising the open file referred to by the file descriptor fd with disk.

offset is the starting byte of the file range to be synchronised. nbytes specifies the length of the range to be synchronised, in bytes; if nbytes is zero, then all bytes from offset through to the end of file are synchronised. Synchronisation is in units of the system page size: offset is rounded down to a page boundary; (offset+nbytes-1) is rounded up to a page boundary.

sync_file_range可以让我们在做多个更新后,一次性的刷数据,这样大大提高IO的性能。 具体的实现在fs/sync.c里面,有兴趣的同学可以围观下。

著名的fio测试工具支持sync_file_range来做sync操作,我们在决定在我们的应用中使用该syscall之前不妨先fio测试一把。

祝大家玩的开心。

Post Footer automatically generated by wp-posturl plugin for wordpress.

Categories: Linux, 调优 Tags: , , ,
  1. quehan
    March 7th, 2011 at 22:24 | #1

    有点意思,虽然相关的东西用的不多,但是学习了

  2. ruochen
    March 10th, 2011 at 09:38 | #2

    如何启用sync_file_range??

    Yu Feng Reply:

    sync_file_range是系统调用,libc提供封装,你直接用就好了.

  3. ruochen
    March 10th, 2011 at 10:05 | #3

    Linux下系统调用sync_file_range只在内核2.6.17及更高版本是可用——如何确认现在os是启用的哪种sync?
    最简单的办法 man sync_file_range, 或者自己写个.c程序,用下sync_file_range看编译过不。 当然你可以看下libc.so有这个sync_file_range符号不。

Comments are closed.