/astyanax-core/src/main/java/com/netflix/astyanax/connectionpool/ConnectionPoolMonitor.java

http://github.com/Netflix/astyanax · Java · 222 lines · 39 code · 37 blank · 146 comment · 0 complexity · 0209fa664ad9ad36f0849ec1ff6da9a6 MD5 · raw file

  1. /*******************************************************************************
  2. * Copyright 2011 Netflix
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. ******************************************************************************/
  16. package com.netflix.astyanax.connectionpool;
  17. import java.util.Map;
  18. /**
  19. * Monitoring interface to receive notification of pool events. A concrete
  20. * monitor will make event stats available to a monitoring application and may
  21. * also log events to a log file.
  22. *
  23. * @author elandau
  24. */
  25. public interface ConnectionPoolMonitor {
  26. /**
  27. * Errors trying to execute an operation.
  28. *
  29. * @param reason
  30. * @param host
  31. */
  32. void incOperationFailure(Host host, Exception reason);
  33. long getOperationFailureCount();
  34. /**
  35. * An operation failed but the connection pool will attempt to fail over to
  36. * another host/connection.
  37. */
  38. void incFailover(Host host, Exception reason);
  39. long getFailoverCount();
  40. /**
  41. * Succeeded in executing an operation
  42. *
  43. * @param host
  44. * @param latency
  45. */
  46. void incOperationSuccess(Host host, long latency);
  47. long getOperationSuccessCount();
  48. /**
  49. * Created a connection successfully
  50. */
  51. void incConnectionCreated(Host host);
  52. long getConnectionCreatedCount();
  53. /**
  54. * Closed a connection
  55. *
  56. * @param reason
  57. * TODO: Make the host available to this
  58. */
  59. void incConnectionClosed(Host host, Exception reason);
  60. long getConnectionClosedCount();
  61. /**
  62. * Attempt to create a connection failed
  63. *
  64. * @param host
  65. * @param reason
  66. */
  67. void incConnectionCreateFailed(Host host, Exception reason);
  68. long getConnectionCreateFailedCount();
  69. /**
  70. * Incremented for each connection borrowed
  71. *
  72. * @param host
  73. * Host from which the connection was borrowed
  74. * @param delay
  75. * Time spent in the connection pool borrowing the connection
  76. */
  77. void incConnectionBorrowed(Host host, long delay);
  78. long getConnectionBorrowedCount();
  79. /**
  80. * Incremented for each connection returned.
  81. *
  82. * @param host
  83. * Host to which connection is returned
  84. */
  85. void incConnectionReturned(Host host);
  86. long getConnectionReturnedCount();
  87. /**
  88. * Timeout trying to get a connection from the pool
  89. */
  90. long getPoolExhaustedTimeoutCount();
  91. /**
  92. * Timeout waiting for a response from the cluster
  93. */
  94. long getOperationTimeoutCount();
  95. /**
  96. * @return Count of socket timeouts trying to execute an operation
  97. */
  98. long getSocketTimeoutCount();
  99. /**
  100. * @return Get number of unknown errors
  101. */
  102. long getUnknownErrorCount();
  103. /**
  104. * @return Get number of invalid requests (i.e. bad argument values)
  105. */
  106. long getBadRequestCount();
  107. /**
  108. * @return Count of times no hosts at all were available to execute an operation.
  109. */
  110. long getNoHostCount();
  111. /**
  112. * @return Tracks the number of column not found error
  113. */
  114. long notFoundCount();
  115. /**
  116. * @return Number of times operations were cancelled
  117. */
  118. long getInterruptedCount();
  119. /**
  120. * @return Number of times transport errors occurred
  121. */
  122. long getTransportErrorCount();
  123. /**
  124. * @return Return the number of hosts in the pool
  125. */
  126. long getHostCount();
  127. /**
  128. * Return the number of times a host was added to the pool. This
  129. * number will be incremented multiple times if the same hosts is
  130. * added and removed multiple times.
  131. * A constantly increating number of host added and host removed
  132. * may indicate a problem with the host discovery service
  133. */
  134. long getHostAddedCount();
  135. /**
  136. * Return the number of times any host was removed to the pool. This
  137. * number will be incremented multiple times if the same hosts is
  138. * added and removed multiple times.
  139. * A constantly increating number of host added and host removed
  140. * may indicate a problem with the host discovery service
  141. */
  142. long getHostRemovedCount();
  143. /**
  144. * @return Return the number of times any host was marked as down.
  145. */
  146. long getHostDownCount();
  147. /**
  148. * @return Return the number of active hosts
  149. */
  150. long getHostActiveCount();
  151. /**
  152. * A host was added and given the associated pool. The pool is immutable and
  153. * can be used to get info about the number of open connections
  154. *
  155. * @param host
  156. * @param pool
  157. */
  158. void onHostAdded(Host host, HostConnectionPool<?> pool);
  159. /**
  160. * A host was removed from the pool. This is usually called when a downed
  161. * host is removed from the ring.
  162. *
  163. * @param host
  164. */
  165. void onHostRemoved(Host host);
  166. /**
  167. * A host was identified as downed.
  168. *
  169. * @param host
  170. * @param reason
  171. * Exception that caused the host to be identified as down
  172. */
  173. void onHostDown(Host host, Exception reason);
  174. /**
  175. * A host was reactivated after being marked down
  176. *
  177. * @param host
  178. * @param pool
  179. */
  180. void onHostReactivated(Host host, HostConnectionPool<?> pool);
  181. /**
  182. * @return Return a mapping of all hosts and their statistics
  183. */
  184. Map<Host, HostStats> getHostStats();
  185. }