Repository: ranger Updated Branches: refs/heads/master 266b1c9cd -> 07076c18e
RANGER-2188: Support multiple threads to build Trie and on-lookup post-setup for Trie nodes - set default to lazy post-setup Project: http://git-wip-us.apache.org/repos/asf/ranger/repo Commit: http://git-wip-us.apache.org/repos/asf/ranger/commit/07076c18 Tree: http://git-wip-us.apache.org/repos/asf/ranger/tree/07076c18 Diff: http://git-wip-us.apache.org/repos/asf/ranger/diff/07076c18 Branch: refs/heads/master Commit: 07076c18e527606c116a560ff08c171ee39d90bb Parents: 266b1c9 Author: Abhay Kulkarni <[email protected]> Authored: Tue Aug 21 15:20:45 2018 -0700 Committer: Abhay Kulkarni <[email protected]> Committed: Tue Aug 21 15:20:45 2018 -0700 ---------------------------------------------------------------------- .../ranger/plugin/policyengine/RangerPolicyEngineOptions.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ranger/blob/07076c18/agents-common/src/main/java/org/apache/ranger/plugin/policyengine/RangerPolicyEngineOptions.java ---------------------------------------------------------------------- diff --git a/agents-common/src/main/java/org/apache/ranger/plugin/policyengine/RangerPolicyEngineOptions.java b/agents-common/src/main/java/org/apache/ranger/plugin/policyengine/RangerPolicyEngineOptions.java index 01dbbe8..5498545 100644 --- a/agents-common/src/main/java/org/apache/ranger/plugin/policyengine/RangerPolicyEngineOptions.java +++ b/agents-common/src/main/java/org/apache/ranger/plugin/policyengine/RangerPolicyEngineOptions.java @@ -33,7 +33,7 @@ public class RangerPolicyEngineOptions { public boolean evaluateDelegateAdminOnly = false; public boolean enableTagEnricherWithLocalRefresher = false; public boolean disableAccessEvaluationWithPolicyACLSummary = true; - public boolean optimizeTrieForRetrieval = true; + public boolean optimizeTrieForRetrieval = false; private RangerServiceDefHelper serviceDefHelper; @@ -51,7 +51,7 @@ public class RangerPolicyEngineOptions { evaluateDelegateAdminOnly = false; enableTagEnricherWithLocalRefresher = false; disableAccessEvaluationWithPolicyACLSummary = conf.getBoolean(propertyPrefix + ".policyengine.option.disable.access.evaluation.with.policy.acl.summary", true); - optimizeTrieForRetrieval = conf.getBoolean(propertyPrefix + ".policyengine.option.optimize.trie.for.retrieval", true); + optimizeTrieForRetrieval = conf.getBoolean(propertyPrefix + ".policyengine.option.optimize.trie.for.retrieval", false); }
