Skip to content

Commit

Permalink
Warn about XTypes in Fast DDS v3 (#1021)
Browse files Browse the repository at this point in the history
Signed-off-by: cferreiragonz <[email protected]>
(cherry picked from commit c16c505)

# Conflicts:
#	docs/notes/migration_guide.rst
  • Loading branch information
cferreiragonz authored and mergify[bot] committed Jan 29, 2025
1 parent 733573d commit f00c3d3
Show file tree
Hide file tree
Showing 5 changed files with 412 additions and 3 deletions.
2 changes: 1 addition & 1 deletion code/DDSCodeTester.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -961,7 +961,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 @@ -3265,7 +3265,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.
Loading

0 comments on commit f00c3d3

Please sign in to comment.