RTI Connext .Net APIs  Version 5.2.0
 All Classes Namespaces Functions Variables Enumerations Properties Groups Pages
DDS::DatabaseQosPolicy Class Reference

Various threads and resource limits settings used by RTI Connext to control its internal database. More...

#include <managed_infrastructure.h>

Static Public Member Functions

static System::String^ get_database_qos_policy_name ()
 Stringified human-readable name for DDS::DatabaseQosPolicy.
 

Public Attributes

ThreadSettings_tthread
 Database thread settings.
 
Duration_t shutdown_timeout
 The maximum wait time during a shutdown.
 
Duration_t cleanup_period
 The database thread will wake up at this rate to clean up the database.
 
Duration_t shutdown_cleanup_period
 The clean-up period used during database shut-down.
 
System::Int32 initial_records
 The initial number of total records.
 
System::Int32 max_skiplist_level
 The maximum level of the skiplist.
 
System::Int32 max_weak_references
 The maximum number of weak references.
 
System::Int32 initial_weak_references
 The initial number of weak references.
 

Detailed Description

Various threads and resource limits settings used by RTI Connext to control its internal database.

RTI uses an internal in-memory "database" to store information about entities created locally as well as remote entities found during the discovery process. This database uses a background thread to garbage-collect records related to deleted entities. When the DDS::DomainParticipant that maintains this database is deleted, it shuts down this thread.

The Database QoS policy is used to configure how RTI Connext manages its database, including how often it cleans up, the priority of the database thread, and limits on resources that may be allocated by the database.

You may be interested in modifying the DDS::DatabaseQosPolicy::shutdown_timeout and DDS::DatabaseQosPolicy::shutdown_cleanup_period parameters to decrease the time it takes to delete a DDS::DomainParticipant when your application is shutting down.

The DDS::DomainParticipantResourceLimitsQosPolicy controls the memory allocation for elements stored in the database.

This QoS policy is an extension to the DDS standard.

Entity:
DDS::DomainParticipant
Properties:
RxO = N/A
Changeable NO

Member Data Documentation

ThreadSettings_t ^ DDS::DatabaseQosPolicy::thread

Database thread settings.

There is only one database thread: the clean-up thread.

[default] Priority: LOW.
The actual value depends on your architecture:

For Windows: -3
For Linux: OS default priority
For a complete list of platform specific values, please refer to Platform Notes.

[default] Stack Size: The actual value depends on your architecture:

For Windows: OS default stack size
For Linux: OS default stack size
For a complete list of platform specific values, please refer to Platform Notes.

[default] Mask: ::DDS::ThreadSettingsKind::THREAD_SETTINGS_STDIO

Duration_t DDS::DatabaseQosPolicy::shutdown_timeout

The maximum wait time during a shutdown.

The domain participant will exit after the timeout, even if the database has not been fully cleaned up.

[default] 15 seconds

[range] [0,DDS::Duration_t::DURATION_INFINITE]

Duration_t DDS::DatabaseQosPolicy::cleanup_period

The database thread will wake up at this rate to clean up the database.

[default] 61 seconds

[range] [0,1 year]

Duration_t DDS::DatabaseQosPolicy::shutdown_cleanup_period

The clean-up period used during database shut-down.

[default] 1 second

[range] [0,1 year]

System::Int32 DDS::DatabaseQosPolicy::initial_records

The initial number of total records.

[default] 1024

[range] [1,10 million]

System::Int32 DDS::DatabaseQosPolicy::max_skiplist_level

The maximum level of the skiplist.

The skiplist is used to keep records in the database. Usually, the search time is log2(N), where N is the total number of records in one skiplist. However, once N exceeds 2^n, where n is the maximum skiplist level, the search time will become more and more linear. Therefore, the maximum level should be set such that 2^n is larger than the maximum(N among all skiplists). Usually, the maximum N is the maximum number of remote and local writers or readers.

[default] 14

[range] [1,31]

System::Int32 DDS::DatabaseQosPolicy::max_weak_references

The maximum number of weak references.

A weak reference is an internal data structure that refers to a record within RTI Connext' internal database. This field configures the maximum number of such references that RTI Connext may create.

The actual number of weak references is permitted to grow from an initial value (indicated by DDS::DatabaseQosPolicy::initial_weak_references) to this maximum. To prevent RTI Connext from allocating any weak references after the system has reached a steady state, set the initial and maximum values equal to one another. To indicate that the number of weak references should continue to grow as needed indefinitely, set this field to DDS::ResourceLimitsQosPolicy::LENGTH_UNLIMITED. Be aware that although a single weak reference occupies very little memory, allocating a very large number of them can have a significant impact on your overall memory usage.

Tuning this value precisely is difficult without intimate knowledge of the structure of RTI Connext' database; doing so is an advanced feature not required by most applications. The default value has been chosen to be sufficient for reasonably large systems. If you believe you may need to modify this value, please consult with RTI support personnel for assistance.

[default] DDS::ResourceLimitsQosPolicy::LENGTH_UNLIMITED

[range] [1, 100 million] or DDS::ResourceLimitsQosPolicy::LENGTH_UNLIMITED, >= initial_weak_references

See Also
DDS::DatabaseQosPolicy::initial_weak_references
System::Int32 DDS::DatabaseQosPolicy::initial_weak_references

The initial number of weak references.

See DDS::DatabaseQosPolicy::max_weak_references for more information about what a weak reference is.

If the QoS set contains an initial_weak_references value that is too small to ever grow to DDS::DatabaseQosPolicy::max_weak_references using RTI Connext' internal algorithm, this value will be adjusted upwards as necessary. Subsequent accesses of this value will reveal the actual initial value used.

Changing the value of this field is an advanced feature; it is recommended that you consult with RTI support personnel before doing so.

[default] 2049, which is the minimum initial value imposed by REDA when the maximum is unlimited. If a lower value is specified, it will simply be increased to 2049 automatically.

[range] [1, 100 million], <= max_weak_references

See Also
DDS::DatabaseQosPolicy::max_weak_references

RTI Connext .Net APIs Version 5.2.0 Copyright © Sun Jun 21 2015 Real-Time Innovations, Inc