svn commit: r1733556 - in /phoenix/site: publish/index.html source/src/site/markdown/index.md

2016-03-03 Thread jamestaylor
Author: jamestaylor
Date: Fri Mar  4 03:09:21 2016
New Revision: 1733556

URL: http://svn.apache.org/viewvc?rev=1733556&view=rev
Log:
Updates to overview

Modified:
phoenix/site/publish/index.html
phoenix/site/source/src/site/markdown/index.md

Modified: phoenix/site/publish/index.html
URL: 
http://svn.apache.org/viewvc/phoenix/site/publish/index.html?rev=1733556&r1=1733555&r2=1733556&view=diff
==
--- phoenix/site/publish/index.html (original)
+++ phoenix/site/publish/index.html Fri Mar  4 03:09:21 2016
@@ -209,10 +209,10 @@
  For any omitted parts, the relevant property value, 
hbase.zookeeper.quorum, hbase.zookeeper.property.clientPort, and 
zookeeper.znode.parent will be used from hbase-site.xml configuration file. The 
optional principal and keytab file may be used to connect to 
a Kerberos secured cluster. If only principal is specified, then this 
defines the user name with each distinct user having their own dedicated HBase 
connection (HConnection). This provides a means of having multiple, different 
connections each with different configuration properties on the same JVM. 
  For example, the following connection string might be used for longer 
running queries, where the longRunningProps specifies Phoenix and 
HBase configuration properties with longer timeouts:  
   
-  Connection conn = 
DriverManager.getConnection(“jdbc:phoenix:server1,server2::longRunning”,
 longRunningProps); 
+  Connection conn = 
DriverManager.getConnection(“jdbc:phoenix:my_server:longRunning”, 
longRunningProps); 
   while the following connection string might be used for shorter 
running queries: 
   
-  Connection conn = 
DriverManager.getConnection("jdbc:phoenix:server1,server2::shortRunning",
 shortRunningProps); 
+  Connection conn = 
DriverManager.getConnection("jdbc:phoenix:my_server:shortRunning", 
shortRunningProps); 
   
   


Modified: phoenix/site/source/src/site/markdown/index.md
URL: 
http://svn.apache.org/viewvc/phoenix/site/source/src/site/markdown/index.md?rev=1733556&r1=1733555&r2=1733556&view=diff
==
--- phoenix/site/source/src/site/markdown/index.md (original)
+++ phoenix/site/source/src/site/markdown/index.md Fri Mar  4 03:09:21 2016
@@ -83,10 +83,10 @@ user having their own dedicated HBase co
 configuration properties on the same JVM.
 
 For example, the following connection string might be used for longer running 
queries, where the longRunningProps specifies Phoenix and HBase 
configuration properties with longer timeouts:
-Connection conn = 
DriverManager.getConnection("jdbc:phoenix:server1,server2::longRunning", 
longRunningProps);
+Connection conn = 
DriverManager.getConnection("jdbc:phoenix:my_server:longRunning", 
longRunningProps);
 while the following connection string might be used for shorter running 
queries:
 
-Connection conn = 
DriverManager.getConnection("jdbc:phoenix:server1,server2::shortRunning", 
shortRunningProps);
+Connection conn = 
DriverManager.getConnection("jdbc:phoenix:my_server:shortRunning", 
shortRunningProps);
 
 
 Not Supported




svn commit: r1733552 - in /phoenix/site: publish/faq.html publish/index.html source/src/site/markdown/faq.md source/src/site/markdown/index.md

2016-03-03 Thread jamestaylor
Author: jamestaylor
Date: Fri Mar  4 03:00:22 2016
New Revision: 1733552

URL: http://svn.apache.org/viewvc?rev=1733552&view=rev
Log:
Updates to overview

Modified:
phoenix/site/publish/faq.html
phoenix/site/publish/index.html
phoenix/site/source/src/site/markdown/faq.md
phoenix/site/source/src/site/markdown/index.md

