Sponsored Content
Operating Systems Linux Red Hat HA Cluster solution for Linux - which one to use? Post 302444096 by pshaikh on Wednesday 11th of August 2010 01:03:27 AM
Old 08-11-2010
Bug HA Cluster solution for Linux - which one to use?

Hi all experts,

I need your kind suggestions or feedback on choice of clustering software for red hat linux nodes running certain applications which I need to make highly available.

Minimum requirement is 2 nodes; all nodes shall be active-active running distinct applications e.g. node 1 runs application ABC and node 2 runs application PQR, node 1 is back up node for PQR and node 2 for ABC. Node 1 and node 2 do not have any shared storage required, they access back end database which is protected by Oracle's dataguard.

I need to have cost-effective HA with minimum downtime. There are various HA solutions available in market - SteelEye, Veritas Cluster, Red Hat cluster suite, IBM HACMP etc. and I have almost narrowed down to Red Hat Cluster(for it being cheaper) vs Veritas (for it being feature rich).

Any experiences with clustering? Any pros and cons of these two cluster software (with references would be appreciated) would be of great help?

Dear mods, if this thread is not suitable for this sub-forum; kindly advise where to post within this forum
 

5 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Clustering solution for RH Linux AS and Solaris x86/AMD 64

Dear All Experts, Would like to know the maturity/ stability of Redhat Linux AS 3.0 and Solaris. My organization need to setup cluster solution. We are well-versed with Veritas Cluster on Solaris. We are thinking of waiting for certification support of the various ISV like Oracle, Veritas... (3 Replies)
Discussion started by: izy100
3 Replies

2. Linux

Linux as a NAS solution?

All, I am most familiar with Solaris, and I am in the process of learning Linux (Fedora 5), and one of my tasks is to replace our current NAS solution. We currently use EMC Celerra, but it is way too expensive for what we use it for. So I have looked into Linux. We mostly we have a Windows... (1 Reply)
Discussion started by: kjbaumann
1 Replies

3. Red Hat

Mail solution for Linux - Postfix

Hi , I am a complete newbie to linux, I have been given a job to install a mail solution (postfix if possible) I would like to know how should I go about installing..) Can any one provide me some steps to go about it.. i have read about postfix and the installation steps, it seems there are... (1 Reply)
Discussion started by: anilhk
1 Replies

4. High Performance Computing

Linux cluster

Hi, I am not sure if the term "cluster" fits my situation or not. I have 5 Linux computers, each has different a host-name, and my users have to remember those the computer names to login and find out which computers have free CPUs, so they can run their jobs on those computers have free CPUs. ... (4 Replies)
Discussion started by: hiepng
4 Replies

5. Red Hat

Free Cluster Solution for RHEL5

Can some one tell me free cluster solution avaialable for RHEL5 we just want to test the clustering on RHEL. (6 Replies)
Discussion started by: fugitive
6 Replies
Bio::Cluster::SequenceFamily(3pm)			User Contributed Perl Documentation			 Bio::Cluster::SequenceFamily(3pm)

