You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by el...@apache.org on 2018/01/03 17:59:21 UTC

[1/8] phoenix git commit: PHOENIX-4509 Fix performance.py usage text (Artem Ervits)

Repository: phoenix
Updated Branches:
  refs/heads/4.x-HBase-0.98 16d68523d -> 8159d67a1
  refs/heads/4.x-HBase-1.2 3c85ec541 -> d0e5b513a
  refs/heads/5.x-HBase-2.0 cf3e370ee -> fcf48f312
  refs/heads/master f7142879f -> 93306e9e2


PHOENIX-4509 Fix performance.py usage text (Artem Ervits)

Signed-off-by: Josh Elser <el...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo
Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/3b891b2c
Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/3b891b2c
Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/3b891b2c

Branch: refs/heads/5.x-HBase-2.0
Commit: 3b891b2c978ad86bda6710aa7242b86ade6ea6be
Parents: cf3e370
Author: Josh Elser <el...@apache.org>
Authored: Wed Jan 3 12:21:50 2018 -0500
Committer: Josh Elser <el...@apache.org>
Committed: Wed Jan 3 12:22:12 2018 -0500

----------------------------------------------------------------------
 bin/performance.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/3b891b2c/bin/performance.py
----------------------------------------------------------------------
diff --git a/bin/performance.py b/bin/performance.py
index c16dd5a..f61ad20 100755
--- a/bin/performance.py
+++ b/bin/performance.py
@@ -35,9 +35,9 @@ def delfile(filename):
         os.remove(filename)
 
 def usage():
-    print "Performance script arguments not specified. Usage: performance.sh \
+    print "Performance script arguments not specified. Usage: performance.py \
 <zookeeper> <row count>"
-    print "Example: performance.sh localhost 100000"
+    print "Example: performance.py localhost 100000"
 
 
 def createFileWithContent(filename, content):


[8/8] phoenix git commit: PHOENIX-4510 Fix performance.py issue in not finding tests jar (Artem Ervits)

Posted by el...@apache.org.
PHOENIX-4510 Fix performance.py issue in not finding tests jar (Artem Ervits)

Signed-off-by: Josh Elser <el...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo
Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/8159d67a
Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/8159d67a
Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/8159d67a

Branch: refs/heads/4.x-HBase-0.98
Commit: 8159d67a1257917816d174221b3a4bafaea84ea6
Parents: 97e4cfc
Author: Josh Elser <el...@apache.org>
Authored: Wed Jan 3 12:22:28 2018 -0500
Committer: Josh Elser <el...@apache.org>
Committed: Wed Jan 3 12:49:47 2018 -0500

----------------------------------------------------------------------
 bin/phoenix_utils.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/8159d67a/bin/phoenix_utils.py
----------------------------------------------------------------------
diff --git a/bin/phoenix_utils.py b/bin/phoenix_utils.py
index 580a78b..b521277 100755
--- a/bin/phoenix_utils.py
+++ b/bin/phoenix_utils.py
@@ -151,7 +151,7 @@ def setPath():
     global testjar
     testjar = find(PHOENIX_TESTS_JAR_PATTERN, phoenix_test_jar_path)
     if testjar == "":
-        testjar = findFileInPathWithoutRecursion(PHOENIX_TESTS_JAR_PATTERN, os.path.join(current_dir, ".."))
+        testjar = findFileInPathWithoutRecursion(PHOENIX_TESTS_JAR_PATTERN, os.path.join(current_dir, "..", 'lib'))
     if testjar == "":
         testjar = find(PHOENIX_TESTS_JAR_PATTERN, phoenix_class_path)
 


[2/8] phoenix git commit: PHOENIX-4510 Fix performance.py issue in not finding tests jar (Artem Ervits)

Posted by el...@apache.org.
PHOENIX-4510 Fix performance.py issue in not finding tests jar (Artem Ervits)

Signed-off-by: Josh Elser <el...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo
Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/fcf48f31
Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/fcf48f31
Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/fcf48f31

Branch: refs/heads/5.x-HBase-2.0
Commit: fcf48f312e0fb961753edaa11613f3c98b7e9672
Parents: 3b891b2
Author: Josh Elser <el...@apache.org>
Authored: Wed Jan 3 12:22:28 2018 -0500
Committer: Josh Elser <el...@apache.org>
Committed: Wed Jan 3 12:22:53 2018 -0500

