- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HP-UX block size
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
Forums
Discussions
Discussions
Discussions
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
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
10-29-2001 10:12 AM
10-29-2001 10:12 AM
HP-UX block size
Here are the Oracle parameters that we are trying to set:
db_multiblock_read_count
db_block_size
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2001 10:15 AM
10-29-2001 10:15 AM
Re: HP-UX block size
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2001 10:17 AM
10-29-2001 10:17 AM
Re: HP-UX block size
f_frsize is your os block size.
Hope this helps.
...jcd...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2001 10:18 AM
10-29-2001 10:18 AM
Re: HP-UX block size
look for the bytes per sector.
Craig
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2001 10:21 AM
10-29-2001 10:21 AM
Re: HP-UX block size
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2001 10:35 AM
10-29-2001 10:35 AM
Re: HP-UX block size
man newfs_vxfs #look at the -b option
...jcd...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2001 10:45 AM
10-29-2001 10:45 AM
Re: HP-UX block size
Have a look at the threads below for more info.
http://us-support.external.hp.com/cki/bin/doc.pl/sid=42ce12d9151468addb/screen=ckiDisplayDocument?docId=200000024669371
http://us-support.external.hp.com/cki/bin/doc.pl/sid=42ce12d9151468addb/screen=ckiDisplayDocument?docId=200000046860490
hope this helps.
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2001 11:17 AM
10-29-2001 11:17 AM
Re: HP-UX block size
The block size which
a filesystem uses can be
found by :
fstyp -v
or df -g
Yes, this size can vary
from Filesystem to Filesystem,
depending on how it was set
during the creation.
When the Filesystem is
created, we have the choice
of setting the block size
by using the -b option of
newsfs.
eg: newfs -b 8192 creates
a 8K block size filesystem.
The default for VXFS is
1Kb block size!
db_block_size should be
a multiple of the filesystem
block size. So, if your
FS block size is 4KB, then
the db_block_size can be
4KB or 8Kb.
For databases, it is preferable to create filesystems with 4KB block
size or more.
the
db_multiblock_read_count sets
the number of db_blocks which
a database will read in advance.
HTH
raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2001 02:56 PM
10-29-2001 02:56 PM
Re: HP-UX block size
I would say; set the db_block_size to 8k and don't think more about it.
This is a commonly used value that fits most needs, and is a multiple of the different used filesystem blocksizes. If designing a database for DSS /Datawarehous applications, larger values might be considered (16k, 32k).
I do not think the effect in having a matcing filesystem block to the Oracle block gives any noticeable effect on performance, as long as the Oracle block is the bigger (and a multiple).
This due to the fact that when the Oracle datafile / tablespace is created the filestructure is put in place and will not change afterwards. When Oracle does it reading, Oracle blocks that consists of contnous filesblocks, will be fetched from disk to accomodate the query.
If this is one ore more filesystem blocks makes a to small difference in normal circumstances.
What has to be though of, and this is from the DBA perspective is having Oracle fetching the correct blocks, and not to many of them (ie not performing to many tablescans).
Here comes the correct indexing and table analyze to get the optimizer running at its best.
The db_multiblock_read_count value can give more tablescans when set to high. 32 is the number I've seen most around.
Heard that in 9i this setting dosen't effect the tablescans anymore, but I'm not sure.
What is said from Oracle themself is that a out of the box installation of Oracle works well in the wast majority of appliances, and that the application tuning (ie sql statements) that gives the most tuning effect.
Andreas