Java Doc for RAIDb2_WRR.java in  » Database-JDBC-Connection-Pool » sequoia-2.10.9 » org » continuent » sequoia » controller » loadbalancer » raidb2 » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Database JDBC Connection Pool » sequoia 2.10.9 » org.continuent.sequoia.controller.loadbalancer.raidb2 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.continuent.sequoia.controller.loadbalancer.raidb2.RAIDb2
   org.continuent.sequoia.controller.loadbalancer.raidb2.RAIDb2_WRR

RAIDb2_WRR
public class RAIDb2_WRR extends RAIDb2 (Code)
RAIDb-2 Weighted Round Robin load balancer.

The read requests coming from the request manager are sent to the backend nodes using a weighted round robin. Write requests are broadcasted to all backends.

The weighted round-robin works as follows. If the backend weight is set to 0, no read requests are sent to this backend unless it is the last one available on this controller. The load balancer maintains a current weight that is increased by one each time a new read request is executed.
If backend1 has a weight of 5 and backend2 a weight of 10, backend1 will receive the 5 first requests and backend2 the next 10 requests. Then we restart with backend1. Be careful that large weight values will heavily load backends in turn but will probably not balance the load in an effective way.
author:
   Emmanuel Cecchet
author:
   Julie Marguerite
version:
   1.0




Constructor Summary
public  RAIDb2_WRR(VirtualDatabase vdb, WaitForCompletionPolicy waitForCompletionPolicy, CreateTablePolicy createTablePolicy)
     Creates a new RAIDb-2 Weighted Round Robin request load balancer.

Method Summary
public  StringgetInformation()
     Gets information about the request load balancer.
public  StringgetRaidb2Xml()
    
public  ExecuteResultreadOnlyCallableStatementExecute(StoredProcedure proc, MetadataCache metadataCache)
     Chooses the node to execute the stored procedure using a round-robin algorithm.
public  ControllerResultSetreadOnlyCallableStatementExecuteQuery(StoredProcedure proc, MetadataCache metadataCache)
     Chooses the node to execute the stored procedure using a round-robin algorithm.
public  voidsetWeight(String name, int w)
    
public  ControllerResultSetstatementExecuteQuery(SelectRequest request, MetadataCache metadataCache)
    


Constructor Detail
RAIDb2_WRR
public RAIDb2_WRR(VirtualDatabase vdb, WaitForCompletionPolicy waitForCompletionPolicy, CreateTablePolicy createTablePolicy) throws Exception(Code)
Creates a new RAIDb-2 Weighted Round Robin request load balancer.
Parameters:
  vdb - The virtual database this load balancer belongs to.
Parameters:
  waitForCompletionPolicy - How many backends must complete beforereturning the result?
Parameters:
  createTablePolicy - The policy defining how 'create table' statementsshould be handled
exception:
  Exception - if an error occurs




Method Detail
getInformation
public String getInformation()(Code)
Gets information about the request load balancer. String containing information



getRaidb2Xml
public String getRaidb2Xml()(Code)

See Also:   org.continuent.sequoia.controller.loadbalancer.raidb2.RAIDb2.getRaidb2Xml



readOnlyCallableStatementExecute
public ExecuteResult readOnlyCallableStatementExecute(StoredProcedure proc, MetadataCache metadataCache) throws SQLException(Code)
Chooses the node to execute the stored procedure using a round-robin algorithm. If the next node has not the needed stored procedure, we try the next one and so on until a suitable backend is found.
See Also:   org.continuent.sequoia.controller.loadbalancer.AbstractLoadBalancer.readOnlyCallableStatementExecute(org.continuent.sequoia.controller.requests.StoredProcedureorg.continuent.sequoia.controller.cache.metadata.MetadataCache)



readOnlyCallableStatementExecuteQuery
public ControllerResultSet readOnlyCallableStatementExecuteQuery(StoredProcedure proc, MetadataCache metadataCache) throws SQLException(Code)
Chooses the node to execute the stored procedure using a round-robin algorithm. If the next node has not the needed stored procedure, we try the next one and so on until a suitable backend is found.
See Also:   org.continuent.sequoia.controller.loadbalancer.AbstractLoadBalancer.readOnlyCallableStatementExecuteQuery(StoredProcedureMetadataCache)