Modified: phoenix/site/publish/faq.html
URL: 
http://svn.apache.org/viewvc/phoenix/site/publish/faq.html?rev=1733552&r1=1733551&r2=1733552&view=diff
==
--- phoenix/site/publish/faq.html (original)
+++ phoenix/site/publish/faq.html Fri Mar  4 03:00:22 2016
@@ -1,7 +1,7 @@
 
 
 
 
@@ -329,10 +329,10 @@ public class test {
   
   
   Can
 phoenix work on tables with arbitrary timestamp as flexible as HBase API? 
-  By default, Phoenix let’s HBase manage the timestamps and just shows 
you the latest values for everything. However, Phoenix also allows arbitrary 
timestamps to be supplied by the user. To do that you’d specify a 
“CurrentSCN” (or PhoenixRuntime.CURRENT_SCN_ATTRIB if you want to use our 
constant) at connection time, like this: 
+  By default, Phoenix let’s HBase manage the timestamps and just shows 
you the latest values for everything. However, Phoenix also allows arbitrary 
timestamps to be supplied by the user. To do that you’d specify a 
“CurrentSCN” at connection time, like this: 

Properties props = new Properties();
-props.setProperty(PhoenixRuntime.CURRENT_SCN_ATTRIB, Long.toString(ts));
+props.setProperty("CurrentSCN", Long.toString(ts));
 Connection conn = DriverManager.connect(myUrl, props);
 
 conn.createStatement().execute("UPSERT INTO myTable VALUES ('a')");

Modified: phoenix/site/publish/index.html
URL: 
http://svn.apache.org/viewvc/phoenix/site/publish/index.html?rev=1733552&r1=1733551&r2=1733552&view=diff
==
--- phoenix/site/publish/index.html (original)
+++ phoenix/site/publish/index.html Fri Mar  4 03:00:22 2016
@@ -1,7 +1,7 @@
 
 
 
 
@@ -184,7 +184,7 @@
  
   Overview
   
- Apache Phoenix is a relational database layer over HBase delivered as a 
client-embedded JDBC driver targeting low latency queries over HBase data. 
Apache Phoenix takes your SQL query, compiles it into a series of HBase scans, 
and orchestrates the running of those scans to produce regular JDBC result 
sets. The table metadata is stored in an HBase table and versioned, such that 
snapshot queries over prior versions will automatically use the correct schema. 
Direct use of the HBase API, along with coprocessors and custom filters, 
results in performance on the order of 
milliseconds for small queries, or seconds for tens of millions of rows.  
+ Apache Phoenix is a relational database layer over HBase supporting full 
ACID transactions and delivered as a client-embedded JDBC driver that targets 
low latency queries over HBase data. Apache Phoenix takes your SQL query, 
compiles it into a series of HBase scans, and orchestrates the running of those 
scans to produce regular JDBC result sets. The table metadata is stored in an 
HBase table and versioned, such that snapshot queries over prior versions will 
automatically use the correct schema. Direct use of the HBase API, along with 
coprocessors and custom filters, results in performance on the order of milliseconds for small 
queries, or seconds for tens of millions of rows.  
   Who is using Apache Phoenix? Read more here...   
  
  
@@ -193,25 +193,37 @@
  
  
  Quick Start 
- Tired of reading already and just want to get started? Take a look at our 
FAQs, listen to the Apache Phoenix talks from https://www.youtube.com/watch?v=f4Nmh5KM6gI&feature=youtu.be";>Hadoop 
Summit 2014, review the http://phoenix.apache.org/presentations/OC-HUG-2014-10-4x3.pdf";>overview 
presentation, and jump over to our quick start guide here. 
+ Tired of reading already and just want to get started? Take a look at our 
FAQs, listen to the Apache Phoenix talk from https://www.youtube.com/watch?v=XGa0SyJMH94";>Hadoop 
Summit 2015, review the http://phoenix.apache.org/presentations/OC-HUG-2014-10-4x3.pdf";>overview 
presentation, and jump over to our quick start guide here. 
  
  
  SQL Support 
  To see what’s supported, go to our language reference. It includes all typical SQL 
query statement clauses, including SELECT, FROM, 
WHERE, GROUP BY, HAVING, ORDER BY, etc. It 
also supports a full set of DML commands as well as table creation and 
versioned incremental alterations through our DDL commands. We try to follow 
the SQL standards wherever possible. 
  Use JDBC to get a connection to an 
HBase cluster like this: 
   
-  Connection conn = 
DriverManager.getConnection("jdbc:phoenix:server1,server2:");
 
+  Connection conn = 
DriverManager.getConnection("jdbc:phoenix:server1,server2:",props);
 
   
- where the connection string is composed of:  
+ where props ar

Apache-Phoenix | 4.x-HBase-1.0 | Build Successful

2016-03-03 Thread Apache Jenkins Server
4.x-HBase-1.0 branch build status Successful

Source repository https://git-wip-us.apache.org/repos/asf?p=phoenix.git;a=shortlog;h=refs/heads/4.x-HBase-1.0

Compiled Artifacts https://builds.apache.org/job/Phoenix-4.x-HBase-1.0/lastSuccessfulBuild/artifact/

Test Report https://builds.apache.org/job/Phoenix-4.x-HBase-1.0/lastCompletedBuild/testReport/

Changes
[rajeshbabu] PHOENIX-2575 Prevent LocalIndexIT from hanging indefinitely(Rajeshbabu)



Build times for last couple of runsLatest build time is the right most | Legend blue: normal, red: test failure, gray: timeout


Jenkins build is back to normal : Phoenix-4.x-HBase-1.0 #418

2016-03-03 Thread Apache Jenkins Server
See 



svn commit: r12604 - in /dev/phoenix: phoenix-4.7.0-HBase-0.98-rc6/ phoenix-4.7.0-HBase-0.98-rc6/bin/ phoenix-4.7.0-HBase-0.98-rc6/src/ phoenix-4.7.0-HBase-1.0-rc6/ phoenix-4.7.0-HBase-1.0-rc6/bin/ ph

2016-03-03 Thread mujtaba
Author: mujtaba
Date: Thu Mar  3 20:59:34 2016
New Revision: 12604

Log:
Phoenix 4.7.0-RC6

Added:
dev/phoenix/phoenix-4.7.0-HBase-0.98-rc6/
dev/phoenix/phoenix-4.7.0-HBase-0.98-rc6/bin/

dev/phoenix/phoenix-4.7.0-HBase-0.98-rc6/bin/phoenix-4.7.0-HBase-0.98-bin.tar.gz
   (with props)

dev/phoenix/phoenix-4.7.0-HBase-0.98-rc6/bin/phoenix-4.7.0-HBase-0.98-bin.tar.gz.asc

dev/phoenix/phoenix-4.7.0-HBase-0.98-rc6/bin/phoenix-4.7.0-HBase-0.98-bin.tar.gz.md5

dev/phoenix/phoenix-4.7.0-HBase-0.98-rc6/bin/phoenix-4.7.0-HBase-0.98-bin.tar.gz.sha
dev/phoenix/phoenix-4.7.0-HBase-0.98-rc6/src/

dev/phoenix/phoenix-4.7.0-HBase-0.98-rc6/src/phoenix-4.7.0-HBase-0.98-src.tar.gz
   (with props)

dev/phoenix/phoenix-4.7.0-HBase-0.98-rc6/src/phoenix-4.7.0-HBase-0.98-src.tar.gz.asc

dev/phoenix/phoenix-4.7.0-HBase-0.98-rc6/src/phoenix-4.7.0-HBase-0.98-src.tar.gz.md5

dev/phoenix/phoenix-4.7.0-HBase-0.98-rc6/src/phoenix-4.7.0-HBase-0.98-src.tar.gz.sha
dev/phoenix/phoenix-4.7.0-HBase-1.0-rc6/
dev/phoenix/phoenix-4.7.0-HBase-1.0-rc6/bin/

dev/phoenix/phoenix-4.7.0-HBase-1.0-rc6/bin/phoenix-4.7.0-HBase-1.0-bin.tar.gz  
 (with props)

dev/phoenix/phoenix-4.7.0-HBase-1.0-rc6/bin/phoenix-4.7.0-HBase-1.0-bin.tar.gz.asc

dev/phoenix/phoenix-4.7.0-HBase-1.0-rc6/bin/phoenix-4.7.0-HBase-1.0-bin.tar.gz.md5

dev/phoenix/phoenix-4.7.0-HBase-1.0-rc6/bin/phoenix-4.7.0-HBase-1.0-bin.tar.gz.sha
dev/phoenix/phoenix-4.7.0-HBase-1.0-rc6/src/

dev/phoenix/phoenix-4.7.0-HBase-1.0-rc6/src/phoenix-4.7.0-HBase-1.0-src.tar.gz  
 (with props)

dev/phoenix/phoenix-4.7.0-HBase-1.0-rc6/src/phoenix-4.7.0-HBase-1.0-src.tar.gz.asc

dev/phoenix/phoenix-4.7.0-HBase-1.0-rc6/src/phoenix-4.7.0-HBase-1.0-src.tar.gz.md5

dev/phoenix/phoenix-4.7.0-HBase-1.0-rc6/src/phoenix-4.7.0-HBase-1.0-src.tar.gz.sha
dev/phoenix/phoenix-4.7.0-HBase-1.1-rc6/
dev/phoenix/phoenix-4.7.0-HBase-1.1-rc6/bin/

dev/phoenix/phoenix-4.7.0-HBase-1.1-rc6/bin/phoenix-4.7.0-HBase-1.1-bin.tar.gz  
 (with props)

dev/phoenix/phoenix-4.7.0-HBase-1.1-rc6/bin/phoenix-4.7.0-HBase-1.1-bin.tar.gz.asc

dev/phoenix/phoenix-4.7.0-HBase-1.1-rc6/bin/phoenix-4.7.0-HBase-1.1-bin.tar.gz.md5

dev/phoenix/phoenix-4.7.0-HBase-1.1-rc6/bin/phoenix-4.7.0-HBase-1.1-bin.tar.gz.sha
dev/phoenix/phoenix-4.7.0-HBase-1.1-rc6/src/

dev/phoenix/phoenix-4.7.0-HBase-1.1-rc6/src/phoenix-4.7.0-HBase-1.1-src.tar.gz  
 (with props)

dev/phoenix/phoenix-4.7.0-HBase-1.1-rc6/src/phoenix-4.7.0-HBase-1.1-src.tar.gz.asc

dev/phoenix/phoenix-4.7.0-HBase-1.1-rc6/src/phoenix-4.7.0-HBase-1.1-src.tar.gz.md5

dev/phoenix/phoenix-4.7.0-HBase-1.1-rc6/src/phoenix-4.7.0-HBase-1.1-src.tar.gz.sha

Added: 
dev/phoenix/phoenix-4.7.0-HBase-0.98-rc6/bin/phoenix-4.7.0-HBase-0.98-bin.tar.gz
==
Binary file - no diff available.

Propchange: 
dev/phoenix/phoenix-4.7.0-HBase-0.98-rc6/bin/phoenix-4.7.0-HBase-0.98-bin.tar.gz
--
svn:mime-type = application/octet-stream

Added: 
dev/phoenix/phoenix-4.7.0-HBase-0.98-rc6/bin/phoenix-4.7.0-HBase-0.98-bin.tar.gz.asc
==
--- 
dev/phoenix/phoenix-4.7.0-HBase-0.98-rc6/bin/phoenix-4.7.0-HBase-0.98-bin.tar.gz.asc
 (added)
+++ 
dev/phoenix/phoenix-4.7.0-HBase-0.98-rc6/bin/phoenix-4.7.0-HBase-0.98-bin.tar.gz.asc
 Thu Mar  3 20:59:34 2016
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v1.4.11 (GNU/Linux)
+
+iQIcBAABAgAGBQJW2KRWAAoJEDv8s5KUYReOTLYP/iWetGbS+YvymXIvbq5uASxa
+4i3BFOIqc1QE9ZLQvEmZa+wpzkGU7737BB/CKLtILxVWTTessz93bHKFT8KM7m3E
+q3p/i8IaSDqw58LxhvQqZehsAOkhVR1pn3HBs1kdj3ISe21d5DdBDEN2IJ86t3yY
+HgzEsnL6+wx6JI+SIRbN+POcEV1IvXafjoKXavUBdQZQF5THjjfuEG0BYyB068Ik
+ypQ0Ybll7qd16jGSJTPP3EfIbQQjNw3xMQDbRBXKa3j7EUjg2MWNvUY7wVNUniQX
+UGeD8w3aJ7oxsCriGxyJn7Zo+Z4jPygyO9KDlCduioVq8nBcYyO4rjx7AOtJh1+u
+jeeJv+oSEkP6h+7R7hovCoRBrDLugVwSq4OcH3OjjbWPY9si5nd+kP81z9nvSzwT
+zwQZIB8ddwfZmAh5W4CAfFhywXMNp+xFtafTQ3wv1AqDinIWPfjXM28DRYRZ0PFU
+yoa+t8M759GFLEsf/z9IJvAigDldx9Z/xAkJtu8BZnnDkD/MEyOkvBBqShuJUHFi
+f7u7UNXufsM+s5D9+TNoPAmD8Bsk6JttWTTCuxKnmrM02C7q17WswCILnH8nPqE7
+vQvw/rUwSxBUqbrSHRQ5S5/CwAFlMi+9H1prMmNCATr/DP6/i/7gITjcZpZK0c+L
+jChnyVreeUyixrn4Wgom
+=aNIQ
+-END PGP SIGNATURE-

Added: 
dev/phoenix/phoenix-4.7.0-HBase-0.98-rc6/bin/phoenix-4.7.0-HBase-0.98-bin.tar.gz.md5
==
--- 
dev/phoenix/phoenix-4.7.0-HBase-0.98-rc6/bin/phoenix-4.7.0-HBase-0.98-bin.tar.gz.md5
 (added)
+++ 
dev/phoenix/phoenix-4.7.0-HBase-0.98-rc6/bin/phoenix-4.7.0-HBase-0.98-bin.tar.gz.md5
 Thu Mar  3 20:59:34 2016
@@ -0,0 +1 @@
+6968f6a8b967ff42522abf4809e3d7ab *phoenix-4.7.0-HBase-0.98-bin.tar.gz

Added: 
dev/phoenix/phoenix-4.7.0-HBase-0.98-rc6/bin/phoenix-4.7.0-HBase-0.98-bin.tar.gz.sha
==

[phoenix] Git Push Summary

2016-03-03 Thread mujtaba
Repository: phoenix
Updated Tags:  refs/tags/v4.7.0-HBase-1.1-rc6 [created] 4553803e3


[phoenix] Git Push Summary

2016-03-03 Thread mujtaba
Repository: phoenix
Updated Tags:  refs/tags/v4.7.0-HBase-1.0-rc6 [created] d33e9eff0


Jenkins build is back to normal : Phoenix | Master #1167

2016-03-03 Thread Apache Jenkins Server
See 



[phoenix] Git Push Summary

2016-03-03 Thread mujtaba
Repository: phoenix
Updated Tags:  refs/tags/v4.7.0-HBase-0.98-rc6 [created] abb1410ab


Apache-Phoenix | 4.x-HBase-0.98 | Build Successful

2016-03-03 Thread Apache Jenkins Server
4.x-HBase-0.98 branch build status Successful

Source repository https://git-wip-us.apache.org/repos/asf?p=phoenix.git;a=shortlog;h=refs/heads/4.x-HBase-0.98

Compiled Artifacts https://builds.apache.org/job/Phoenix-4.x-HBase-0.98/lastSuccessfulBuild/artifact/

Test Report https://builds.apache.org/job/Phoenix-4.x-HBase-0.98/lastCompletedBuild/testReport/

Changes
[rajeshbabu] PHOENIX-2575 Prevent LocalIndexIT from hanging indefinitely(Rajeshbabu)



Build times for last couple of runsLatest build time is the right most | Legend blue: normal, red: test failure, gray: timeout


phoenix git commit: PHOENIX-2575 Prevent LocalIndexIT from hanging indefinitely(Rajeshbabu)

2016-03-03 Thread rajeshbabu
Repository: phoenix
Updated Branches:
  refs/heads/4.x-HBase-0.98 dd8c63960 -> 990bb1558


PHOENIX-2575 Prevent LocalIndexIT from hanging indefinitely(Rajeshbabu)


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

Branch: refs/heads/4.x-HBase-0.98
Commit: 990bb1558269e4b57975eaaf01613c0fec12ddaa
Parents: dd8c639
Author: Rajeshbabu Chintaguntla 
Authored: Fri Mar 4 01:10:51 2016 +0530
Committer: Rajeshbabu Chintaguntla 
Committed: Fri Mar 4 01:10:51 2016 +0530

--
 .../hadoop/hbase/regionserver/IndexHalfStoreFileReader.java  | 8 
 1 file changed, 8 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/phoenix/blob/990bb155/phoenix-core/src/main/java/org/apache/hadoop/hbase/regionserver/IndexHalfStoreFileReader.java
--
diff --git 
a/phoenix-core/src/main/java/org/apache/hadoop/hbase/regionserver/IndexHalfStoreFileReader.java
 
b/phoenix-core/src/main/java/org/apache/hadoop/hbase/regionserver/IndexHalfStoreFileReader.java
index 172486d..74c7201 100644
--- 
a/phoenix-core/src/main/java/org/apache/hadoop/hbase/regionserver/IndexHalfStoreFileReader.java
+++ 
b/phoenix-core/src/main/java/org/apache/hadoop/hbase/regionserver/IndexHalfStoreFileReader.java
@@ -449,14 +449,6 @@ public class IndexHalfStoreFileReader extends 
StoreFile.Reader {
 }
 
 @Override
-public byte[] getLastKey() {
-// This method won't get used for the index region. There is no need 
to call
-// getClosestRowBefore on the index table. Also this is a split 
region. Can not be further
-// split
-throw new UnsupportedOperationException("Method is not implemented!");
-}
-
-@Override
 public byte[] midkey() throws IOException {
 // Returns null to indicate file is not splitable.
 return null;



phoenix git commit: PHOENIX-2575 Prevent LocalIndexIT from hanging indefinitely(Rajeshbabu)

2016-03-03 Thread rajeshbabu
Repository: phoenix
Updated Branches:
  refs/heads/4.x-HBase-1.0 fd1880dba -> 8d3805a95


PHOENIX-2575 Prevent LocalIndexIT from hanging indefinitely(Rajeshbabu)


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

Branch: refs/heads/4.x-HBase-1.0
Commit: 8d3805a95d52c2088d65705bc3dbc1b9ed55b6b7
Parents: fd1880d
Author: Rajeshbabu Chintaguntla 
Authored: Fri Mar 4 01:03:36 2016 +0530
Committer: Rajeshbabu Chintaguntla 
Committed: Fri Mar 4 01:03:36 2016 +0530

--
 .../hadoop/hbase/regionserver/IndexHalfStoreFileReader.java  | 8 
 1 file changed, 8 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/phoenix/blob/8d3805a9/phoenix-core/src/main/java/org/apache/hadoop/hbase/regionserver/IndexHalfStoreFileReader.java
--
diff --git 
a/phoenix-core/src/main/java/org/apache/hadoop/hbase/regionserver/IndexHalfStoreFileReader.java
 
b/phoenix-core/src/main/java/org/apache/hadoop/hbase/regionserver/IndexHalfStoreFileReader.java
index 49e2022..18bd032 100644
--- 
a/phoenix-core/src/main/java/org/apache/hadoop/hbase/regionserver/IndexHalfStoreFileReader.java
+++ 
b/phoenix-core/src/main/java/org/apache/hadoop/hbase/regionserver/IndexHalfStoreFileReader.java
@@ -470,14 +470,6 @@ public class IndexHalfStoreFileReader extends 
StoreFile.Reader {
 }
 
 @Override
-public byte[] getLastKey() {
-// This method won't get used for the index region. There is no need 
to call
-// getClosestRowBefore on the index table. Also this is a split 
region. Can not be further
-// split
-throw new UnsupportedOperationException("Method is not implemented!");
-}
-
-@Override
 public byte[] midkey() throws IOException {
 // Returns null to indicate file is not splitable.
 return null;



phoenix git commit: PHOENIX-2575 Prevent LocalIndexIT from hanging indefinitely(Rajeshbabu)

2016-03-03 Thread rajeshbabu
Repository: phoenix
Updated Branches:
  refs/heads/master 6e7acaa45 -> 57c17ec92


PHOENIX-2575 Prevent LocalIndexIT from hanging indefinitely(Rajeshbabu)


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

Branch: refs/heads/master
Commit: 57c17ec9299d46c1e3ec44936a73747bbececf9b
Parents: 6e7acaa
Author: Rajeshbabu Chintaguntla 
Authored: Fri Mar 4 00:53:32 2016 +0530
Committer: Rajeshbabu Chintaguntla 
Committed: Fri Mar 4 00:53:32 2016 +0530

--
 .../hadoop/hbase/regionserver/IndexHalfStoreFileReader.java  | 8 
 1 file changed, 8 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/phoenix/blob/57c17ec9/phoenix-core/src/main/java/org/apache/hadoop/hbase/regionserver/IndexHalfStoreFileReader.java
--
diff --git 
a/phoenix-core/src/main/java/org/apache/hadoop/hbase/regionserver/IndexHalfStoreFileReader.java
 
b/phoenix-core/src/main/java/org/apache/hadoop/hbase/regionserver/IndexHalfStoreFileReader.java
index 9befc8c..cbc4ed6 100644
--- 
a/phoenix-core/src/main/java/org/apache/hadoop/hbase/regionserver/IndexHalfStoreFileReader.java
+++ 
b/phoenix-core/src/main/java/org/apache/hadoop/hbase/regionserver/IndexHalfStoreFileReader.java
@@ -485,14 +485,6 @@ public class IndexHalfStoreFileReader extends 
StoreFile.Reader {
 }
 
 @Override
-public byte[] getLastKey() {
-// This method won't get used for the index region. There is no need 
to call
-// getClosestRowBefore on the index table. Also this is a split 
region. Can not be further
-// split
-throw new UnsupportedOperationException("Method is not implemented!");
-}
-
-@Override
 public byte[] midkey() throws IOException {
 // Returns null to indicate file is not splitable.
 return null;