----------------------------------------------------------------------
 bin/phoenix_utils.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/fcf48f31/bin/phoenix_utils.py
----------------------------------------------------------------------
diff --git a/bin/phoenix_utils.py b/bin/phoenix_utils.py
index 580a78b..b521277 100755
--- a/bin/phoenix_utils.py
+++ b/bin/phoenix_utils.py
@@ -151,7 +151,7 @@ def setPath():
     global testjar
     testjar = find(PHOENIX_TESTS_JAR_PATTERN, phoenix_test_jar_path)
     if testjar == "":
-        testjar = findFileInPathWithoutRecursion(PHOENIX_TESTS_JAR_PATTERN, os.path.join(current_dir, ".."))
+        testjar = findFileInPathWithoutRecursion(PHOENIX_TESTS_JAR_PATTERN, os.path.join(current_dir, "..", 'lib'))
     if testjar == "":
         testjar = find(PHOENIX_TESTS_JAR_PATTERN, phoenix_class_path)
 


[6/8] phoenix git commit: PHOENIX-4510 Fix performance.py issue in not finding tests jar (Artem Ervits)

Posted by el...@apache.org.
PHOENIX-4510 Fix performance.py issue in not finding tests jar (Artem Ervits)

Signed-off-by: Josh Elser <el...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo
Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/d0e5b513
Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/d0e5b513
Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/d0e5b513

Branch: refs/heads/4.x-HBase-1.2
Commit: d0e5b513a9be622cd3c3cf084c84d362623a5eeb
Parents: 1925e47
Author: Josh Elser <el...@apache.org>
Authored: Wed Jan 3 12:22:28 2018 -0500
Committer: Josh Elser <el...@apache.org>
Committed: Wed Jan 3 12:40:35 2018 -0500

----------------------------------------------------------------------
 bin/phoenix_utils.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/d0e5b513/bin/phoenix_utils.py
----------------------------------------------------------------------
diff --git a/bin/phoenix_utils.py b/bin/phoenix_utils.py
index 580a78b..b521277 100755
--- a/bin/phoenix_utils.py
+++ b/bin/phoenix_utils.py
@@ -151,7 +151,7 @@ def setPath():
     global testjar
     testjar = find(PHOENIX_TESTS_JAR_PATTERN, phoenix_test_jar_path)
     if testjar == "":
-        testjar = findFileInPathWithoutRecursion(PHOENIX_TESTS_JAR_PATTERN, os.path.join(current_dir, ".."))
+        testjar = findFileInPathWithoutRecursion(PHOENIX_TESTS_JAR_PATTERN, os.path.join(current_dir, "..", 'lib'))
     if testjar == "":
         testjar = find(PHOENIX_TESTS_JAR_PATTERN, phoenix_class_path)
 


[5/8] phoenix git commit: PHOENIX-4509 Fix performance.py usage text (Artem Ervits)

Posted by el...@apache.org.
PHOENIX-4509 Fix performance.py usage text (Artem Ervits)

Signed-off-by: Josh Elser <el...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo
Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/1925e479
Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/1925e479
Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/1925e479

Branch: refs/heads/4.x-HBase-1.2
Commit: 1925e479cc5cf209dd5ee31bb396c5203f524d51
Parents: 3c85ec5
Author: Josh Elser <el...@apache.org>
Authored: Wed Jan 3 12:21:50 2018 -0500
Committer: Josh Elser <el...@apache.org>
Committed: Wed Jan 3 12:40:35 2018 -0500

----------------------------------------------------------------------
 bin/performance.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/1925e479/bin/performance.py
----------------------------------------------------------------------
diff --git a/bin/performance.py b/bin/performance.py
index c16dd5a..f61ad20 100755
--- a/bin/performance.py
+++ b/bin/performance.py
@@ -35,9 +35,9 @@ def delfile(filename):
         os.remove(filename)
 
 def usage():
-    print "Performance script arguments not specified. Usage: performance.sh \
+    print "Performance script arguments not specified. Usage: performance.py \
 <zookeeper> <row count>"
-    print "Example: performance.sh localhost 100000"
+    print "Example: performance.py localhost 100000"
 
 
 def createFileWithContent(filename, content):


[7/8] phoenix git commit: PHOENIX-4509 Fix performance.py usage text (Artem Ervits)

Posted by el...@apache.org.
PHOENIX-4509 Fix performance.py usage text (Artem Ervits)

