List Info

Thread: HP ProLiant DL385 G2 Server




HP ProLiant DL385 G2 Server
country flaguser name
Lithuania
2007-08-30 01:16:48
Hi,

I'm running FreeBSD 6.2-RELEASE on this server.

# dmesg|grep ciss
ciss0: <HP Smart Array P400> port 0x4000-0x40ff mem
0xfde00000-0xfdefffff,0xfddf0000-0xfddf0fff irq 18 at device
0.0 on pci6
ciss0: [GIANT-LOCKED]
da0 at ciss0 bus 0 target 0 lun 0
da1 at ciss0 bus 0 target 1 lun 0

# camcontrol devlist -v
scbus0 on ciss0 bus 0:
<COMPAQ RAID 1  VOLUME OK>         at scbus0 target 0
lun 0 (pass0,da0)
<COMPAQ RAID 5  VOLUME OK>         at scbus0 target 1
lun 0 (pass1,da1)
scbus1 on ciss0 bus 32:
scbus-1 on xpt0 bus 0:
<  >                               at scbus-1 target
-1 lun -1 (xpt0)

For first everything seems to be fine, but the problem is
while copying 
files from da0 to da1, take a look at the statistics:

File: 635 MB

copy from da0 to da1 = 58sec.
copy from da1 to da0 = ~9sec.

Is this normal or not? I know that it's RAID-5 but.., I
think it takes 
too long to copy from da0 to da1.

By the way: how to turn on those led's on the server?
Because all of the 
"power supply, inter lock, over temp..." and so on
are not working also 
"UID" is also off.

_______________________________________________
freebsd-proliantfreebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-prol
iant
To unsubscribe, send any mail to
"freebsd-proliant-unsubscribefreebsd.org"

Re: HP ProLiant DL385 G2 Server
user name
2007-08-30 06:44:18
On Thu, Aug 30, 2007 at 09:16:48AM +0300, Paulius Stakauskas
wrote:
> Hi,
> 
> I'm running FreeBSD 6.2-RELEASE on this server.
> 
> # dmesg|grep ciss
> ciss0: <HP Smart Array P400> port 0x4000-0x40ff
mem
> 0xfde00000-0xfdefffff,0xfddf0000-0xfddf0fff irq 18 at
device 0.0 on pci6
> ciss0: [GIANT-LOCKED]
> da0 at ciss0 bus 0 target 0 lun 0
> da1 at ciss0 bus 0 target 1 lun 0
> 
> # camcontrol devlist -v
> scbus0 on ciss0 bus 0:
> <COMPAQ RAID 1  VOLUME OK>         at scbus0
target 0 lun 0 (pass0,da0)
> <COMPAQ RAID 5  VOLUME OK>         at scbus0
target 1 lun 0 (pass1,da1)
> scbus1 on ciss0 bus 32:
> scbus-1 on xpt0 bus 0:
> <  >                               at scbus-1
target -1 lun -1 (xpt0)
> 
> For first everything seems to be fine, but the problem
is while copying 
> files from da0 to da1, take a look at the statistics:
> 
> File: 635 MB
> 
> copy from da0 to da1 = 58sec.
> copy from da1 to da0 = ~9sec.
> 
> Is this normal or not? I know that it's RAID-5 but.., I
think it takes 
> too long to copy from da0 to da1.

That's indeed what I had too: (a posting from an internal
mailinglist
at february 2006)

On a RAID0 disk, 16384 blocks of 16384 bytes:

    [~] rootcleo>dd if=/dev/zero of=/mnt/foo bs=16384
count=16384
    16384+0 records in
    16384+0 records out
    268435456 bytes transferred in 2.167275 secs (123858514
bytes/sec)

On a RAID1 disk, 16384 blocks of 16384 bytes:

    [~] rootjanus>dd if=/dev/zero of=/usr/foo bs=16384
count=16384
    16384+0 records in
    16384+0 records out
    268435456 bytes transferred in 4.020692 secs (66763495
bytes/sec)

On a RAID5 disk, 16384 blocks of 16384 bytes:

    [~] rootjanus>dd if=/dev/zero of=/mnt/databases/foo
bs=16384 count=16384
    16384+0 records in
    16384+0 records out
    268435456 bytes transferred in 20.688034 secs (12975397
bytes/sec)

On a RAID5 disk, 16384 blocks of 16384 bytes:

    [~] rootcleo>dd if=/dev/zero of=/usr/foo bs=16384
count=16384
    16384+0 records in
    16384+0 records out
    268435456 bytes transferred in 17.556463 secs (15289837
bytes/sec)

RAID0:          2.2 secs
RAID1:          4.0 secs
RAID5:          17.6 / 20.7 secs




A little bit bigger: 65535 64K byte blocks: (yes that's
16x)

RAID0:
    [~] rootcleo>dd if=/dev/zero of=/mnt/foo bs=64k
count=65535
    65535+0 records in
    65535+0 records out
    4294901760 bytes transferred in 35.805593 secs
(119950583 bytes/sec)

RAID1:
    [~] rootjanus>dd if=/dev/zero of=/usr/foo bs=64k
count=65535
    65535+0 records in
    65535+0 records out
    4294901760 bytes transferred in 68.338178 secs (62847765
bytes/sec)

RAID5:
    [~] rootjanus>dd if=/dev/zero of=/mnt/databases/foo bs=64k