NAME
Bio::Cluster::SequenceFamily - Sequence Family object SYNOPSIS
use Bio::SeqIO; use Bio::Cluster::SequenceFamily; use File::Spec; my $file = File::Spec->catfile('t','data','swiss.dat'); my $seqio= Bio::SeqIO->new(-format => 'swiss', -file => $file); my @mem; while(my $seq = $seqio->next_seq){ push @mem, $seq; } #create the family my $family = Bio::Cluster::SequenceFamily->new( -family_id=>"Family_1", -description=>"Family Description Here", -annotation_score=>"100", -members=>@mem); #access the family foreach my $mem ($family->get_members){ print $mem->display_id." ".$mem->desc." "; } #select members if members have a Bio::Species Object my @mem = $family->get_members(-binomial=>"Homo sapiens"); @mem = $family->get_members(-ncbi_taxid => 9606); @mem = $family->get_members(-common_name=>"Human"); @mem = $family->get_members(-species=>"sapiens"); @mem = $family->get_members(-genus=>"Homo"); DESCRIPTION
This is a simple Family object that may hold any group of object. For more specific families, one should derive from FamilyI. FEEDBACK
Email bioperl-l@bioperl.org for support and feedback. Mailing Lists User feedback is an integral part of the evolution of this and other Bioperl modules. Send your comments and suggestions preferably to one of the Bioperl mailing lists. Your participation is much appreciated. bioperl-l@bioperl.org - General discussion http://bioperl.org/wiki/Mailing_lists - About the mailing lists Support Please direct usage questions or support issues to the mailing list: bioperl-l@bioperl.org rather than to the module maintainer directly. Many experienced and reponsive experts will be able look at the problem and quickly address it. Please include a thorough description of the problem with code and data examples if at all possible. Reporting Bugs Report bugs to the Bioperl bug tracking system to help us keep track the bugs and their resolution. Bug reports can be submitted via the web: https://redmine.open-bio.org/projects/bioperl/ AUTHOR - Shawn Hoon Email shawnh@fugu-sg.org APPENDIX
The rest of the documentation details each of the object methods. Internal methods are usually preceded with a "_". new Title : new Usage : my $family = Bio::Cluster::SequenceFamily->new( -family_id=>"Family_1", -description=>"Family Description Here", -annotation_score=>"100", -members=>@mem); Function: Constructor for SequenceFamily object Returns : Bio::Cluster::SequenceFamily object See Bio::Cluster::SequenceFamily. version Title : version Usage : $family->version("1.0"); Function: get/set for version Returns : a string version of the family generated. annotation_score Title : annotation_score Usage : $family->annotation_score(100); Function: get/set for annotation_score which represent the confidence in which the consensus description has been assigned to the family. Returns : Bio::SimpleAlign See Bio::SimpleAlign alignment Title : alignment Usage : $family->alignment($align); Function: get/set for an alignment object representing the multiple alignment of the members of the family. Returns : Bio::SimpleAlign See Bio::SimpleAlign tree Title : tree Usage : $family->tree($tree); Function: get/set for an tree object representing the phylogenetic tree of the family. Returns : Bio::Tree See Bio::Tree Bio::Cluster::FamilyI methods family_score Title : family_score Usage : Bio::Cluster::FamilyI->family_score(95); Function: get/set for the score of algorithm used to generate the family if present This is aliased to cluster_score(). Returns : the score Args : the score family_id Title : family_id Usage : $family->family_id("Family_1"); Function: get/set for family id This is aliased to display_id(). Returns : a string specifying identifier of the family Bio::ClusterI methods display_id Title : display_id Usage : Function: Get/set the display name or identifier for the cluster Returns : a string Args : optional, on set the display ID ( a string) description Title : description Usage : $fam->description("POLYUBIQUITIN") Function: get/set for the consensus description of the cluster Returns : the description string Args : Optional the description string get_members Title : get_members Usage : Valid criteria: -common_name -binomial -ncbi_taxid -organelle -genus $family->get_members(-common_name =>"human"); $family->get_members(-species =>"homo sapiens"); $family->get_members(-ncbi_taxid => 9606); For now, multiple critieria are ORed. Will return all members if no criteria are provided. Function: get members using methods from L<Bio::Species> the phylogenetic tree of the family. Returns : an array of objects that are member of this family. size Title : size Usage : $fam->size(); Function: get/set for the size of the family, calculated from the number of members Returns : the size of the family Args : cluster_score Title : cluster_score Usage : $fam->cluster_score(100); Function: get/set for cluster_score which represent the score in which the clustering algorithm assigns to this cluster. Returns : a number Implementation specific methods These are mostly for adding/removing/changing. add_members Title : add_members Usage : $fam->add_member([$seq1,$seq1]); Function: add members to a family Returns : Args : the member(s) to add, as an array or arrayref remove_members Title : remove_members Usage : $fam->remove_members(); Function: remove all members from a family Returns : the previous array of members Args : none members Title : members Usage : $members = $fam->members([$seq1,$seq1]); Function: Deprecated. Use add_members() or get_members() instead perl v5.14.2 2012-03-02 Bio::Cluster::SequenceFamily(3pm)
All times are GMT -4. The time now is 12:16 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy