We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Our current typescript version OPA AST parser (for v2 release on next branch) takes too long (around 10s) to evaluate the large response.
next
Here is the sample file:
extraLargeResponse.json.txt
Most time seems spent on evaluate function.
const parser = new OpaCompileResponseParser(); const data = parser.parse(JSON.stringify(extraLargeResponseString)); const result = parser.evaluate();
The text was updated successfully, but these errors were encountered:
#3340 speed up the opa AST evaluate by proactively set input. refer…
input.
7d0d230
…ence as not resolvable
#3340 remove duplicated rules to reduce the processing time by 200ms
b89a801
#3340 add extra large response sample to decision endpoint test case
ac6e58e
#3340 reduce no. of rules in PE result further by filter out "impossi…
c850404
…ble rules". Plus, we will also filter out duplicate expressions.
#3340 update auth decision test case sample file
648b710
closed via #3334
Sorry, something went wrong.
No branches or pull requests
OPA AST parser takes too long to evaluate the large response
Our current typescript version OPA AST parser (for v2 release on
next
branch) takes too long (around 10s) to evaluate the large response.Here is the sample file:
extraLargeResponse.json.txt
Most time seems spent on evaluate function.
How to reproduce
The text was updated successfully, but these errors were encountered: