[jira] [Updated] (HBASE-15153) Apply checkFamilies addendum on increment to 1.1 and 1.0

2016-01-22 Thread stack (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-15153?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

stack updated HBASE-15153:
--
Resolution: Fixed
Status: Resolved  (was: Patch Available)

Pushed one-liner. Need to dig in on these tests that fail with regularity on 
these old branches (one is mine...)

> Apply checkFamilies addendum on increment to 1.1 and 1.0
> 
>
> Key: HBASE-15153
> URL: https://issues.apache.org/jira/browse/HBASE-15153
> Project: HBase
>  Issue Type: Sub-task
>  Components: Performance
>Reporter: stack
>Assignee: stack
> Fix For: 1.1.4, 1.0.4
>
> Attachments: 15153.branch-1.1.patch, 15153v2.branch-1.1.patch, 
> 15153v3.branch-1.1.patch
>
>
> branch-1.1 and branch-1.0 need this:
> --- 
> a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
> +++ 
> b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
> @@ -7377,6 +7377,7 @@ public class HRegion implements HeapSize, 
> PropagatingConfigurationObserver, Regi
>  checkReadOnly();
>  checkResources();
>  checkRow(mutation.getRow(), op.toString());
> +checkFamilies(mutation.getFamilyCellMap().keySet());
>  startRegionOperation(op);
>  this.writeRequestsCount.increment();
>  try {
> Its an addendum on HBASE-15091 so fix for this oversight is in branch-1.2+.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (HBASE-15153) Apply checkFamilies addendum on increment to 1.1 and 1.0

2016-01-21 Thread stack (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-15153?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

stack updated HBASE-15153:
--
Attachment: 15153.branch-1.1.patch

> Apply checkFamilies addendum on increment to 1.1 and 1.0
> 
>
> Key: HBASE-15153
> URL: https://issues.apache.org/jira/browse/HBASE-15153
> Project: HBase
>  Issue Type: Sub-task
>  Components: Performance
>Reporter: stack
>Assignee: stack
> Attachments: 15153.branch-1.1.patch
>
>
> branch-1.1 and branch-1.0 need this:
> --- 
> a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
> +++ 
> b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
> @@ -7377,6 +7377,7 @@ public class HRegion implements HeapSize, 
> PropagatingConfigurationObserver, Regi
>  checkReadOnly();
>  checkResources();
>  checkRow(mutation.getRow(), op.toString());
> +checkFamilies(mutation.getFamilyCellMap().keySet());
>  startRegionOperation(op);
>  this.writeRequestsCount.increment();
>  try {
> Its an addendum on HBASE-15091 so fix for this oversight is in branch-1.2+.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (HBASE-15153) Apply checkFamilies addendum on increment to 1.1 and 1.0

2016-01-21 Thread stack (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-15153?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

stack updated HBASE-15153:
--
Fix Version/s: 1.0.4
   1.1.4
   Status: Patch Available  (was: Open)

> Apply checkFamilies addendum on increment to 1.1 and 1.0
> 
>
> Key: HBASE-15153
> URL: https://issues.apache.org/jira/browse/HBASE-15153
> Project: HBase
>  Issue Type: Sub-task
>  Components: Performance
>Reporter: stack
>Assignee: stack
> Fix For: 1.1.4, 1.0.4
>
> Attachments: 15153.branch-1.1.patch
>
>
> branch-1.1 and branch-1.0 need this:
> --- 
> a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
> +++ 
> b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
> @@ -7377,6 +7377,7 @@ public class HRegion implements HeapSize, 
> PropagatingConfigurationObserver, Regi
>  checkReadOnly();
>  checkResources();
>  checkRow(mutation.getRow(), op.toString());
> +checkFamilies(mutation.getFamilyCellMap().keySet());
>  startRegionOperation(op);
>  this.writeRequestsCount.increment();
>  try {
> Its an addendum on HBASE-15091 so fix for this oversight is in branch-1.2+.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (HBASE-15153) Apply checkFamilies addendum on increment to 1.1 and 1.0

2016-01-21 Thread stack (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-15153?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

stack updated HBASE-15153:
--
Attachment: 15153v2.branch-1.1.patch

> Apply checkFamilies addendum on increment to 1.1 and 1.0
> 
>
> Key: HBASE-15153
> URL: https://issues.apache.org/jira/browse/HBASE-15153
> Project: HBase
>  Issue Type: Sub-task
>  Components: Performance
>Reporter: stack
>Assignee: stack
> Fix For: 1.1.4, 1.0.4
>
> Attachments: 15153.branch-1.1.patch, 15153v2.branch-1.1.patch
>
>
> branch-1.1 and branch-1.0 need this:
> --- 
> a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
> +++ 
> b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
> @@ -7377,6 +7377,7 @@ public class HRegion implements HeapSize, 
> PropagatingConfigurationObserver, Regi
>  checkReadOnly();
>  checkResources();
>  checkRow(mutation.getRow(), op.toString());
> +checkFamilies(mutation.getFamilyCellMap().keySet());
>  startRegionOperation(op);
>  this.writeRequestsCount.increment();
>  try {
> Its an addendum on HBASE-15091 so fix for this oversight is in branch-1.2+.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (HBASE-15153) Apply checkFamilies addendum on increment to 1.1 and 1.0

2016-01-21 Thread stack (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-15153?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

stack updated HBASE-15153:
--
Attachment: 15153v3.branch-1.1.patch

Third attempt at a one-liner. Probably time to go to bed.

> Apply checkFamilies addendum on increment to 1.1 and 1.0
> 
>
> Key: HBASE-15153
> URL: https://issues.apache.org/jira/browse/HBASE-15153
> Project: HBase
>  Issue Type: Sub-task
>  Components: Performance
>Reporter: stack
>Assignee: stack
> Fix For: 1.1.4, 1.0.4
>
> Attachments: 15153.branch-1.1.patch, 15153v2.branch-1.1.patch, 
> 15153v3.branch-1.1.patch
>
>
> branch-1.1 and branch-1.0 need this:
> --- 
> a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
> +++ 
> b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
> @@ -7377,6 +7377,7 @@ public class HRegion implements HeapSize, 
> PropagatingConfigurationObserver, Regi
>  checkReadOnly();
>  checkResources();
>  checkRow(mutation.getRow(), op.toString());
> +checkFamilies(mutation.getFamilyCellMap().keySet());
>  startRegionOperation(op);
>  this.writeRequestsCount.increment();
>  try {
> Its an addendum on HBASE-15091 so fix for this oversight is in branch-1.2+.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)