Sponsored Content
Full Discussion: POWER6 VIO Failover
Operating Systems AIX POWER6 VIO Failover Post 302315286 by filosophizer on Tuesday 12th of May 2009 03:57:57 AM
Old 05-12-2009
thanks for your quick answer.

Okay, that would help me have the LPAR alive.. thru the AIX O/S

how about the SAN disks ?

From my DS8000 i have created logical disks and assigned to VIO_SERVER_1
Create Virtual SCSI Adapter on VIO_SERVER_1 and LPAR_1 + LPAR_2 + LPAR_3 + LPAR_4

Allocation
VIO_SERVER_1 disk10 (From SAN) given to LPAR_1
VIO_SERVER_1 disk11 (From SAN) given to LPAR_2
VIO_SERVER_1 disk12 (From SAN) given to LPAR_3
VIO_SERVER_1 disk13 (From SAN) given to LPAR_4

Now if the Vio_server_1 goes down all those disks will disappear from LPAR_1 + LPAR_2 + LPAR_3 + LPAR_4

1) How can I make failover or redundancy for it with VIO_Server_2 (other than Mirroring)

2) Can I use Mobility under HMC to move the LPAR Partition under the same Managed system to another VIO Server (in my case VIO_SERVER_2 ? )

thanks
 

9 More Discussions You Might Find Interesting

1. AIX

Oracle 10G best practices on Power6 AIX5.3

Can anyone point me to any best practices for partitioning, resource prerequisites, and implementation of Oracle 10G release 2 with RAC on 2 power6 550's running AIX5.3 as a cluster? (1 Reply)
Discussion started by: JodyTek
1 Replies

2. AIX

Power6 Virtual Fibre Channel Adapter

Hello, Searched in all IBM Redbooks and on the internet and couldn't find anything about the new feature of POWER 6 which Virtual Fibre ( Fiber ) channel adapter. It is similar to virtual scsi adapter. In my client partition I created the virtual Fibre Adapter mapped it with the VIO... (1 Reply)
Discussion started by: filosophizer
1 Replies

3. AIX

vio server and vio client

Hi, I want to know wheather partition size for installation of vio client can be specified on vio server example If I am installing vio server on blade with 2*300gb hard disk,after that I want to create 2 vio client (AIX Operating system) wheather I can specify hard disk size while... (1 Reply)
Discussion started by: manoj.solaris
1 Replies

4. AIX

AIX 6.1 Power6 - Sys CPU utilization twice that of User

Hello, We just purchased two new 4-way (one active one failover) 5Ghz Power6 Servers (failover) with 64GB RAM (32GB per node) runing AIX 6.1 with two LPARs per node connected to our SAN with two 4GB HBAs. The PROD LPAR has 2 dedicated CPUs (4 virtual) and the TEST LPAR has 2 dedicated CPUs. ... (3 Replies)
Discussion started by: troym72
3 Replies

5. AIX

HACMP with VIO, service IP failover

Would anyone please kindly help to solve this problem... An LPAR with the below network configuration. ent0 and ent1 are logical lan (virtual ethernet) from VIO SEA. en0 1.2.3.4 <- boot ip 192.168.1.1 <- persistent ip 192.168.1.10 <- service ip en1 11.22.33.44 <- boot ip When I... (6 Replies)
Discussion started by: skeyeung
6 Replies

6. AIX

vio server ethernet to vio client ethernet(concepts confusing)

Hi In the vio server when I do # lsattr -El hdisk*, I get a PVID. The same PVID is also seen when I put the lspv command on the vio client partition. This way Im able to confirm the lun using the PVID. Similarly how does the vio client partition gets the virtual ethernet scsi client adapter... (1 Reply)
Discussion started by: newtoaixos
1 Replies

7. AIX

Power6 vs. Power7 hardware performance

I know I will get blasted for posting here, not know where to post this, however, I have performance question between the 2 platforms. Not knowing the exact processors in each box, but the Power6 Platform clock speed is 4400 (?? at least what was told to me), and the Power7 clock speed is 3500.... (5 Replies)
Discussion started by: mrmurdock
5 Replies

8. AIX

How to get power6 power FRU?

how to get power6 power FRU? the power5 can get by this command: lscfg -vp | grep -p 'AC PS' | grep FRU however, the power6 machine cannot get any info for that command. thanks (1 Reply)
Discussion started by: rainbow_bean
1 Replies