Signed-off-by: Josh Elser <el...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo
Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/97e4cfc1
Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/97e4cfc1
Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/97e4cfc1

Branch: refs/heads/4.x-HBase-0.98
Commit: 97e4cfc121a9fd948127adf0b9354b1da4681bd1
Parents: 16d6852
Author: Josh Elser <el...@apache.org>
Authored: Wed Jan 3 12:21:50 2018 -0500
Committer: Josh Elser <el...@apache.org>
Committed: Wed Jan 3 12:49:47 2018 -0500

----------------------------------------------------------------------
 bin/performance.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/97e4cfc1/bin/performance.py
----------------------------------------------------------------------
diff --git a/bin/performance.py b/bin/performance.py
index 84f1314..d507a61 100755
--- a/bin/performance.py
+++ b/bin/performance.py
@@ -35,9 +35,9 @@ def delfile(filename):
         os.remove(filename)
 
 def usage():
-    print "Performance script arguments not specified. Usage: performance.sh \
+    print "Performance script arguments not specified. Usage: performance.py \
 <zookeeper> <row count>"
-    print "Example: performance.sh localhost 100000"
+    print "Example: performance.py localhost 100000"
 
 
 def createFileWithContent(filename, content):


[3/8] phoenix git commit: PHOENIX-4510 Fix performance.py issue in not finding tests jar (Artem Ervits)

Posted by el...@apache.org.
PHOENIX-4510 Fix performance.py issue in not finding tests jar (Artem Ervits)

Signed-off-by: Josh Elser <el...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo
Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/93306e9e
Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/93306e9e
Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/93306e9e

Branch: refs/heads/master
Commit: 93306e9e28a0f13cbac87055c30fb9a781ae3345
Parents: 0584d3c
Author: Josh Elser <el...@apache.org>
Authored: Wed Jan 3 12:22:28 2018 -0500
Committer: Josh Elser <el...@apache.org>
Committed: Wed Jan 3 12:34:06 2018 -0500

----------------------------------------------------------------------
 bin/phoenix_utils.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/93306e9e/bin/phoenix_utils.py
----------------------------------------------------------------------
diff --git a/bin/phoenix_utils.py b/bin/phoenix_utils.py
index 580a78b..b521277 100755
--- a/bin/phoenix_utils.py
+++ b/bin/phoenix_utils.py
@@ -151,7 +151,7 @@ def setPath():
     global testjar
     testjar = find(PHOENIX_TESTS_JAR_PATTERN, phoenix_test_jar_path)
     if testjar == "":
-        testjar = findFileInPathWithoutRecursion(PHOENIX_TESTS_JAR_PATTERN, os.path.join(current_dir, ".."))
+        testjar = findFileInPathWithoutRecursion(PHOENIX_TESTS_JAR_PATTERN, os.path.join(current_dir, "..", 'lib'))
     if testjar == "":
         testjar = find(PHOENIX_TESTS_JAR_PATTERN, phoenix_class_path)
 


[4/8] phoenix git commit: PHOENIX-4509 Fix performance.py usage text (Artem Ervits)

Posted by el...@apache.org.
PHOENIX-4509 Fix performance.py usage text (Artem Ervits)

Signed-off-by: Josh Elser <el...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo
Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/0584d3cb
Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/0584d3cb
Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/0584d3cb

Branch: refs/heads/master
Commit: 0584d3cb2c2e65c56381f33d93360e64cf79f993
Parents: f714287
Author: Josh Elser <el...@apache.org>
Authored: Wed Jan 3 12:21:50 2018 -0500
Committer: Josh Elser <el...@apache.org>
Committed: Wed Jan 3 12:34:06 2018 -0500

----------------------------------------------------------------------
 bin/performance.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/0584d3cb/bin/performance.py
----------------------------------------------------------------------
diff --git a/bin/performance.py b/bin/performance.py
index c16dd5a..f61ad20 100755
--- a/bin/performance.py
+++ b/bin/performance.py
@@ -35,9 +35,9 @@ def delfile(filename):
         os.remove(filename)
 
 def usage():
-    print "Performance script arguments not specified. Usage: performance.sh \
+    print "Performance script arguments not specified. Usage: performance.py \
 <zookeeper> <row count>"
-    print "Example: performance.sh localhost 100000"
+    print "Example: performance.py localhost 100000"
 
 
 def createFileWithContent(filename, content):