What are supported QoSs in RTI Connext DDS Micro ?

9 posts / 0 new
Last post
Offline
Last seen: 9 years 2 months ago
Joined: 05/25/2014
Posts: 6
What are supported QoSs in RTI Connext DDS Micro ?

Hi,

I'm asking about which real time QoSs are supported in DDS Micro edition. I found this list of supported QoS on Data Distribution Service for Real-time Systems document:

DURABILITY
DURABILITY_SERVICE
PRESENTATION
DEADLINE
LATENCY_BUDGET
OWNERSHIP
OWNERSHIP_STRENGTH
LIVELINESS
TIME_BASED_FILTER
PARTITION
RELIABILITY
TRANSPORT_PRIORITY
LIFESPAN
DESTINATION_ORDER
HISTORY
RESOURCE_LIMITS

Therefore, I'd like if someone can specify supported QoS from this list; hence, not all QoS are supported  in DDS Micro as mentioned on this post
https://community.rti.com/content/forum-topic/using-dds-wireless-sensor-networks

" QoS can be specified per-topic and per-subscriber" quoted from http://www.rti.com/docs/RTI_Micro.pdf
Is that means NO QoS could configured on publisher side ? please explan.

Thanks in advance

 

Keywords:
Gerardo Pardo's picture
Offline
Last seen: 11 hours 41 min ago
Joined: 06/02/2010
Posts: 601

Hi,

The document http://www.rti.com/docs/RTI_Micro.pdf is a high-level marketing brochure so it should not be interpreted that literally.

The API for RTI Connext DDS Micro Edition is the same as for RTI Connext DDS and therefore follows the DDS specification. So QoS can be configured both in the Publisher and the Subscriber side (at creation time and with the set_qos operation) on all the DDS Entities (DomainParticipant, Topic, Publisher, Subscriber, DataWriter and DataReader).  However, as you mentioned, only a subset of the QoS Policies are supported.

The following summarizes the DDS QoS policy support  as of  RTI Connext DDS Micro Edition version 2.4.2:

  1. DataReaderResourceLimits

    The following DataReaderResourceLimits fields are supported. All must be finite values greater than 0.

    max_remote_writers
    max_remote_writers_per_instance max_samples_per_remote_writer max_outstanding_reads

  2. DataWriterResourceLimits

    DataWriterResourceLimits QoS policy is supported with field max_remote_readers.

  1. Destination Order

    Only the BY_RECEPTION_TIMESTAMP kind is supported.

  2. Durability

    Only VOLATILE and TRANSIENT_LOCAL Durability kinds are supported.

  3. History

    Only KEEP_LAST History kind is supported.

  4. LatencyBudget

    The LatencyBudget QoS policy is not supported (effectively zero duration).

  5. Lifespan

    The Lifespan QoS policy is not supported (effectively infinite duration).

  1. Liveliness

    When lease duration is infinite, any Liveliness kind may be set. When lease duration is finite, only the MANUAL_BY_TOPIC Liveliness kind is supported. Lease duration has range of [1, infinite].

  2. Deadline

    The Deadline Qos policy is supported.

  3. Ownership and OwnershipStrength

    Both SHARED and EXCLUSIVE Ownership kinds are supported.

  4. Presentation

    Coherent sets are not supported, therefore the coherent_access field is not supported.

  5. Reliability

    Both BEST-EFFORT and RELIABLE Reliability kinds are supported.

    For RELIABLE reliability, additional settings related to the RTPS protocol (e.g. periodic and piggyback HEARTBEATs) are available, see HTML documentation for specifics.

  6. ResourceLimits

    The following limits in the ResourceLimits QoS policy are supported. All must be finite values greater than 0.

    max_samples
    max_instances
    max_samples_per_instance

    Note that max_samples must be large enough to contain all samples for all instances:

                max_samples >= max_instances * max_samples_per_instance
    
  7. TimeBasedFilter

    The TimeBasedFilter QoS policy is not supported. 

 

Hope this clarifies things,

Gerardo

Offline
Last seen: 9 years 2 months ago
Joined: 05/25/2014
Posts: 6

Thank you Mr. Gerardo, your feedback was sufficient.

I have one more question about resource limits QoS policy, what is the defualt value of max_samples ? is it the same LENGTH_UNLIMITED value? 

The following limits in the ResourceLimits QoS policy are supported. All must be finite values greater than 0.

❏ max_samples
❏ max_instances
❏ max_samples_per_instance

Thank you again.

Offline
Last seen: 3 years 1 week ago
Joined: 01/15/2013
Posts: 94

Hi,

The default values for max_samples, max_instances and max_samples_per_instance will be LENGTH_UNLIMITED, yes, like the DDS specification states. Recall that if max_instances and max_samples_per_instance are unlimited then their value will actually be determined by the value of max_samples.

Thanks,

Juanlu

Offline
Last seen: 9 years 2 months ago
Joined: 05/25/2014
Posts: 6

Thank you.

Offline
Last seen: 6 years 5 months ago
Joined: 10/04/2017
Posts: 1

Hello,

I have seen a PDF document titled "RTI Connext - Comprehensive Summary of QoS Policies".  It lists about 50 QoS parameters.

Please could you clarify if the list of 14 QoS parameters above is the complete list of QoS usable for Micro DDS version 2.4.10.1

Cheers

David Barnett's picture
Offline
Last seen: 4 months 1 week ago
Joined: 08/13/2010
Posts: 17

Here is the list of QoS policies supported in the latest Connext DDS Micro release, 2.4.10.

https://community.rti.com/static/documentation/connext-micro/2.4.10/doc/html/group__DDSQosTypesModule.html

Offline
Last seen: 2 years 1 month ago
Joined: 02/21/2022
Posts: 2

If you use one of these supported types in a Pro application, will it be able to interoperate with a micro based application?

Howard's picture
Offline
Last seen: 15 hours 58 min ago
Joined: 11/29/2012
Posts: 565

Not sure what you mean "supported types".  If you mean "supported QoS policy", then yes.  Generally, you can get a Connext Pro-based application to interoperate with a Connext Micro-based application.  However, both applications will need to configured with compatible QoS values for everything to work correctly.