9. AIX

Hard drive compatibility for POWER6 p520

Hi, I have recently inherited an old p520 from work running AIX 6.1, based on the POWER6 CPU. I'm planning to play around with it and use it to learn the system, so this is a purely personal project. The machine is not under a support contract any more. I am looking to replace one of the disks... (11 Replies)
Discussion started by: topcat
11 Replies
Data::ObjectDriver::Driver::Partition(3pm)		User Contributed Perl Documentation		Data::ObjectDriver::Driver::Partition(3pm)

NAME
Data::ObjectDriver::Driver::Partition - base class for partitioned object drivers SYNOPSIS
package SomeObject; __PACKAGE__->install_properties({ ... primary_key => 'id', driver => Data::ObjectDriver::Driver::Partition->new(get_driver => &find_partition), }); # Say we have a list of 5 arrayrefs of the DBI driver information. my @DBI_INFO; sub find_partition { my ($part_key, $args) = @_; my $id; if (ref $terms && ref $terms eq 'HASH') { # This is a search($terms, $args) call. my $terms = $part_key; $id = $terms->{id} or croak "Can't determine partition from a search() with no id field"; } else { # This is a lookup($id) or some method invoked on an object where we know the ID. my $id = $part_key; } # "ID modulo N" is not a good partitioning strategy, but serves as an example. my $partition = $id % 5; return Data::ObjectDriver::Driver::DBI->new( @{ $DBI_INFO[$partition] } ); } DESCRIPTION
Data::ObjectDriver::Driver::Partition provides the basic structure for partitioning objects into different databases. Using partitions, you can horizontally scale your application by using different database servers to hold sets of data. To partition data, you need a certain criteria to determine which partition data goes in. Partition drivers use a "get_driver" function to find the database driver for the correct partition, given either the arguments to a "search()" or the object's primary key for a "lookup()", "update()", etc where the key is known. SUGGESTED PRACTICES
While you can use any stable, predictable method of selecting the partition for an object, the most flexible way is to keep an unpartitioned table that maps object keys to their partitions. You can then look up the appropriate record in your get_driver method to find the partition. For many applications, you can partition several classes of data based on the ID of the user account that "owns" them. In this case, you would include the user ID as the first part of a complex primary key. Because multiple objects can use the same partitioning scheme, often Data::ObjectDriver::Driver::Partition is subclassed to define the "get_driver" function once and automatically specify it to the Data::ObjectDriver::Driver::Partition constructor. Note these practices are codified into the Data::ObjectDriver::Driver::SimplePartition class. USAGE
"Data::ObjectDriver::Driver::Partition->new(%params)" Creates a new partitioning driver. The required members of %params are: o "get_driver" A reference to a function to be used to retrieve for a given object or set of search terms. Your function is invoked as either: o "get_driver(\%terms, \%args)" Return a driver based on the given "search()" parameters. o "get_driver($id)" Return a driver based on the given object ID. Note that $id may be an arrayref, if the class was defined with a complex primary key. o "pk_generator" A reference to a function that, given a data object, generates a primary key for it. This is the same "pk_generator" given to "Data::ObjectDriver"'s constructor. "$driver->search($class, $terms, $args)" "$driver->lookup($class, $id)" "$driver->lookup_multi($class, @ids)" "$driver->exists($obj)" "$driver->insert($obj)" "$driver->update($obj)" "$driver->remove($obj)" "$driver->fetch_data($what)" Performs the named action, by passing these methods through to the appropriate database driver as determined by $driver's "get_driver" function. DIAGNOSTICS
No errors are created by Data::ObjectDriver::Driver::Partition itself. Errors may come from a specific partitioning subclass or the driver for a particular database. BUGS AND LIMITATIONS
There are no known bugs in this module. SEE ALSO
Data::ObjectDriver::Driver::SimplePartition LICENSE
Data::ObjectDriver is free software; you may redistribute it and/or modify it under the same terms as Perl itself. AUTHOR &; COPYRIGHT Except where otherwise noted, Data::ObjectDriver is Copyright 2005-2006 Six Apart, cpan@sixapart.com. All rights reserved. perl v5.12.4 2011-08-29 Data::ObjectDriver::Driver::Partition(3pm)
All times are GMT -4. The time now is 11:54 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy