Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Y
YCSB
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Adnan Ahmad
YCSB
Commits
f44cacab
Commit
f44cacab
authored
11 years ago
by
Chandan Benjaram
Committed by
Andy Kruth
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[couchbase] Implemented scan for couchbase
parent
779a703d
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
couchbase/pom.xml
+7
-0
7 additions, 0 deletions
couchbase/pom.xml
couchbase/src/main/java/com/yahoo/ycsb/db/CouchbaseClient.java
+72
-0
72 additions, 0 deletions
...base/src/main/java/com/yahoo/ycsb/db/CouchbaseClient.java
with
79 additions
and
0 deletions
couchbase/pom.xml
+
7
−
0
View file @
f44cacab
...
...
@@ -54,6 +54,13 @@ LICENSE file.
<groupId>
org.slf4j
</groupId>
<artifactId>
slf4j-api
</artifactId>
</dependency>
<!-- Gson: Java to Json conversion -->
<dependency>
<groupId>
com.google.code.gson
</groupId>
<artifactId>
gson
</artifactId>
<version>
2.2.4
</version>
<scope>
compile
</scope>
</dependency>
</dependencies>
<repositories>
...
...
This diff is collapsed.
Click to expand it.
couchbase/src/main/java/com/yahoo/ycsb/db/CouchbaseClient.java
+
72
−
0
View file @
f44cacab
...
...
@@ -17,11 +17,13 @@
package
com.yahoo.ycsb.db
;
import
com.couchbase.client.protocol.views.*
;
import
com.fasterxml.jackson.core.JsonFactory
;
import
com.fasterxml.jackson.core.JsonGenerator
;
import
com.fasterxml.jackson.databind.JsonNode
;
import
com.fasterxml.jackson.databind.ObjectMapper
;
import
com.fasterxml.jackson.databind.node.ObjectNode
;
import
com.google.gson.*
;
import
com.yahoo.ycsb.ByteIterator
;
import
com.yahoo.ycsb.DB
;
import
com.yahoo.ycsb.DBException
;
...
...
@@ -37,6 +39,7 @@ import org.slf4j.LoggerFactory;
import
java.io.StringWriter
;
import
java.io.Writer
;
import
java.lang.reflect.Type
;
import
java.net.URI
;
import
java.util.Arrays
;
import
java.util.HashMap
;
...
...
@@ -82,6 +85,43 @@ public class CouchbaseClient extends DB {
private
boolean
checkFutures
;
private
boolean
useJson
;
private
final
Logger
log
=
LoggerFactory
.
getLogger
(
getClass
());
private
volatile
Stale
stale
;
public
final
ThreadLocal
<
Gson
>
gson
=
new
ThreadLocal
<
Gson
>()
{
public
Gson
get
()
{
return
GSON_BUILDER
.
create
();
}
};
/**
* {@link Gson} instance builder
*/
private
static
GsonBuilder
GSON_BUILDER
=
new
GsonBuilder
().
registerTypeAdapter
(
ByteIterator
.
class
,
new
JsonSerializer
<
ByteIterator
>()
{
@Override
public
JsonElement
serialize
(
ByteIterator
arg0
,
Type
arg1
,
JsonSerializationContext
arg2
)
{
return
new
JsonPrimitive
(
arg0
.
toString
());
}
})
.
registerTypeAdapter
(
ByteIterator
.
class
,
new
JsonDeserializer
<
ByteIterator
>()
{
@Override
public
ByteIterator
deserialize
(
JsonElement
arg0
,
Type
arg1
,
JsonDeserializationContext
arg2
)
throws
JsonParseException
{
return
new
StringByteIterator
(
arg0
.
toString
());
}
});
@Override
public
void
init
()
throws
DBException
{
...
...
@@ -196,6 +236,38 @@ public class CouchbaseClient extends DB {
@Override
public
Status
scan
(
final
String
table
,
final
String
startkey
,
final
int
recordcount
,
final
Set
<
String
>
fields
,
final
Vector
<
HashMap
<
String
,
ByteIterator
>>
result
)
{
String
designDoc
=
getProperties
().
getProperty
(
"ddoc"
);
String
viewName
=
getProperties
().
getProperty
(
"view"
);
if
(
designDoc
==
null
||
viewName
==
null
)
{
System
.
err
.
println
(
"Scan requires [ddoc, view] params"
);
return
Status
.
ERROR
;
}
try
{
final
View
view
=
client
.
getView
(
designDoc
,
viewName
);
Query
query
=
new
Query
().
setRangeStart
(
startkey
)
.
setLimit
(
recordcount
).
setIncludeDocs
(
Boolean
.
TRUE
)
.
setStale
(
stale
);
ViewResponse
response
=
client
.
query
(
view
,
query
);
HashMap
<
String
,
ByteIterator
>
resultMap
=
new
HashMap
<
String
,
ByteIterator
>();
for
(
ViewRow
row
:
response
)
{
Object
obj
=
row
.
getDocument
();
if
(
obj
==
null
)
{
continue
;
}
ByteIterator
recVal
=
gson
.
get
().
fromJson
(
obj
.
toString
(),
ByteIterator
.
class
);
resultMap
.
put
(
row
.
getKey
(),
recVal
);
}
result
.
add
(
resultMap
);
return
Status
.
OK
;
}
catch
(
Exception
e
)
{
System
.
err
.
println
(
e
.
getMessage
());
}
return
Status
.
ERROR
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment