+Resources Reloaded
+~~~~~~~~~~~~~~~~~~
+
+There are two types of resources that are reloaded during a rule reload.
+
+* Rule-related configuration:
+
+ * Suricata's configuration file(s): ``suricata.yaml`` and any specified with the command-line
+ options ``--include <config-file.yaml>``. Only rule-related information is reloaded.
+
+ * Rule variables: items in the ``vars`` section.
+ * Rule files from the ``rule-files`` section (if the ``-S`` command line option was not used)
+
+ * Ancillary rule-related configuration files: ``classification.config``, ``reference.config``
+ and ``threshold.config``
+
+ * Dataset(s) used by rules.
+
+ * When multi-tenants are configured, rule-related configuration information for each tenant.
+
+When to reload rules
+~~~~~~~~~~~~~~~~~~~~
+
+Rule reloads are used in situations when:
+
+* Rules have been changed since the last reload. Vendors often add rules frequently and
+ sometimes update existing rules. Rules should be reloaded according to a security policy
+ that includes Suricata rule and configuration settings.
+* Rule variables have been changed. Rule reloads will use rule variables from the Suricata
+ configuration file. When updating these, reload the rules in order for the updated rule
+ variables to take effect.
+* Ancillary rule-related configuration files are updated.
+
+Advanced: Rule Reload Steps
+~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+When reloading rules, Suricata executes the following steps to ensure a safe
+and consistent update:
+
+* The main Suricata configuration is reloaded to update rule variables and values,
+ including the rule related files ``classification.config``, ``reference.config`` and
+ ``theshold.config``.
+* All rule files are reloaded with new rule variables applied.
+* A new detection engine is created for the updated rules.
+* The previous and newly created detection engines are swapped.
+* Ensure all threads are updated.
+* Free old detection engine and associated resources.
+
+Suricata will continue to process packets during the update process. Note that additional system
+memory is used during the reload process as a new detection engine and the reloaded rules are
+associated with it.