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
218e2587
Commit
218e2587
authored
10 years ago
by
Robert J. Moore
Browse files
Options
Downloads
Patches
Plain Diff
Cleanup
parent
a3bbb25f
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
mongodb/src/main/java/com/yahoo/ycsb/db/AsyncMongoDbClient.java
+30
-30
30 additions, 30 deletions
...b/src/main/java/com/yahoo/ycsb/db/AsyncMongoDbClient.java
with
30 additions
and
30 deletions
mongodb/src/main/java/com/yahoo/ycsb/db/AsyncMongoDbClient.java
+
30
−
30
View file @
218e2587
...
...
@@ -51,17 +51,25 @@ public class AsyncMongoDbClient extends DB {
/** The database to use. */
private
static
String
database
;
/** Thread local document builder. */
private
static
final
ThreadLocal
<
DocumentBuilder
>
DOCUMENT_BUILDER
=
new
ThreadLocal
<
DocumentBuilder
>()
{
@Override
protected
DocumentBuilder
initialValue
()
{
return
BuilderFactory
.
start
();
}
};
/** The write concern for the requests. */
private
static
final
AtomicInteger
initCount
=
new
AtomicInteger
(
0
);
/** The connection to MongoDB. */
private
static
MongoClient
mongo
;
/** The database to MongoDB. */
private
MongoDatabase
db
;
/** The write concern for the requests. */
private
static
Durability
writeConcern
;
/** The
write concern for the requests
. */
private
static
final
AtomicInteger
initCount
=
new
AtomicInteger
(
0
)
;
/** The
database to MongoDB
. */
private
MongoDatabase
db
;
/**
* Cleanup any state for this DB. Called once per DB instance; there is one
...
...
@@ -112,7 +120,7 @@ public class AsyncMongoDbClient extends DB {
*/
@Override
public
final
void
init
()
throws
DBException
{
int
count
=
initCount
.
incrementAndGet
();
final
int
count
=
initCount
.
incrementAndGet
();
final
Properties
props
=
getProperties
();
final
String
maxConnections
=
props
.
getProperty
(
...
...
@@ -221,14 +229,6 @@ public class AsyncMongoDbClient extends DB {
}
}
/** Thread local document builder. */
private
static
final
ThreadLocal
<
DocumentBuilder
>
DOCUMENT_BUILDER
=
new
ThreadLocal
<
DocumentBuilder
>()
{
@Override
protected
DocumentBuilder
initialValue
()
{
return
BuilderFactory
.
start
();
}
};
/**
* Read a record from the database. Each field/value pair from the result
* will be stored in a HashMap.
...
...
@@ -316,8 +316,8 @@ public class AsyncMongoDbClient extends DB {
fb
.
setLimit
(
recordcount
);
fb
.
setBatchSize
(
recordcount
);
if
(
fields
!=
null
)
{
DocumentBuilder
fieldsDoc
=
BuilderFactory
.
start
();
for
(
String
field
:
fields
)
{
final
DocumentBuilder
fieldsDoc
=
BuilderFactory
.
start
();
for
(
final
String
field
:
fields
)
{
fieldsDoc
.
add
(
field
,
1
);
}
...
...
@@ -419,7 +419,7 @@ public class AsyncMongoDbClient extends DB {
* @param element
* The {@link BinaryElement} to iterate over.
*/
public
BinaryByteArrayIterator
(
BinaryElement
element
)
{
public
BinaryByteArrayIterator
(
final
BinaryElement
element
)
{
this
.
binaryElement
=
element
;
this
.
offset
=
0
;
}
...
...
@@ -427,38 +427,38 @@ public class AsyncMongoDbClient extends DB {
/**
* {@inheritDoc}
* <p>
* Overridden to return true if there is more data in the
* {@link BinaryElement}.
* Overridden to return the number of bytes remaining in the iterator.
* </p>
*/
@Override
public
boolean
hasNex
t
()
{
return
(
offset
<
binaryElement
.
length
());
public
long
bytesLef
t
()
{
return
Math
.
max
(
0
,
binaryElement
.
length
()
-
offset
);
}
/**
* {@inheritDoc}
* <p>
* Overridden to return the myNext value and advance the iterator.
* Overridden to return true if there is more data in the
* {@link BinaryElement}.
* </p>
*/
@Override
public
byte
nextByte
()
{
byte
value
=
binaryElement
.
get
(
offset
);
offset
+=
1
;
return
value
;
public
boolean
hasNext
()
{
return
(
offset
<
binaryElement
.
length
());
}
/**
* {@inheritDoc}
* <p>
* Overridden to return the n
umber of bytes remaining in
the iterator.
* Overridden to return the n
ext value and advance
the iterator.
* </p>
*/
@Override
public
long
bytesLeft
()
{
return
Math
.
max
(
0
,
binaryElement
.
length
()
-
offset
);
public
byte
nextByte
()
{
final
byte
value
=
binaryElement
.
get
(
offset
);
offset
+=
1
;
return
value
;
}
}
}
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