Class and Description |
---|
com.sleepycat.je.jmx.JEMBeanHelper
As of JE 4, JEMBeanHelper is deprecated in favor of the concrete
MBeans available by default with a JE environment. These MBeans can be
registered and enabled by the environment by setting the following JVM
property:
JEMonitor:
This MBean provides general stats monitoring and access to basic
environment level operations.
JEMBeanHelper is a utility class for the MBean implementation which wants to
add management of a JE environment to its capabilities. MBean
implementations can contain a JEMBeanHelper instance to get MBean metadata
for JE and to set attributes, get attributes, and invoke operations.
com.sleepycat.je.jmx.JEMonitor and the example program jmx.JEApplicationMBean are two MBean implementations which provide support different application use cases. See those classes for examples of how to use JEMBeanHelper. |
com.sleepycat.je.LockStats
as of 4.0.10, replaced by
Environment.getStats(StatsConfig) . |
Exceptions and Description |
---|
com.sleepycat.je.DeadlockException
temporarily until true deadlock detection is implemented.
Presently, {code DeadlockException} is replaced by
LockConflictException as the common base class for lock conflict
exceptions. |
com.sleepycat.je.LockNotGrantedException
replaced by
LockNotAvailableException |
com.sleepycat.je.RunRecoveryException
replaced by
EnvironmentFailureException and Environment.isValid() . |
Field and Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
com.sleepycat.je.rep.ReplicationConfig.ALLOW_UNKNOWN_STATE_ENV_OPEN
For internal use only.
When set to
true , it permits opening of a
ReplicatedEnvironment handle in the ReplicatedEnvironment.State.UNKNOWN state, if a Master could not be
determined within the timeout specified by ReplicationConfig.ENV_SETUP_TIMEOUT . If it's false, an
UnknownMasterException exception is thrown upon expiration of
the timeout.
A ReplicatedEnvironment handle in the
|
||||||||||||
com.sleepycat.je.config.EnvironmentParams.CLEANER_MIN_FILES_TO_DELETE
As of 1.7.1, no longer used.
|
||||||||||||
com.sleepycat.je.config.EnvironmentParams.CLEANER_RESTART_RETRIES
As of 2.0, no longer used.
|
||||||||||||
com.sleepycat.je.config.EnvironmentParams.CLEANER_RETRIES
As of 2.0, no longer used.
|
||||||||||||
com.sleepycat.je.EnvironmentConfig.COMPRESSOR_PURGE_ROOT
as of 3.3.87. Compression of the root node no longer has
any benefit and this feature has been removed. This parameter has no
effect.
|
||||||||||||
com.sleepycat.je.EnvironmentConfig.EVICTOR_DEADLOCK_RETRY
as of JE 4.1, since the single evictor thread has
been replaced be a more robust thread pool.
The number of times to retry the evictor if it runs into a deadlock.
When using the shared cache feature, the value of this property is applied the first time the cache is set up. New environments that join the cache do not alter the cache setting.
|
||||||||||||
com.sleepycat.je.config.EnvironmentParams.EVICTOR_EVICTION_BATCH_PERCENTAGE
As of 1.7.2, 1 node is chosen per scan.
The evictor percentage of scanned nodes to evict per wakeup.
|
||||||||||||
com.sleepycat.je.config.EnvironmentParams.EVICTOR_NODE_SCAN_PERCENTAGE
As of 1.7.2, this is replaced by je.evictor.nodesPerScan
The evictor percentage of total nodes to scan per wakeup.
|
||||||||||||
com.sleepycat.je.config.EnvironmentParams.EVICTOR_RETRY
as of JE 4.1
|
||||||||||||
com.sleepycat.je.config.EnvironmentParams.EVICTOR_USEMEM_FLOOR
As of 2.0, this is replaced by je.evictor.evictBytes
When eviction happens, the evictor will push memory usage to this
percentage of je.maxMemory.
|
||||||||||||
com.sleepycat.je.config.EnvironmentParams.EVICTOR_WAKEUP_INTERVAL
as of JE 4.1
|
||||||||||||
com.sleepycat.je.EnvironmentConfig.LOG_CHUNKED_NIO
NIO is no longer used by JE and this parameter has no
effect.
|
||||||||||||
com.sleepycat.je.config.EnvironmentParams.LOG_DEFERREDWRITE_TEMP
As of 3.3, no longer used
Optimize cleaner operation for temporary deferred write DBs.
|
||||||||||||
com.sleepycat.je.EnvironmentConfig.LOG_DIRECT_NIO
NIO is no longer used by JE and this parameter has no
effect.
|
||||||||||||
com.sleepycat.je.EnvironmentConfig.LOG_USE_NIO
NIO is no longer used by JE and this parameter has no
effect.
|
||||||||||||
com.sleepycat.je.EnvironmentConfig.NODE_DUP_TREE_MAX_ENTRIES
this property no longer has any effect;
DatabaseConfig.setNodeMaxEntries(int) should be used instead. |
||||||||||||
com.sleepycat.je.rep.ReplicationConfig.REPLAY_DB_HANDLE_TIMEOUT
replaced by
ReplicationMutableConfig.REPLAY_DB_HANDLE_TIMEOUT . |
||||||||||||
com.sleepycat.je.rep.ReplicationConfig.REPLAY_MAX_OPEN_DB_HANDLES
replaced by
ReplicationMutableConfig.REPLAY_MAX_OPEN_DB_HANDLES . |
||||||||||||
com.sleepycat.je.EnvironmentConfig.TRACE_CONSOLE
in favor of
CONSOLE_LOGGING_LEVEL As of JE
4.0, use the standard java.util.logging configuration
methodologies. To enable console output, set
com.sleepycat.je.util.ConsoleHandler.level = <LEVEL> through
the java.util.logging configuration file, or through the
java.util.logging.LogManager. To set the handler level programmatically,
set "com.sleepycat.je.util.ConsoleHandler.level" in the
EnvironmentConfig object. |
||||||||||||
com.sleepycat.je.EnvironmentConfig.TRACE_DB
As of JE 4.0, event tracing to the .jdb files has been
separated from the java.util.logging mechanism. This parameter has
no effect.
|
||||||||||||
com.sleepycat.je.EnvironmentConfig.TRACE_FILE
in favor of
FILE_LOGGING_LEVEL As of JE 4.0,
use the standard java.util.logging configuration methodologies. To
enable logging output to the je.info files, set
com.sleepycat.je.util.FileHandler.level = <LEVEL> through the
java.util.logging configuration file, or through the
java.util.logging.LogManager. To set the handler level programmatically,
set "com.sleepycat.je.util.FileHandler.level" in the EnvironmentConfig
object. |
||||||||||||
com.sleepycat.je.EnvironmentConfig.TRACE_FILE_COUNT
As of JE 4.0, use the standard java.util.logging
configuration methodologies. To set the FileHandler output file count,
set com.sleepycat.je.util.FileHandler.count = <NUMBER>
through the java.util.logging configuration file, or through the
java.util.logging.LogManager.
|
||||||||||||
com.sleepycat.je.EnvironmentConfig.TRACE_FILE_LIMIT
As of JE 4.0, use the standard java.util.logging
configuration methodologies. To set the FileHandler output file size,
set com.sleepycat.je.util.FileHandler.limit = <NUMBER>
through the java.util.logging configuration file, or through the
java.util.logging.LogManager.
|
||||||||||||
com.sleepycat.je.EnvironmentConfig.TRACE_LEVEL
As of JE 4.0, use the standard java.util.logging
configuration methodologies. Set logging levels using class names
through the java.util.logging configuration file, or through the
java.util.logging.LogManager.
|
||||||||||||
com.sleepycat.je.EnvironmentConfig.TRACE_LEVEL_CLEANER
As of JE 4.0, use the standard java.util.logging
configuration methodologies. To see cleaner logging, set
com.sleepycat.je.cleaner.level = <LEVEL> through the
java.util.logging configuration file, or through the
java.util.logging.LogManager.
|
||||||||||||
com.sleepycat.je.EnvironmentConfig.TRACE_LEVEL_EVICTOR
As of JE 4.0, use the standard java.util.logging
configuration methodologies. To see evictor logging, set
com.sleepycat.je.evictor.level = <LEVEL> through the
java.util.logging configuration file, or through the
java.util.logging.LogManager.
|
||||||||||||
com.sleepycat.je.EnvironmentConfig.TRACE_LEVEL_LOCK_MANAGER
As of JE 4.0, use the standard java.util.logging
configuration methodologies. To see locking logging, set
com.sleepycat.je.txn.level = <LEVEL> through the
java.util.logging configuration file, or through the
java.util.logging.LogManager.
|
||||||||||||
com.sleepycat.je.EnvironmentConfig.TRACE_LEVEL_RECOVERY
As of JE 4.0, use the standard java.util.logging
configuration methodologies. To see recovery logging, set
com.sleepycat.je.recovery.level = <LEVEL> through the
java.util.logging configuration file, or through the
java.util.logging.LogManager.
|
Constructor and Description |
---|
com.sleepycat.je.util.DbDump(Environment, String, PrintStream, String, boolean)
Please use the 4-arg ctor without outputDirectory instead.
|
com.sleepycat.je.rep.monitor.Monitor(ReplicationConfig)
As of JE 5, replaced by
Monitor.Monitor(MonitorConfig) |
Copyright (c) 2004-2012 Oracle. All rights reserved.