-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
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
Issue-967 #969
Closed
Closed
Issue-967 #969
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
12dea0a
Initial implementation for getsAsync()
jkosh44 e3f9ee2
Implemented AsyncReader.close().
jkosh44 09a932d
Implemented getAsync(Byte, Column) and getAsync(Byte, Column, Byte) a…
jkosh44 c1b560b
Refactored getAsync methods and AsyncReader class
jkosh44 cfcda2c
After completing a Future in AsyncReader.get the AsyncGet object is r…
jkosh44 e177aae
Optimized TransactionImplIT.
jkosh44 1cde343
Initial implementation for getsAsync()
jkosh44 5de3fd1
Implemented AsyncReader.close().
jkosh44 a61d0d3
Implemented getAsync(Byte, Column) and getAsync(Byte, Column, Byte) a…
jkosh44 874ad0a
Refactored getAsync methods and AsyncReader class
jkosh44 9ce9d64
After completing a Future in AsyncReader.get the AsyncGet object is r…
jkosh44 a6c2074
Optimized TransactionImplIT.
jkosh44 11f0f6a
Merge branch 'issue-967' of https://github.com/jkosh44/fluo into issu…
jkosh44 875ba94
Added missing import statement from TransactionImplIT
jkosh44 a2f5406
Not really sure what these changes are...
jkosh44 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
100 changes: 100 additions & 0 deletions
100
modules/core/src/main/java/org/apache/fluo/core/impl/AsyncReader.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,100 @@ | ||
/* | ||
* 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 org.apache.fluo.core.impl; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Collection; | ||
import java.util.List; | ||
import java.util.Map; | ||
import java.util.concurrent.BlockingQueue; | ||
import java.util.concurrent.CompletableFuture; | ||
import java.util.concurrent.ExecutorService; | ||
import java.util.concurrent.Executors; | ||
import java.util.concurrent.LinkedBlockingQueue; | ||
|
||
import com.google.common.collect.Collections2; | ||
import org.apache.fluo.api.data.Bytes; | ||
import org.apache.fluo.api.data.Column; | ||
import org.apache.fluo.api.data.RowColumn; | ||
import org.apache.fluo.core.impl.TransactionImpl; | ||
|
||
public class AsyncReader { | ||
private BlockingQueue<AsyncGet> asyncGetsQueue; | ||
private ExecutorService executorService; | ||
private TransactionImpl tx; | ||
|
||
public AsyncReader(TransactionImpl tx) { | ||
this.tx = tx; | ||
asyncGetsQueue = new LinkedBlockingQueue<>(); | ||
executorService = Executors.newSingleThreadExecutor(); | ||
} | ||
|
||
public CompletableFuture<Bytes> get(Bytes row, Column column) { | ||
return get(row, column, null); | ||
} | ||
|
||
public CompletableFuture<Bytes> get(Bytes row, Column column, Bytes defaultValue) { | ||
AsyncGet curAsyncGet = new AsyncGet(row, column, defaultValue); | ||
asyncGetsQueue.add(curAsyncGet); | ||
|
||
executorService.submit(() -> { | ||
List<AsyncGet> getsList = new ArrayList<>(); | ||
asyncGetsQueue.drainTo(getsList); | ||
|
||
try { | ||
Collection<RowColumn> rowColumns = Collections2.transform(getsList, ag -> ag.rc); | ||
|
||
Map<RowColumn, Bytes> getsMap = tx.get(rowColumns); | ||
|
||
for (AsyncGet asyncGet : getsList) { | ||
Bytes result = getsMap.get(asyncGet.rc); | ||
asyncGet.res.complete(result == null ? asyncGet.defaultValue : result); | ||
} | ||
} catch (Exception e) { | ||
for (AsyncGet asyncGet : getsList) { | ||
asyncGet.res.completeExceptionally(e); | ||
} | ||
} | ||
}); | ||
|
||
return curAsyncGet.res; | ||
} | ||
|
||
public CompletableFuture<String> gets(String row, Column column) { | ||
return gets(row, column, null); | ||
} | ||
|
||
public CompletableFuture<String> gets(String row, Column column, String defaultValue) { | ||
Bytes defaultValueBytes = defaultValue == null ? new Bytes() : Bytes.of(defaultValue); | ||
return get(Bytes.of(row), column, defaultValueBytes).thenApply(b -> b.toString()); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nice, I like the use of thenApply here. |
||
} | ||
|
||
public void close() { | ||
executorService.shutdown(); | ||
} | ||
|
||
static class AsyncGet { | ||
RowColumn rc; | ||
CompletableFuture<Bytes> res; | ||
Bytes defaultValue; | ||
|
||
public AsyncGet(Bytes row, Column column, Bytes defaultValue) { | ||
rc = new RowColumn(row, column); | ||
res = new CompletableFuture<>(); | ||
this.defaultValue = defaultValue; | ||
} | ||
} | ||
} |
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
89 changes: 89 additions & 0 deletions
89
modules/integration/src/test/java/org/apache/fluo/integration/impl/TransactionImplIT.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,89 @@ | ||
/* | ||
* 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 org.apache.fluo.integration.impl; | ||
|
||
import java.util.concurrent.CompletableFuture; | ||
|
||
import org.apache.fluo.api.client.Transaction; | ||
import org.apache.fluo.api.data.Bytes; | ||
import org.apache.fluo.api.data.Column; | ||
import org.apache.fluo.integration.ITBaseImpl; | ||
import org.junit.Assert; | ||
import org.junit.Test; | ||
|
||
/** | ||
* Tests TransactionImpl classes | ||
*/ | ||
public class TransactionImplIT extends ITBaseImpl { | ||
|
||
@Test | ||
public void testgetsAsync() throws Exception { | ||
try (Transaction tx = client.newTransaction()) { | ||
tx.set("row1", new Column("col1"), "val1"); | ||
tx.set("row2", new Column("col2"), "val2"); | ||
tx.set("row3", new Column("col3"), "val3"); | ||
|
||
tx.commit(); | ||
} | ||
|
||
try (Transaction tx = client.newTransaction()) { | ||
CompletableFuture<String> res1 = tx.getsAsync("row1", new Column("col1")); | ||
CompletableFuture<String> res2 = tx.getsAsync("row2", new Column("col2"), "foo"); | ||
CompletableFuture<String> res3 = tx.getsAsync("row3", new Column("col3")); | ||
CompletableFuture<String> res4 = tx.getsAsync("row4", new Column("col4"), "val4"); | ||
|
||
Assert.assertEquals("val1", res1.get()); | ||
Assert.assertEquals("val2", res2.get()); | ||
Assert.assertEquals("val3", res3.get()); | ||
Assert.assertEquals("val4", res4.get()); | ||
} | ||
} | ||
|
||
@Test | ||
public void testgetAsync() throws Exception { | ||
Bytes row1 = Bytes.of("row1"); | ||
Bytes row2 = Bytes.of("row2"); | ||
Bytes row3 = Bytes.of("row3"); | ||
Bytes row4 = Bytes.of("row4"); | ||
|
||
Bytes val1 = Bytes.of("val1"); | ||
Bytes val2 = Bytes.of("val2"); | ||
Bytes val3 = Bytes.of("val3"); | ||
Bytes val4 = Bytes.of("val4"); | ||
|
||
try (Transaction tx = client.newTransaction()) { | ||
tx.set(row1, new Column("col1"), val1); | ||
tx.set(row2, new Column("col2"), val2); | ||
tx.set(row3, new Column("col3"), val3); | ||
|
||
tx.commit(); | ||
} | ||
|
||
try (Transaction tx = client.newTransaction()) { | ||
CompletableFuture<Bytes> res1 = tx.getAsync(row1, new Column("col1")); | ||
CompletableFuture<Bytes> res2 = tx.getAsync(row2, new Column("col2"), Bytes.of("foo")); | ||
CompletableFuture<Bytes> res3 = tx.getAsync(row3, new Column("col3")); | ||
CompletableFuture<Bytes> res4 = tx.getAsync(row4, new Column("col4"), Bytes.of("val4")); | ||
|
||
Assert.assertEquals(val1, res1.get()); | ||
Assert.assertEquals(val2, res2.get()); | ||
Assert.assertEquals(val3, res3.get()); | ||
Assert.assertEquals(val4, res4.get()); | ||
} | ||
} | ||
|
||
|
||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will need
Bytes getAsync(Bytes row, Column column)
andBytes getAsync(Bytes row, Column column)
methods also. The string methods could just call the bytes methods.