From 780b92ada9afcf1d58085a83a0b9e6bc982203d1 Mon Sep 17 00:00:00 2001 From: Lorry Tar Creator Date: Tue, 17 Feb 2015 17:25:57 +0000 Subject: Imported from /home/lorry/working-area/delta_berkeleydb/db-6.1.23.tar.gz. --- .../com/sleepycat/db/ReplicationManagerStats.html | 834 ++++++++++++--------- 1 file changed, 469 insertions(+), 365 deletions(-) (limited to 'docs/java/com/sleepycat/db/ReplicationManagerStats.html') diff --git a/docs/java/com/sleepycat/db/ReplicationManagerStats.html b/docs/java/com/sleepycat/db/ReplicationManagerStats.html index 2aaad9e3..1fedd3c0 100644 --- a/docs/java/com/sleepycat/db/ReplicationManagerStats.html +++ b/docs/java/com/sleepycat/db/ReplicationManagerStats.html @@ -1,383 +1,487 @@ - - - - - -ReplicationManagerStats (Oracle - Berkeley DB Java API) - - - - - - - - - - - - -
- - +//--> + + - - - - - - - - - - - - - - - - -
-Berkeley DB
version 5.3.21
-
- + + +
+ + +
+ + + - -
-

- -com.sleepycat.db -
-Class ReplicationManagerStats

-
-java.lang.Object
-  extended by com.sleepycat.db.ReplicationManagerStats
-
-
-
-
public class ReplicationManagerStats
extends Object
- - -

-Replication Manager statistics for a database environment. -

- -

-


- -

- +

+
com.sleepycat.db
+

Class ReplicationManagerStats

+
+
+ +
+
    +
  • +
    +
    +
    public class ReplicationManagerStats
    +extends java.lang.Object
    +
    Replication Manager statistics for a database environment.
    +
  • +
