Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Y
YCSB
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
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
23125250
Commit
23125250
authored
9 years ago
by
Connor McCoy
Browse files
Options
Downloads
Plain Diff
Merge pull request #540 from jdcryans/master
[kudu] Bump the default admin timeout
parents
e21b87f9
b3fca37a
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
kudu/src/main/java/com/yahoo/ycsb/db/KuduYCSBClient.java
+2
-1
2 additions, 1 deletion
kudu/src/main/java/com/yahoo/ycsb/db/KuduYCSBClient.java
with
2 additions
and
1 deletion
kudu/src/main/java/com/yahoo/ycsb/db/KuduYCSBClient.java
+
2
−
1
View file @
23125250
...
...
@@ -134,7 +134,8 @@ public class KuduYCSBClient extends com.yahoo.ycsb.DB {
client
=
new
KuduClient
.
KuduClientBuilder
(
masterAddresses
)
.
defaultSocketReadTimeoutMs
(
DEFAULT_SLEEP
)
.
defaultOperationTimeoutMs
(
DEFAULT_SLEEP
).
build
();
.
defaultOperationTimeoutMs
(
DEFAULT_SLEEP
)
.
defaultAdminOperationTimeoutMs
(
DEFAULT_SLEEP
).
build
();
if
(
debug
)
{
System
.
out
.
println
(
"Connecting to the masters at "
+
masterAddresses
);
}
...
...
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