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
9d0af873
Commit
9d0af873
authored
7 years ago
by
Sean Busbey
Browse files
Options
Downloads
Patches
Plain Diff
[accumulo1.6, scripts] deprecate Accumulo 1.6 client, since Accumulo 1.6 is EOM.
parent
f8b1b9c3
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
bin/ycsb
+5
-0
5 additions, 0 deletions
bin/ycsb
bin/ycsb.bat
+5
-0
5 additions, 0 deletions
bin/ycsb.bat
bin/ycsb.sh
+8
-0
8 additions, 0 deletions
bin/ycsb.sh
with
18 additions
and
0 deletions
bin/ycsb
+
5
−
0
View file @
9d0af873
...
...
@@ -259,6 +259,11 @@ def main():
"
be removed in a future YCSB release.
"
)
binding
=
"
accumulo1.6
"
if
binding
==
"
accumulo1.6
"
:
warn
(
"
The
'
accumulo1.6
'
client has been deprecated because Accumulo 1.6
"
"
is EOM. If you are using Accumulo 1.7+ try using the
'
accumulo1.7
'
"
"
client instead.
"
)
if
binding
==
"
cassandra2
"
:
warn
(
"
The
'
cassandra2-cql
'
client has been deprecated. It has been
"
"
renamed to simply
'
cassandra-cql
'
. This alias will be removed
"
...
...
This diff is collapsed.
Click to expand it.
bin/ycsb.bat
+
5
−
0
View file @
9d0af873
...
...
@@ -123,6 +123,11 @@ echo [WARN] The 'accumulo' client has been deprecated in favor of version specif
SET
BINDING_DIR
=
accumulo1
.6
:notAliasAccumulo
@REM Accumulo 1.6 deprecation message
IF
NOT
"
%BINDING_DIR%
"
==
"accumulo1.6"
GOTO
notAccumulo16
echo
[
WARN
]
The
'accumulo1.6'
client
has
been
deprecated
because
Accumulo
1
.6
is
EOM
.
If
you
are
using
Accumulo
1
.7
+
try
using
the
'accumulo1.7'
client
instead
.
:notAccumulo
16
@REM Cassandra2 deprecation message
IF
NOT
"
%BINDING_DIR%
"
==
"cassandra2"
GOTO
notAliasCassandra
echo
[
WARN
]
The
'cassandra2-cql'
client
has
been
deprecated
.
It
has
been
renamed
to
simply
'cassandra-cql'
.
This
alias
will
be
removed
in
the
next
YCSB
release
.
...
...
This diff is collapsed.
Click to expand it.
bin/ycsb.sh
+
8
−
0
View file @
9d0af873
...
...
@@ -142,6 +142,14 @@ be removed in a future YCSB release."
BINDING_DIR
=
"accumulo1.6"
fi
# Accumulo 1.6 deprecation message
if
[
"
${
BINDING_DIR
}
"
=
"accumulo1.6"
]
;
then
echo
"[WARN] The 'accumulo' client has been deprecated because Accumulo 1.6
\
is EOM. If you are using Accumulo 1.7+ try using the 'accumulo1.7' client
\
instead."
fi
# Cassandra2 deprecation message
if
[
"
${
BINDING_DIR
}
"
=
"cassandra2"
]
;
then
echo
"[WARN] The 'cassandra2-cql' client has been deprecated. It has been
\
...
...
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