Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[22706] Warn about XTypes in Fast DDS v3 #1021

Merged
merged 1 commit into from
Jan 29, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion code/DDSCodeTester.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -970,7 +970,7 @@ void dds_domain_examples()

pqos.properties().properties().emplace_back(
"fastdds.type_propagation",
"enabled");
"disabled");
//!--
}
}
Expand Down
2 changes: 1 addition & 1 deletion code/XMLTester.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3277,7 +3277,7 @@
<properties>
<property>
<name>fastdds.type_propagation</name>
<value>enable</value>
<value>disabled</value>
</property>
</properties>
</propertiesPolicy>
Expand Down
2 changes: 1 addition & 1 deletion docs/fastdds/property_policies/non_consolidated_qos.rst
Original file line number Diff line number Diff line change
Expand Up @@ -509,4 +509,4 @@ The different property values have the following effects on the local |DomainPar
:language: xml
:start-after: <!-->TYPE_PROPAGATION_PROPERTY<-->
:end-before: <!--><-->
:lines: 2-4,6-16,18-19
:lines: 2-4,6-17,19-20
5 changes: 5 additions & 0 deletions docs/fastdds/troubleshooting/troubleshooting.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,8 @@ issues.

* If having problems with transmitting **large samples such as video or point clouds**, please refer to
:ref:`use-case-largeData`.

* Fast DDS v3 introduced the new feature :ref:`XTypes<dynamic-types>`, which allows to discover remote types.
In consequence, discovery traffic can be increased during start up.
If you are experiencing high load during discovery, try disabling the new feature.
Please refer to :ref:`disable type propagation<property_type_propagation>` to learn how to do it.
6 changes: 6 additions & 0 deletions docs/notes/migration_guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ Migration Guide to Fast DDS v3
This document aims to help during the migration process from eProsima *Fast DDS version* 2 to *Fast DDS version* 3.
For more information about all the updates, please refer to the :ref:`release notes <release_notes>`.

.. warning::
Fast DDS v3 introduces a new feature :ref:`XTypes<dynamic-types>` that allows to discover remote types.
In consequence, discovery traffic can be increased during start up.
If you are experiencing high load during discovery, try disabling the new feature.
Please refer to :ref:`disable type propagation<property_type_propagation>` to learn how to do it.

Migration Steps
---------------

Expand Down