设为首页 友情链接
在线留言 发表文章
加入收藏 广告联系

刺猬首页

| 专案技术 | 网络技术 | 图形图象 | 网络编程 | 网页设计 | 操作系统 | 服务器 | 技术白皮书 | 在线实验室 | 刺猬论坛 |
小说专版  | 数据库 | 设计赏析 | 存储频道 | 网络安全 | 私服架设 |  Solaris | 网站评估 | PC维护技巧 | 下载中心 | 博 客 |
专   题: | Linux | java | cisco | 防病毒 | 刀片 | SOA | iscsi | ASP.NET | SQL | Oracle |
您现在的位置: IT公社 IT community >> 操作系统 >> UNIX系统 >> 教程正文 用户登录 新用户注册
专 题 栏 目
最 新 热 门
最 新 推 荐
相 关 文 章
Unix 与 NT 的集成
UNIX系统编程常用库函数…
Linux系统中提高文件系统…
Unix系列shell程序编写
在Unix服务器上设置Orac…
一台磁带机在两台scouni…
AIX 5L V5.3操作系统通过…
Sun考虑用GPL许可方式发…
Sun Solaris 10计划开源…
Sun系统性能包中新推出1…
  提高unixware文件系统性能         
提高unixware文件系统性能
 

以下是一篇英文的unixware性能提高文章,提供给大家参考吧
1. Add the entry "delaylog=nolog" to the mount options in
/etc/vfstab, for example:

/dev/filesys /dev/rfilesys / vxfs 1 no
delaylog=nolog,mincache=closesync SYS_RANGE_MAX

This will run your filesystem with no transaction logging, making
it difficult to repair in the event of a system crash. However,
it will improve performance, and if the files in this filesystem
are considered to be temporary, then this option can be used.

More information on these options are available from the command:

man mount_vxfs

2. The above online manual page refers to the various "mincache"
options. The default is "mincache=closesync" which is the slowest,
but more reliable method.

However, adding the entry "mincache=tmpcache" to the mount options
in /etc/vfstab will cause your filesystem to become unmountable
unless you are using the Advanced VxFS filesystem, On-Line Data
Manager (ODM).

NOTES: In order to achieve the best performance, it's helpful to look at
the type of disk configurations available:

No Raid - Disks independent, no resilience

Raid 0 - Fast as disks are striped.
1 disk min, max depends on controller.
No Fault Tolerance.
Increase disk capacity.

Raid 1 - Mirrored disks.
2 disks required.
Fault Tolerance.
Hot Spare available.

Raid 5 - Resilience but slow as parity is spread across all the disks.
3 disk min, max depends on controller.
Fault Tolerance.
Hot spare available.

Raid 10 - An entire Raid 5 configuration mirrored.
6 disks min, max depends on controller.
Fault Tolerant.
Hot Spare available.
Very slow but excellent resilience.
Rarely used.

Raid 0+1 - Raid 0 configuration but each disk is mirrored.
2 disks min, max depends on controller.
Hot Spare available.
Costly, because if you wanted a 100GB Logical Drive
made from 10GB disks you would need 10 disks for the
100GB, and then a further 10 disks for the mirror.

Bus Speed - There are three components: the controller card, PCI bus
inside the server, and the driver for the controller.
All three need to be 64 bit to get true 64 bit,
otherwise there will be a 32 bit bottleneck.

Controller - If the controller has memory with a battery backup
then "Write Back" can be used to use the full benefit
of the on-board cache of the controller. The other
option is the "Write Thru" option which is slower
but more reliable.

NOTE: If the database used is transaction based, then
data can be written to the disk from the cache during
a boot up if the power had gone down earlier. If the
database is not fully opened then the transaction logs
can get confused.

You may want to have separate controllers for separate
filesystem activities.

You can also gain performance by ensuring that if the
controller is multi-channel, each logical drive uses
physical disks on the same channel.

It is recommended to have a separate controller for
tape(s) and CDROM(s), rather than use the same controller
as the disks. It is also recommended to not have too
many SCSI devices on the same bus.

Sizes - You can set the Stripe Size on the controller and the
Block Size of the filesystem to be the same to optimize
performance for large file processing with large
databases, such as Oracle, especially if these databases
are on a separate controller. This would mean increasing
the blocksize of the filesystem, when it is created, to
the same size as the Stripe Size.

The larger the block size is, then each file created will
consume that amount in the inode table. For example, a
block size of 8k will consume 8k in the inode table for
each file created. A typical example of this would be an
Oracle database with a 8k block size setting within Oracle's
configuration. You would make Oracle and the filesystem's
block size consistent.

For some servers you may want to lower the Stripe Size if
lots of small reads and writes are taking place so the
controller is not waiting for its cache to be filled each
time. However, the more read/writes there are, the more
times an interrupt will be created for the action.

The norm though is to use the default RAID configuration
setting for the RAID Stripe Size and the default filesystem
block size for UnixWare 7, which is 1024.

Disks - In general, the more disks, the better performance
as more spindles/heads are being used. The faster
the disk revolution, the better. You should also
check the cache provided by the disk from the
disk's manufacturer.

Filesystems - Assign individual filesystems to separate tasks to
reduce activity to the inode tables. In general,
accept the number of inodes recommended by UnixWare
7 when adding the filesystem, even when you are expecting
there to be a large number of small files written there.
In this case, you would normally expect to double the number
of recommended inodes.

However, the "diskadd" command will actually give you an
inode value of unlimited.

To check these settings, run this command on the filesystem
(slice) in question:

mkfs -m /dev/rdsk/cXbXtXdXsX

Please note: During the Initial System Load (ISL), UnixWare2
& UnixWare 7.0.x will provide an Advanced option
during the creation of the filesystems, in the
Customise Filesystems option. By default, these
"vxfs" filesystems will have a 64K inode limit but
this can be changed to "Unlimited" in this
Advanced option.

In the case of UnixWare 7, the best compromise for resilience
and performance is to use Raid 1 for the root filesystem on one
Logical Disk.

For each filesystem required, have a Logical Drive consisting of
the necessary Raid 0+1 disks required for the size. If the number
of disks is a factor, which is the norm, then have a reduced number
of Logical Drives splitting the filesystems between them.

For any server, this value may need to be altered to find the best
optimization, if the server is doing a combination of database and
i/o work.

General speed testing, other than installing and testing your
application, would be:

dd if=/dev/zero of=/<filesystem>/tmp/testfile bs=1024 count=5000000

(creates a 5GB file)

This will monitor the timings of any differences set; use
"sar -d" to monitor disk activity of each logical disk.

Also, before the server goes into production, remove disk(s) from
the RAID configurations to ensure that the RAID controller detects
that a disk has failed and that when it is re-inserted the RAID is
successfully rebuilt.

Once in production, you may wish to look at the disk fragmentation
options available with the "fsadm" command, eg.:

fsadm -p 1 -e -s -v /<filesystem>
fsadm -p 1 -D -d -s -v /<filesystem>

NOTE: Even if you optimally tune your vxfs filesystem, you might still
encounter performance problem when restoring from tape a large
number of small files. This overhead is only due to the vxfs
design. For instance, while using cpio to restore around 300,000
files with size of 4-14k, it has been reported that a drop in
performance was experienced from a 1-2M transfer rate (tape
specification) to a 500K transfer rate.

Linux联盟收集整理

频道声明:本频道的文章除部分特别声明禁止转载的专稿外,可以自由转载.但请务必注明出出处和原始作者 文章版权归本频道与文章作者所有.对于被频道转载文章的个人和网站,我们表示深深的谢意。

原始作者:佚名 录入时间:2007-3-31 2:41:03
信息来源:不详 投稿信箱:itqoo@126.com
教程录入:itqoo    责任编辑:itqoo 
  • 上一个教程:

  • 下一个教程:
  • 【字体: 】【发表评论】【加入收藏】【告诉好友】【打印此文】【关闭窗口
      网友评论:(只显示最新10条。评论内容只代表网友观点,与本站立场无关!)
    - 关于我们 - 合作伙伴 - 友情链接 - 广告刊登 - 投稿热线 - 在线留言版权声明联系方式 -
    IT公社版权所有 粤ICP备05127012号
    Copyrigh@2005-2006 itqoo.com.Inc All Rights Reserved  推荐分辨率 1024*768
    联系站长:E-Mail:itqoo@126.com     MSN:urchincc@hotmail.com    QQ:点击这里给我发消息
    特别感谢:亿太网络提供空间支持