-
Notifications
You must be signed in to change notification settings - Fork 229
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* MetaClientCache Part 1 - API's, configs, and builders (#2612) MetaClientCache Part 1 - API's, configs, and builders --------- Co-authored-by: mapeng <[email protected]> * Skip one time listener re-register for exists for ZkClient - MetaClient usage. (#2637) * Lattice cache - caching just data implementation (#2619) Lattice cache - caching just data implementation --------- Co-authored-by: mapeng <[email protected]> * Add recursiveCreate functionality to metaclient (#2607) Co-authored-by: Grant Palau Spencer <[email protected]> * Lattice Children Cache Implementation(#2623) Co-authored-by: mapeng <[email protected]> --------- Co-authored-by: Marcos Rico Peng <[email protected]> Co-authored-by: mapeng <[email protected]> Co-authored-by: Grant Paláu Spencer <[email protected]> Co-authored-by: Grant Palau Spencer <[email protected]>
- Loading branch information
1 parent
564574f
commit 5f1a3f7
Showing
12 changed files
with
791 additions
and
11 deletions.
There are no files selected for viewing
90 changes: 90 additions & 0 deletions
90
meta-client/src/main/java/org/apache/helix/metaclient/api/MetaClientCacheInterface.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
package org.apache.helix.metaclient.api; | ||
|
||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
import java.util.HashMap; | ||
import java.util.Map; | ||
|
||
public interface MetaClientCacheInterface<T> extends MetaClientInterface<T> { | ||
|
||
/** | ||
* TrieNode class to store the children of the entries to be cached. | ||
*/ | ||
class TrieNode { | ||
// A mapping between trie key and children nodes. | ||
private Map<String, TrieNode> _children; | ||
// the complete path/prefix leading to the current node. | ||
private final String _path; | ||
private final String _nodeKey; | ||
|
||
public TrieNode(String path, String nodeKey) { | ||
_path = path; | ||
_nodeKey = nodeKey; | ||
_children = new HashMap<>(); | ||
} | ||
|
||
public Map<String, TrieNode> getChildren() { | ||
return _children; | ||
} | ||
|
||
public String getPath() { | ||
return _path; | ||
} | ||
|
||
public String getNodeKey() { | ||
return _nodeKey; | ||
} | ||
|
||
public void addChild(String key, TrieNode node) { | ||
_children.put(key, node); | ||
} | ||
|
||
public TrieNode processPath(String path, boolean isCreate) { | ||
String[] pathComponents = path.split("/"); | ||
TrieNode currentNode = this; | ||
TrieNode previousNode = null; | ||
|
||
for (int i = 1; i < pathComponents.length; i++) { | ||
String component = pathComponents[i]; | ||
if (component.equals(_nodeKey)) { | ||
// Skip the root node | ||
} else if (!currentNode.getChildren().containsKey(component)) { | ||
if (isCreate) { | ||
TrieNode newNode = new TrieNode(currentNode.getPath() + "/" + component, component); | ||
currentNode.addChild(component, newNode); | ||
previousNode = currentNode; | ||
currentNode = newNode; | ||
} else { | ||
return currentNode; | ||
} | ||
} else { | ||
previousNode = currentNode; | ||
currentNode = currentNode.getChildren().get(component); | ||
} | ||
} | ||
|
||
if (!isCreate && previousNode != null) { | ||
previousNode.getChildren().remove(currentNode.getNodeKey()); | ||
} | ||
|
||
return currentNode; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
meta-client/src/main/java/org/apache/helix/metaclient/factories/MetaClientCacheConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
package org.apache.helix.metaclient.factories; | ||
|
||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
|
||
|
||
public class MetaClientCacheConfig { | ||
private final String _rootEntry; | ||
private final boolean _cacheData; | ||
private final boolean _cacheChildren; | ||
|
||
public MetaClientCacheConfig(String rootEntry, boolean cacheData, boolean cacheChildren) { | ||
_rootEntry = rootEntry; | ||
_cacheData = cacheData; | ||
_cacheChildren = cacheChildren; | ||
} | ||
|
||
public String getRootEntry() { | ||
return _rootEntry; | ||
} | ||
|
||
public boolean getCacheData() { | ||
return _cacheData; | ||
} | ||
|
||
public boolean getCacheChildren() { | ||
return _cacheChildren; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.