-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: rheakv support scan in reverse (#422)
- Loading branch information
Showing
18 changed files
with
805 additions
and
43 deletions.
There are no files selected for viewing
83 changes: 83 additions & 0 deletions
83
jraft-example/src/main/java/com/alipay/sofa/jraft/example/rheakv/ReverseScanExample.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,83 @@ | ||
/* | ||
* 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. | ||
*/ | ||
package com.alipay.sofa.jraft.example.rheakv; | ||
|
||
import com.alipay.sofa.jraft.rhea.client.RheaKVStore; | ||
import com.alipay.sofa.jraft.rhea.storage.KVEntry; | ||
import com.alipay.sofa.jraft.rhea.util.Lists; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
import java.util.List; | ||
import java.util.concurrent.CompletableFuture; | ||
|
||
import static com.alipay.sofa.jraft.util.BytesUtil.readUtf8; | ||
import static com.alipay.sofa.jraft.util.BytesUtil.writeUtf8; | ||
|
||
/** | ||
* | ||
* @author baozi | ||
*/ | ||
public class ReverseScanExample { | ||
|
||
private static final Logger LOG = LoggerFactory.getLogger(ReverseScanExample.class); | ||
|
||
public static void main(final String[] args) throws Exception { | ||
final Client client = new Client(); | ||
client.init(); | ||
scan(client.getRheaKVStore()); | ||
client.shutdown(); | ||
} | ||
|
||
@SuppressWarnings("unchecked") | ||
public static void scan(final RheaKVStore rheaKVStore) { | ||
final List<byte[]> keys = Lists.newArrayList(); | ||
for (int i = 0; i < 10; i++) { | ||
final byte[] bytes = writeUtf8("scan_demo_" + i); | ||
keys.add(bytes); | ||
rheaKVStore.bPut(bytes, bytes); | ||
} | ||
|
||
final byte[] firstKey = keys.get(keys.size() - 1); | ||
final byte[] lastKey = keys.get(0); | ||
final String firstKeyString = readUtf8(firstKey); | ||
final String lastKeyString = readUtf8(lastKey); | ||
|
||
// async scan | ||
final CompletableFuture<List<KVEntry>> f1 = rheaKVStore.reverseScan(firstKey, lastKey); | ||
final CompletableFuture<List<KVEntry>> f2 = rheaKVStore.reverseScan(firstKey, lastKey, false); | ||
final CompletableFuture<List<KVEntry>> f3 = rheaKVStore.reverseScan(firstKeyString, lastKeyString); | ||
final CompletableFuture<List<KVEntry>> f4 = rheaKVStore.reverseScan(firstKeyString, lastKeyString, false); | ||
CompletableFuture.allOf(f1, f2, f3, f4).join(); | ||
for (final CompletableFuture<List<KVEntry>> f : new CompletableFuture[] { f1, f2, f3, f4 }) { | ||
for (final KVEntry kv : f.join()) { | ||
LOG.info("Async reverseScan: key={}, value={}", readUtf8(kv.getKey()), readUtf8(kv.getValue())); | ||
} | ||
} | ||
|
||
// sync scan | ||
final List<KVEntry> l1 = rheaKVStore.bReverseScan(firstKey, lastKey); | ||
final List<KVEntry> l2 = rheaKVStore.bReverseScan(firstKey, lastKey, false); | ||
final List<KVEntry> l3 = rheaKVStore.bReverseScan(firstKeyString, lastKeyString); | ||
final List<KVEntry> l4 = rheaKVStore.bReverseScan(firstKeyString, lastKeyString, false); | ||
for (final List<KVEntry> l : new List[] { l1, l2, l3, l4 }) { | ||
for (final KVEntry kv : l) { | ||
LOG.info("sync reverseScan: key={}, value={}", readUtf8(kv.getKey()), readUtf8(kv.getValue())); | ||
} | ||
} | ||
} | ||
} |
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
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.