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
531d6bd6
Commit
531d6bd6
authored
9 years ago
by
Sean Busbey
Browse files
Options
Downloads
Patches
Plain Diff
[accumulo] correct cleanup to only happen once per jvm.
closes #340
parent
0b08f216
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
accumulo/src/main/java/com/yahoo/ycsb/db/accumulo/AccumuloClient.java
+10
-1
10 additions, 1 deletion
.../main/java/com/yahoo/ycsb/db/accumulo/AccumuloClient.java
with
10 additions
and
1 deletion
accumulo/src/main/java/com/yahoo/ycsb/db/accumulo/AccumuloClient.java
+
10
−
1
View file @
531d6bd6
...
...
@@ -63,6 +63,16 @@ public class AccumuloClient extends DB {
private
Scanner
singleScanner
=
null
;
// A scanner for reads/deletes.
private
Scanner
scanScanner
=
null
;
// A scanner for use by scan()
static
{
Runtime
.
getRuntime
().
addShutdownHook
(
new
Thread
()
{
@Override
public
void
run
()
{
CleanUp
.
shutdownNow
();
}
});
}
@Override
public
void
init
()
throws
DBException
{
colFam
=
new
Text
(
getProperties
().
getProperty
(
"accumulo.columnFamily"
));
...
...
@@ -96,7 +106,6 @@ public class AccumuloClient extends DB {
}
catch
(
MutationsRejectedException
e
)
{
throw
new
DBException
(
e
);
}
CleanUp
.
shutdownNow
();
}
/**
...
...
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