count=65535
    65535+0 records in
    65535+0 records out
    4294901760 bytes transferred in 337.764817 secs
(12715658 bytes/sec)

    [~] rootcleo>dd if=/dev/zero of=/usr/foo bs=64k
count=65535
    65535+0 records in
    65535+0 records out
    4294901760 bytes transferred in 271.828036 secs
(15800069 bytes/sec)

RAID0:          35.8 secs
RAID1:          68 secs
RAID5:          271 / 337 secs


At the end we just throw our databases on RAID1 partitions

Edwin

-- 
Edwin Groothuis      |            Personal website: http://www.mavetju.org
edwinmavetju.org    |              Weblog: http://www.mavetju.org
/weblog/
_______________________________________________
freebsd-proliantfreebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-prol
iant
To unsubscribe, send any mail to
"freebsd-proliant-unsubscribefreebsd.org"

Re: HP ProLiant DL385 G2 Server
user name
2007-08-30 08:12:05
You will see improved write performance on RAID5 if you
install the
BBWC (Battery-backed write cache) option; but maybe you
already have
that installed?

On 8/30/07, Paulius Stakauskas <paulius.stakauskasagservice.lt> wrote:
> Hi,
>
> I'm running FreeBSD 6.2-RELEASE on this server.
>
> # dmesg|grep ciss
> ciss0: <HP Smart Array P400> port 0x4000-0x40ff
mem
> 0xfde00000-0xfdefffff,0xfddf0000-0xfddf0fff irq 18 at
device 0.0 on pci6
> ciss0: [GIANT-LOCKED]
> da0 at ciss0 bus 0 target 0 lun 0
> da1 at ciss0 bus 0 target 1 lun 0
>
> # camcontrol devlist -v
> scbus0 on ciss0 bus 0:
> <COMPAQ RAID 1  VOLUME OK>         at scbus0
target 0 lun 0 (pass0,da0)
> <COMPAQ RAID 5  VOLUME OK>         at scbus0
target 1 lun 0 (pass1,da1)
> scbus1 on ciss0 bus 32:
> scbus-1 on xpt0 bus 0:
> <  >                               at scbus-1
target -1 lun -1 (xpt0)
>
> For first everything seems to be fine, but the problem
is while copying
> files from da0 to da1, take a look at the statistics:
>
> File: 635 MB
>
> copy from da0 to da1 = 58sec.
> copy from da1 to da0 = ~9sec.
>
> Is this normal or not? I know that it's RAID-5 but.., I
think it takes
> too long to copy from da0 to da1.
>
> By the way: how to turn on those led's on the server?
Because all of the
> "power supply, inter lock, over temp..." and
so on are not working also
> "UID" is also off.
_______________________________________________
freebsd-proliantfreebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-prol
iant
To unsubscribe, send any mail to
"freebsd-proliant-unsubscribefreebsd.org"

Re: HP ProLiant DL385 G2 Server
country flaguser name
Lithuania
2007-08-30 08:32:31
John Cagle wrote:
> You will see improved write performance on RAID5 if you
install the
> BBWC (Battery-backed write cache) option; but maybe you
already have
> that installed?
>
> On 8/30/07, Paulius Stakauskas
<paulius.stakauskasagservice.lt> wrote:
>   
>> Hi,
>>
>> I'm running FreeBSD 6.2-RELEASE on this server.
>>
>> # dmesg|grep ciss
>> ciss0: <HP Smart Array P400> port
0x4000-0x40ff mem
>> 0xfde00000-0xfdefffff,0xfddf0000-0xfddf0fff irq 18
at device 0.0 on pci6
>> ciss0: [GIANT-LOCKED]
>> da0 at ciss0 bus 0 target 0 lun 0
>> da1 at ciss0 bus 0 target 1 lun 0
>>
>> # camcontrol devlist -v
>> scbus0 on ciss0 bus 0:
>> <COMPAQ RAID 1  VOLUME OK>         at scbus0
target 0 lun 0 (pass0,da0)
>> <COMPAQ RAID 5  VOLUME OK>         at scbus0
target 1 lun 0 (pass1,da1)
>> scbus1 on ciss0 bus 32:
>> scbus-1 on xpt0 bus 0:
>> <  >                               at scbus-1
target -1 lun -1 (xpt0)
>>
>> For first everything seems to be fine, but the
problem is while copying
>> files from da0 to da1, take a look at the
statistics:
>>
>> File: 635 MB
>>
>> copy from da0 to da1 = 58sec.
>> copy from da1 to da0 = ~9sec.
>>
>> Is this normal or not? I know that it's RAID-5
but.., I think it takes
>> too long to copy from da0 to da1.
>>
>> By the way: how to turn on those led's on the
server? Because all of the
>> "power supply, inter lock, over temp..."
and so on are not working also
>> "UID" is also off.
>>     
>
>
>   
I have seen info about BBWC on HP. I haven't bought that
server by 
myself, so I'm not sure at this time, but it wasn't included
in base 
configuration as far as I know. How to check if it's
installed or not?
_______________________________________________
freebsd-proliantfreebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-prol
iant
To unsubscribe, send any mail to
"freebsd-proliant-unsubscribefreebsd.org"

[1-4]

about | contact  Other archives ( Real Estate discussion Medical topics )