Skip to content
Snippets Groups Projects
Commit 9d0af873 authored by Sean Busbey's avatar Sean Busbey
Browse files

[accumulo1.6, scripts] deprecate Accumulo 1.6 client, since Accumulo 1.6 is EOM.

parent f8b1b9c3
No related branches found
No related tags found
No related merge requests found
......@@ -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"
......
......@@ -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.
:notAccumulo16
@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.
......
......@@ -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 \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment