| Package | Description |
|---|---|
| org.apache.drill.exec.coord.zk |
Zookeeper/Curator integration code.
|
| org.apache.drill.exec.expr.fn.registry | |
| org.apache.drill.exec.store.sys | |
| org.apache.drill.exec.store.sys.store | |
| org.apache.drill.exec.testing.store |
| Modifier and Type | Method and Description |
|---|---|
byte[] |
ZookeeperClient.get(String path,
boolean consistent,
DataChangeVersion version)
Returns the value corresponding to the given key, null otherwise.
|
byte[] |
ZookeeperClient.get(String path,
DataChangeVersion version)
Returns the value corresponding to the given key, null otherwise.
|
boolean |
ZookeeperClient.hasPath(String path,
boolean consistent,
DataChangeVersion version)
Checks if the given path exists.
|
void |
ZookeeperClient.put(String path,
byte[] data,
DataChangeVersion version)
Puts the given byte sequence into the given path.
|
| Modifier and Type | Method and Description |
|---|---|
UserBitShared.Registry |
RemoteFunctionRegistry.getRegistry(DataChangeVersion version) |
void |
RemoteFunctionRegistry.updateRegistry(UserBitShared.Registry registryContent,
DataChangeVersion version) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
PersistentStore.contains(String key,
DataChangeVersion version)
Checks if lookup key is present in store.
|
boolean |
BasePersistentStore.contains(String key,
DataChangeVersion version)
By default contains with version will behave the same way as without version.
|
V |
PersistentStore.get(String key,
DataChangeVersion version)
Returns the value for the given key if exists, null otherwise.
|
V |
BasePersistentStore.get(String key,
DataChangeVersion version)
By default get with version will behave the same way as without version.
|
void |
PersistentStore.put(String key,
V value,
DataChangeVersion version)
Stores the (key, value) tuple in the store.
|
void |
BasePersistentStore.put(String key,
V value,
DataChangeVersion version)
By default put with version will behave the same way as without version.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
ZookeeperPersistentStore.contains(String key,
DataChangeVersion version) |
boolean |
LocalPersistentStore.contains(String key,
DataChangeVersion dataChangeVersion) |
boolean |
InMemoryStore.contains(String key,
DataChangeVersion dataChangeVersion) |
V |
ZookeeperPersistentStore.get(String key,
boolean consistencyFlag,
DataChangeVersion version) |
V |
ZookeeperPersistentStore.get(String key,
DataChangeVersion version) |
V |
LocalPersistentStore.get(String key,
DataChangeVersion dataChangeVersion) |
V |
InMemoryStore.get(String key,
DataChangeVersion dataChangeVersion) |
void |
ZookeeperPersistentStore.put(String key,
V value,
DataChangeVersion version) |
void |
LocalPersistentStore.put(String key,
V value,
DataChangeVersion dataChangeVersion) |
void |
InMemoryStore.put(String key,
V value,
DataChangeVersion dataChangeVersion) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
NoWriteLocalStore.contains(String key,
DataChangeVersion dataChangeVersion) |
V |
NoWriteLocalStore.get(String key,
DataChangeVersion dataChangeVersion) |
void |
NoWriteLocalStore.put(String key,
V value,
DataChangeVersion dataChangeVersion) |
Copyright © 2017 The Apache Software Foundation. All rights reserved.