Skip to content

Commit

Permalink
Refs #22706: Warn about XTypes in Fast DDS v3
Browse files Browse the repository at this point in the history
Signed-off-by: cferreiragonz <carlosferreira@eprosima.com>
  • Loading branch information
cferreiragonz committed Jan 28, 2025
1 parent 92ad537 commit 2693f1c
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions docs/rst/enhancements/fastdds3/fastdds3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,32 @@ Most relevant features
* Removed deprecated fastrtps-related API.
* Further improvements can be found in `Fast DDS v3.0.0 <https://github.com/eProsima/Fast-DDS/releases/tag/v3.0.0>`__.

.. warning::
The new feature to support XTypes might increase discovery traffic during start up.
If a high load during discovery is experienced, it is recommended to disable the new feature.
This can be accomplished with the following XML.
Please refer to `disable type propagation <https://fast-dds.docs.eprosima.com/en/latest/fastdds/property_policies/non_consolidated_qos.html#property-type-propagation>`__ for more information.

.. code-block:: xml
<?xml version="1.0" encoding="UTF-8" ?>
<dds xmlns="http://www.eprosima.com">
<profiles>
<participant profile_name="no_xtypes" is_default_profile="true">
<rtps>
<propertiesPolicy>
<properties>
<property>
<name>fastdds.type_propagation</name>
<value>disabled</value>
</property>
</properties>
</propertiesPolicy>
</rtps>
</participant>
</profiles>
</dds>
Implications
^^^^^^^^^^^^

Expand Down

0 comments on commit 2693f1c

Please sign in to comment.