setWeight
public void setWeight(String name, int w) throws SQLException(Code)

See Also:   org.continuent.sequoia.controller.loadbalancer.AbstractLoadBalancer.setWeight(Stringint)



statementExecuteQuery
public ControllerResultSet statementExecuteQuery(SelectRequest request, MetadataCache metadataCache) throws SQLException(Code)

See Also:   org.continuent.sequoia.controller.loadbalancer.AbstractLoadBalancer.statementExecuteQuery(org.continuent.sequoia.controller.requests.SelectRequestorg.continuent.sequoia.controller.cache.metadata.MetadataCache)



Fields inherited from org.continuent.sequoia.controller.loadbalancer.raidb2.RAIDb2
final protected static int CALLABLE_STATEMENT_EXECUTE(Code)(Java Doc)
final protected static int CALLABLE_STATEMENT_EXECUTE_QUERY(Code)(Java Doc)
protected CreateTablePolicy createTablePolicy(Code)(Java Doc)
protected static Trace logger(Code)(Java Doc)

Methods inherited from org.continuent.sequoia.controller.loadbalancer.raidb2.RAIDb2
public void abort(TransactionMetaData tm) throws SQLException(Code)(Java Doc)
final public void begin(TransactionMetaData tm) throws SQLException(Code)(Java Doc)
public ExecuteResult callableStatementExecute(StoredProcedure proc, MetadataCache metadataCache) throws SQLException, AllBackendsFailedException(Code)(Java Doc)
public ControllerResultSet callableStatementExecuteQuery(StoredProcedure proc, MetadataCache metadataCache) throws SQLException, AllBackendsFailedException(Code)(Java Doc)
public ExecuteUpdateResult callableStatementExecuteUpdate(StoredProcedure proc) throws SQLException, AllBackendsFailedException(Code)(Java Doc)
public void closePersistentConnection(String login, long persistentConnectionId) throws SQLException(Code)(Java Doc)
public void commit(TransactionMetaData tm) throws SQLException(Code)(Java Doc)
public void disableBackend(DatabaseBackend db, boolean forceDisable) throws SQLException(Code)(Java Doc)
public synchronized void enableBackend(DatabaseBackend db, boolean writeEnabled) throws SQLException(Code)(Java Doc)
protected ControllerResultSet executeReadRequestOnBackend(SelectRequest request, DatabaseBackend backend, MetadataCache metadataCache) throws SQLException, UnreachableBackendException(Code)(Java Doc)
protected Object executeStoredProcedureOnBackend(StoredProcedure proc, boolean isExecuteQuery, DatabaseBackend backend, MetadataCache metadataCache) throws SQLException, UnreachableBackendException(Code)(Java Doc)
public ControllerResultSet getPreparedStatementGetMetaData(AbstractRequest request) throws SQLException(Code)(Java Doc)
abstract public String getRaidb2Xml()(Code)(Java Doc)
public String getXmlImpl()(Code)(Java Doc)
public void openPersistentConnection(String login, long persistentConnectionId) throws SQLException(Code)(Java Doc)
public void releaseSavepoint(TransactionMetaData tm, String savepointName) throws SQLException(Code)(Java Doc)
public void rollback(TransactionMetaData tm) throws SQLException(Code)(Java Doc)
public void rollbackToSavepoint(TransactionMetaData tm, String savepointName) throws SQLException(Code)(Java Doc)
public void setSavepoint(TransactionMetaData tm, String savepointName) throws SQLException(Code)(Java Doc)
public ExecuteResult statementExecute(AbstractRequest request, MetadataCache metadataCache) throws SQLException, AllBackendsFailedException(Code)(Java Doc)
abstract public ControllerResultSet statementExecuteQuery(SelectRequest request, MetadataCache metadataCache) throws SQLException(Code)(Java Doc)
public ExecuteUpdateResult statementExecuteUpdate(AbstractWriteRequest request) throws AllBackendsFailedException, SQLException(Code)(Java Doc)
public GeneratedKeysResult statementExecuteUpdateWithKeys(AbstractWriteRequest request, MetadataCache metadataCache) throws AllBackendsFailedException, SQLException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.