- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- maximum block size for vxfs filesystem
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-29-2002 12:30 PM
тАО03-29-2002 12:30 PM
maximum block size for vxfs filesystem
HP-UX 11.i
Extent based striping
Oracle 9.0.1
I have been asked by my Oracle DBA to create vxfs filesystems using 16K block sizing. My volume group is set up with the default 4MB Physical Extent Size.
When I try to make the filesystem this is the response I get:
#newfs -F vxfs -b 16384 /dev/vgdss1/rpdss01
vxfs mkfs: bsize must be a power of 2 >= 1024 and <= 8192
Can anyone please tell me how I can create a filesystem with 16K block size? Is this possible with vxfs? Do I need to change a kernel parameter to make this work?
Any answers or documention clarifying my question would be appreciated.
Thanks
Kirk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-29-2002 01:23 PM
тАО03-29-2002 01:23 PM
Re: maximum block size for vxfs filesystem
# fstyp -v /dev/vgXX/rlvolX
on any of your existing vxfs lvol and look for
the value of "f_bsize" you'll see it is set to 8192.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-30-2002 05:30 AM
тАО03-30-2002 05:30 AM
Re: maximum block size for vxfs filesystem
Just make it 8k as maximum , Oracle Block is multiple of OS block.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-31-2002 02:02 AM
тАО03-31-2002 02:02 AM
Re: maximum block size for vxfs filesystem
The maximum value you can specify is 8192. from the man page of mkfs_vxfs :
***
bsize=n n is the block size for files on the file system and represents the smallest amount of disk space that will be allocated to a file.
n must be a power of 2 selected from the range 1024 to 8192. The default is 1024
***
newfs -F vxfs calls mkfs_vxfs to do the job. and the -b you specify in newfs should be between 1024 to 8192 (powers fo 2).
8KB block size is good enough. It is a close multiple of the oracle Block size .
SK,
Please note that the default for newfs is not 8192! It is 1024 (1Kb) only! . The value which denotes this is f_frsize (and not f_bsize). So, it is always useful to give -b 8192 option while creating a oracle filesystem.
HTH
raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-31-2002 10:27 AM
тАО03-31-2002 10:27 AM
Re: maximum block size for vxfs filesystem
we had that kind of discussion recently over there:
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x6dc0c8ecad09d6118ff40090279cd0f9,00.html
HTH,
Wodisch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-31-2002 11:35 AM
тАО03-31-2002 11:35 AM