Optimizing strategies with allow list functions
When a globally optimized strategy cannot be optimized because its component or components contain expressions with unsupported functions, you can add the functions to the pyAllowlistFunction data transform or change the strategy logic to contain only supported functions.
Condition
In Dev Studio, you can verify which components are optimized to decide which functions you want to define as allow list functions on the strategy canvas or on the Global Optimization tab, as shown in the following figures:
Cause
A strategy component cannot be optimized when it contains functions that are not supported for optimization. Many of the functions available in the expression builder are already supported and can be used in a strategy component targeted for optimization. To check a list of functions supported for optimization, see Functions supported for optimization. If the function you want to use in an optimized strategy is not in the list of functions supported for optimization, investigate the strategy that you want to optimize and consider the following remedies:
Solution
- If the function you want to use in an optimized strategy is not in the
list of functions supported for optimization, investigate the strategy
that you want to optimize and consider the following remedies:
- Change the strategy logic by using different strategy components or reconfiguring the existing ones to remove references to the functions that cannot be optimized.
- Add the functions that cannot be optimized to the pyAllowlistFunction data transform and enable optimization for the component that uses the functions. Go to step 2.
- In the navigation pane of Dev Studio, click Records.
- Expand the Data Model category, and then click Data Transform.
- In the list of data transform rules, click pyAllowlistFunction.
- On the Definition tab, place the cursor in one of the first-level rows, and then click the Add a row button.
- Define the new function:
- From the list in the Action column, select Update Page.
- In the Target column, enter: .pyAllowlistFunction
- To propagate values from another page, from the list in the Relation column, select with values from and then enter the page name in the Source column.
- Add and fill in the second-level rows with the following
properties:
- .pyFunctionName
- .pyMethodName
- .pyLibraryName
- .pyRuleSetName
- .pyReturnType
- .pyParameters
The following image shows a sample configuration of a new allow list function:
- Confirm the changes by clicking Save.
- Rerun the globally optimized strategy.
- On the Test tab of the optimized strategy, do a side-by-side comparison to see differences between non-optimized and optimized results.
Previous topic Frequently asked questions about globally optimized strategies Next topic Functions supported for optimization