Remove or increase the default value of glide.discovery.pattern.orchestrator.max_patterns_triggered propertyDescriptionglide.discovery.pattern.orchestrator.max_patterns_triggered system property is preventing a big number of patterns from being executes as part of the large payload mechanism. It's goal was to reduce load on the system and make developers aware of potential issue in the design. On large cloud environments, it is expected to run big number of patterns [more than 256 which is the default value for the property] and the property is blocking the execution. The goal of this defect is to remove the limitation by having a default value of -1 but still keep the property in case there is a need to stop parts of the discovery in case a large amount of patterns are about to be triggeredSteps to Reproduce Run a cloud discovery that causes an execution of more than 256 patterns [the default limit] after a single pattern executionWorkaround1. Open DiscoveryPatternOrchestratorFlowManager script include 2. Find _exceedChildPatternLimit function 3. On the following line, change "256" to "-1" var maxTriggeredPatterns = GlideProperties.get('glide.discovery.pattern.orchestrator.max_patterns_triggered', 256); 4. Set the following "if" condition to be "(maxTriggeredPatterns > -1) && (targetExecutionCount > maxTriggeredPatterns)" if (targetExecutionCount > maxTriggeredPatterns)Related Problem: PRB1608563