+
+
+
    +
  • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -Method Summary
    - longgetConnectFail() - -
    -          The number of times new connection attempts have failed.
    - longgetConnectionDrop() - -
    -          The number of existing connections that have been dropped since the - statistics were last reset.
    - longgetElectThreads() - -
    -          Number of currently active election threads.
    - longgetMaxElectThreads() - -
    -          Election threads for which space is reserved.
    - longgetMsgsDropped() - -
    -          The number of messages discarded due to queue length overflows.
    - longgetMsgsQueued() - -
    -          The number of messages queued due to a network delay.
    - longgetPermFailed() - -
    -          The number of times a PERM message originating at this site did - not receive sufficient acknowledgement from clients, according to the - configured acknowledgement policy and acknowledgement timeout.
    - StringtoString() - -
    -          For convenience, the ReplicationManagerStats class has a toString method - that lists all the data fields.
    - - - - - - - -
    Methods inherited from class java.lang.Object
    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    -  -

    - +

      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      longgetConnectFail() +
      The number of times an attempt to open a new TCP/IP connection + failed.
      +
      longgetConnectionDrop() +
      The number of existing connections that have been dropped + since the statistics were last reset.
      +
      intgetElectThreads() +
      Number of currently active election threads.
      +
      longgetIncomingMsgsDropped() +
      The number of incoming messages that were dropped because the incoming + queue was full.
      +
      intgetIncomingQueueBytes() +
      Bytes component of the memory consumption for the messages currently + in the incoming queue.
      +
      intgetIncomingQueueGbytes() +
      Gigabytes component of the memory consumption for the messages + currently in the incoming queue.
      +
      intgetMaxElectThreads() +
      The number of election threads for which space is reserved.
      +
      longgetMsgsDropped() +
      The number of outgoing messages that were dropped, because the outgoing + message queue was full.
      +
      longgetMsgsQueued() +
      The number of outgoing messages which could not be transmitted + immediately, due to a full network buffer, and had to be queued for + later delivery.
      +
      longgetPermFailed() +
      The number of times a message critical for maintaining database + integrity (for example, a transaction commit), originating at this site, + did not receive sufficient acknowledgement from clients, according to + the configured acknowledgement policy and acknowledgement timeout
      +
      intgetSiteParticipants() +
      Number of replication group participant sites.
      +
      intgetSiteTotal() +
      Total number of replication group sites.
      +
      intgetSiteViews() +
      Number of replication group view sites.
      +
      longgetTakeovers() +
      The number of times a subordinate process took over as the replication + process after a previous replication process has finished successfully.
      +
      java.lang.StringtoString() +
      For convenience, the ReplicationManagerStats class has a toString method + that lists all the data fields.
      +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • - - - - - - -
    -Method Detail
    - -

    -getPermFailed

    -
    -public long getPermFailed()
    -
    -
    The number of times a PERM message originating at this site did - not receive sufficient acknowledgement from clients, according to the - configured acknowledgement policy and acknowledgement timeout. -

    -

    -
    -
    -
    -
    - -

    -getMsgsQueued

    -
    -public long getMsgsQueued()
    -
    -
    The number of messages queued due to a network delay. -

    -

    -
    -
    -
    -
    - -

    -getMsgsDropped

    -
    -public long getMsgsDropped()
    -
    -
    The number of messages discarded due to queue length overflows. -

    -

    -
    -
    -
    -
    - -

    -getConnectionDrop

    -
    -public long getConnectionDrop()
    -
    -
    The number of existing connections that have been dropped since the - statistics were last reset. -

    -

    -
    -
    -
    -
    - -

    -getConnectFail

    -
    -public long getConnectFail()
    -
    -
    The number of times new connection attempts have failed. -

    -

    -
    -
    -
    -
    - -

    -getElectThreads

    -
    -public long getElectThreads()
    -
    -
    Number of currently active election threads. -

    -

    -
    -
    -
    -
    - -

    -getMaxElectThreads

    -
    -public long getMaxElectThreads()
    -
    -
    Election threads for which space is reserved. -

    -

    -
    -
    -
    -
    - -

    -toString

    -
    -public String toString()
    -
    -
    For convenience, the ReplicationManagerStats class has a toString method - that lists all the data fields. -

    -

    -
    Overrides:
    toString in class Object
    -
    -
    -
    -
    -
    +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getPermFailed

        +
        public long getPermFailed()
        +
        The number of times a message critical for maintaining database + integrity (for example, a transaction commit), originating at this site, + did not receive sufficient acknowledgement from clients, according to + the configured acknowledgement policy and acknowledgement timeout
        +
      • +
      + + + +
        +
      • +

        getMsgsQueued

        +
        public long getMsgsQueued()
        +
        The number of outgoing messages which could not be transmitted + immediately, due to a full network buffer, and had to be queued for + later delivery.
        +
      • +
      + + + +
        +
      • +

        getMsgsDropped

        +
        public long getMsgsDropped()
        +
        The number of outgoing messages that were dropped, because the outgoing + message queue was full. (Berkeley DB replication is tolerant of dropped + messages, and will automatically request retransmission of any missing + messages as needed.)
        +
      • +
      + + + +
        +
      • +

        getIncomingQueueGbytes

        +
        public int getIncomingQueueGbytes()
        +
        Gigabytes component of the memory consumption for the messages + currently in the incoming queue.
        +
      • +
      + + + +
        +
      • +

        getIncomingQueueBytes

        +
        public int getIncomingQueueBytes()
        +
        Bytes component of the memory consumption for the messages currently + in the incoming queue.
        +
      • +
      + + + +
        +
      • +

        getIncomingMsgsDropped

        +
        public long getIncomingMsgsDropped()
        +
        The number of incoming messages that were dropped because the incoming + queue was full. (Berkeley DB replication is tolerant of dropped + messages, and will automatically request retransmission of any missing + messages as needed.)
        +
      • +
      + + + +
        +
      • +

        getConnectionDrop

        +
        public long getConnectionDrop()
        +
        The number of existing connections that have been dropped + since the statistics were last reset.
        +
      • +
      + + + +
        +
      • +

        getConnectFail

        +
        public long getConnectFail()
        +
        The number of times an attempt to open a new TCP/IP connection + failed.
        +
      • +
      + + + +
        +
      • +

        getElectThreads

        +
        public int getElectThreads()
        +
        Number of currently active election threads.
        +
      • +
      + + + +
        +
      • +

        getMaxElectThreads

        +
        public int getMaxElectThreads()
        +
        The number of election threads for which space is reserved.
        +
      • +
      + + + +
        +
      • +

        getSiteParticipants

        +
        public int getSiteParticipants()
        +
        Number of replication group participant sites.
        +
      • +
      + + + +
        +
      • +

        getSiteTotal

        +
        public int getSiteTotal()
        +
        Total number of replication group sites.
        +
      • +
      + + + +
        +
      • +

        getSiteViews

        +
        public int getSiteViews()
        +
        Number of replication group view sites.
        +
      • +
      + + + +
        +
      • +

        getTakeovers

        +
        public long getTakeovers()
        +
        The number of times a subordinate process took over as the replication + process after a previous replication process has finished successfully.
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        For convenience, the ReplicationManagerStats class has a toString method + that lists all the data fields.
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
-
- - - - - - - - - - - - - - - - - - -
-Berkeley DB
version 5.3.21
-
- + + +
+ + +
+ + + - -
-Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved. - - +

Copyright (c) 1996, 2015 Oracle and/or its affiliates. All rights reserved.

+ + -- cgit v1.2.1