[jira] [Commented] (HBASE-12699) undefined method `setAsyncLogFlush' exception thrown when setting DEFERRED_LOG_FLUSH=true

2014-12-16 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/HBASE-12699?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14248686#comment-14248686
 ] 

Hudson commented on HBASE-12699:


SUCCESS: Integrated in HBase-1.0 #588 (See 
[https://builds.apache.org/job/HBase-1.0/588/])
HBASE-12699 undefined method 'setAsyncLogFlush' exception thrown when setting 
DEFERRED_LOG_FLUSH=true (Stephen Jiang) (tedyu: rev 
a9645e3e97ea06fa0acf277680124535226b4297)
* hbase-shell/src/main/ruby/hbase/admin.rb


 undefined method `setAsyncLogFlush' exception thrown when setting 
 DEFERRED_LOG_FLUSH=true
 --

 Key: HBASE-12699
 URL: https://issues.apache.org/jira/browse/HBASE-12699
 Project: HBase
  Issue Type: Bug
  Components: shell
Affects Versions: 2.0.0, 0.99.2
Reporter: Stephen Yuan Jiang
Assignee: Stephen Yuan Jiang
 Fix For: 1.0.0, 2.0.0

 Attachments: HBASE-12699.v1.branch-1.patch, 
 HBASE-12699.v1.master.patch

   Original Estimate: 24h
  Time Spent: 4h
  Remaining Estimate: 1h

 In hbase shell, when trying to set DEFERRED_LOG_FLUSH during create or alter, 
 an undefined method `setAsyncLogFlush' exception was thrown.  
 This is due to that DEFERRED_LOG_FLUSH was deprecated and the 
 setAsyncLogFlush method was removed.  It was replaced by DURABILITY.
 DEFERRED_LOG_FLUSH=true is the same as DURABILITY='ASYNC_WAL'
 The default is DURABILITY='SYNC_WAL', which is the same as the default 
 DEFERRED_LOG_FLUSH=false
 We should ask user to use the DURABILITY setting.  In the meantime, for 
 backward compatibility, the hbase shell should still allow setting 
 DEFERRED_LOG_FLUSH.  Internally, instead of calling setAsyncLogFlush, it 
 should call setDurability



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


[jira] [Commented] (HBASE-12699) undefined method `setAsyncLogFlush' exception thrown when setting DEFERRED_LOG_FLUSH=true

2014-12-16 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/HBASE-12699?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14248739#comment-14248739
 ] 

Hudson commented on HBASE-12699:


SUCCESS: Integrated in HBase-TRUNK #5929 (See 
[https://builds.apache.org/job/HBase-TRUNK/5929/])
HBASE-12699 undefined method 'setAsyncLogFlush' exception thrown when setting 
DEFERRED_LOG_FLUSH=true (Stephen Jiang) (tedyu: rev 
1359e87b1757dd32d81fa2039af55156de1b3298)
* hbase-shell/src/main/ruby/hbase/admin.rb


 undefined method `setAsyncLogFlush' exception thrown when setting 
 DEFERRED_LOG_FLUSH=true
 --

 Key: HBASE-12699
 URL: https://issues.apache.org/jira/browse/HBASE-12699
 Project: HBase
  Issue Type: Bug
  Components: shell
Affects Versions: 2.0.0, 0.99.2
Reporter: Stephen Yuan Jiang
Assignee: Stephen Yuan Jiang
 Fix For: 1.0.0, 2.0.0

 Attachments: HBASE-12699.v1.branch-1.patch, 
 HBASE-12699.v1.master.patch

   Original Estimate: 24h
  Time Spent: 4h
  Remaining Estimate: 1h

 In hbase shell, when trying to set DEFERRED_LOG_FLUSH during create or alter, 
 an undefined method `setAsyncLogFlush' exception was thrown.  
 This is due to that DEFERRED_LOG_FLUSH was deprecated and the 
 setAsyncLogFlush method was removed.  It was replaced by DURABILITY.
 DEFERRED_LOG_FLUSH=true is the same as DURABILITY='ASYNC_WAL'
 The default is DURABILITY='SYNC_WAL', which is the same as the default 
 DEFERRED_LOG_FLUSH=false
 We should ask user to use the DURABILITY setting.  In the meantime, for 
 backward compatibility, the hbase shell should still allow setting 
 DEFERRED_LOG_FLUSH.  Internally, instead of calling setAsyncLogFlush, it 
 should call setDurability



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


[jira] [Commented] (HBASE-12699) undefined method `setAsyncLogFlush' exception thrown when setting DEFERRED_LOG_FLUSH=true

2014-12-16 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/HBASE-12699?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14248736#comment-14248736
 ] 

Hadoop QA commented on HBASE-12699:
---

{color:red}-1 overall{color}.  Here are the results of testing the latest 
attachment 
  
http://issues.apache.org/jira/secure/attachment/12687519/HBASE-12699.v1.branch-1.patch
  against master branch at commit 96c6b9815ddbc9f2589655df4ad2381af04ac9f8.
  ATTACHMENT ID: 12687519

{color:green}+1 @author{color}.  The patch does not contain any @author 
tags.

{color:red}-1 tests included{color}.  The patch doesn't appear to include 
any new or modified tests.
Please justify why no new tests are needed for this 
patch.
Also please list what manual steps were performed to 
verify this patch.

{color:green}+1 javac{color}.  The applied patch does not increase the 
total number of javac compiler warnings.

{color:green}+1 javac{color}.  The applied patch does not increase the 
total number of javac compiler warnings.

{color:green}+1 javadoc{color}.  The javadoc tool did not generate any 
warning messages.

{color:green}+1 checkstyle{color}.  The applied patch does not increase the 
total number of checkstyle errors

{color:green}+1 findbugs{color}.  The patch does not introduce any new 
Findbugs (version 2.0.3) warnings.

{color:green}+1 release audit{color}.  The applied patch does not increase 
the total number of release audit warnings.

{color:red}-1 lineLengths{color}.  The patch introduces the following lines 
longer than 100:
+# DEFERRED_LOG_FLUSH is deprecated and was replaced by DURABILITY. 
 To keep backward compatible, it still exists.
+# However, it has to set before DURABILITY so that DURABILITY could 
overwrite if both args are set
+# DEFERRED_LOG_FLUSH is deprecated and was replaced by DURABILITY.  To 
keep backward compatible, it still exists.
+# However, it has to set before DURABILITY so that DURABILITY could 
overwrite if both args are set

  {color:green}+1 site{color}.  The mvn site goal succeeds with this patch.

{color:green}+1 core tests{color}.  The patch passed unit tests in .

Test results: 
https://builds.apache.org/job/PreCommit-HBASE-Build/12097//testReport/
Findbugs warnings: 
https://builds.apache.org/job/PreCommit-HBASE-Build/12097//artifact/patchprocess/newPatchFindbugsWarningshbase-rest.html
Findbugs warnings: 
https://builds.apache.org/job/PreCommit-HBASE-Build/12097//artifact/patchprocess/newPatchFindbugsWarningshbase-common.html
Findbugs warnings: 
https://builds.apache.org/job/PreCommit-HBASE-Build/12097//artifact/patchprocess/newPatchFindbugsWarningshbase-client.html
Findbugs warnings: 
https://builds.apache.org/job/PreCommit-HBASE-Build/12097//artifact/patchprocess/newPatchFindbugsWarningshbase-annotations.html
Findbugs warnings: 
https://builds.apache.org/job/PreCommit-HBASE-Build/12097//artifact/patchprocess/newPatchFindbugsWarningshbase-hadoop-compat.html
Findbugs warnings: 
https://builds.apache.org/job/PreCommit-HBASE-Build/12097//artifact/patchprocess/newPatchFindbugsWarningshbase-server.html
Findbugs warnings: 
https://builds.apache.org/job/PreCommit-HBASE-Build/12097//artifact/patchprocess/newPatchFindbugsWarningshbase-prefix-tree.html
Findbugs warnings: 
https://builds.apache.org/job/PreCommit-HBASE-Build/12097//artifact/patchprocess/newPatchFindbugsWarningshbase-protocol.html
Findbugs warnings: 
https://builds.apache.org/job/PreCommit-HBASE-Build/12097//artifact/patchprocess/newPatchFindbugsWarningshbase-thrift.html
Findbugs warnings: 
https://builds.apache.org/job/PreCommit-HBASE-Build/12097//artifact/patchprocess/newPatchFindbugsWarningshbase-examples.html
Findbugs warnings: 
https://builds.apache.org/job/PreCommit-HBASE-Build/12097//artifact/patchprocess/newPatchFindbugsWarningshbase-hadoop2-compat.html
Checkstyle Errors: 
https://builds.apache.org/job/PreCommit-HBASE-Build/12097//artifact/patchprocess/checkstyle-aggregate.html

  Console output: 
https://builds.apache.org/job/PreCommit-HBASE-Build/12097//console

This message is automatically generated.

 undefined method `setAsyncLogFlush' exception thrown when setting 
 DEFERRED_LOG_FLUSH=true
 --

 Key: HBASE-12699
 URL: https://issues.apache.org/jira/browse/HBASE-12699
 Project: HBase
  Issue Type: Bug
  Components: shell
Affects Versions: 2.0.0, 0.99.2
Reporter: Stephen Yuan Jiang
Assignee: Stephen Yuan Jiang
 Fix For: 1.0.0, 2.0.0

 Attachments: HBASE-12699.v1.branch-1.patch, 
 HBASE-12699.v1.master.patch

   Original Estimate: 24h
  Time Spent: 4h
  Remaining Estimate: 1h

 In hbase shell, when trying to set DEFERRED_LOG_FLUSH during 

[jira] [Commented] (HBASE-12699) undefined method `setAsyncLogFlush' exception thrown when setting DEFERRED_LOG_FLUSH=true

2014-12-16 Thread Enis Soztutar (JIRA)

[ 
https://issues.apache.org/jira/browse/HBASE-12699?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14248893#comment-14248893
 ] 

Enis Soztutar commented on HBASE-12699:
---

Commit to 0.98 as well ? Ping [~apurtell]. 

 undefined method `setAsyncLogFlush' exception thrown when setting 
 DEFERRED_LOG_FLUSH=true
 --

 Key: HBASE-12699
 URL: https://issues.apache.org/jira/browse/HBASE-12699
 Project: HBase
  Issue Type: Bug
  Components: shell
Affects Versions: 2.0.0, 0.99.2
Reporter: Stephen Yuan Jiang
Assignee: Stephen Yuan Jiang
 Fix For: 1.0.0, 2.0.0

 Attachments: HBASE-12699.v1.branch-1.patch, 
 HBASE-12699.v1.master.patch

   Original Estimate: 24h
  Time Spent: 4h
  Remaining Estimate: 1h

 In hbase shell, when trying to set DEFERRED_LOG_FLUSH during create or alter, 
 an undefined method `setAsyncLogFlush' exception was thrown.  
 This is due to that DEFERRED_LOG_FLUSH was deprecated and the 
 setAsyncLogFlush method was removed.  It was replaced by DURABILITY.
 DEFERRED_LOG_FLUSH=true is the same as DURABILITY='ASYNC_WAL'
 The default is DURABILITY='SYNC_WAL', which is the same as the default 
 DEFERRED_LOG_FLUSH=false
 We should ask user to use the DURABILITY setting.  In the meantime, for 
 backward compatibility, the hbase shell should still allow setting 
 DEFERRED_LOG_FLUSH.  Internally, instead of calling setAsyncLogFlush, it 
 should call setDurability



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


[jira] [Commented] (HBASE-12699) undefined method `setAsyncLogFlush' exception thrown when setting DEFERRED_LOG_FLUSH=true

2014-12-16 Thread Stephen Yuan Jiang (JIRA)

[ 
https://issues.apache.org/jira/browse/HBASE-12699?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14249104#comment-14249104
 ] 

Stephen Yuan Jiang commented on HBASE-12699:


add an addendum to fix the help comments.

 undefined method `setAsyncLogFlush' exception thrown when setting 
 DEFERRED_LOG_FLUSH=true
 --

 Key: HBASE-12699
 URL: https://issues.apache.org/jira/browse/HBASE-12699
 Project: HBase
  Issue Type: Bug
  Components: shell
Affects Versions: 2.0.0, 0.99.2
Reporter: Stephen Yuan Jiang
Assignee: Stephen Yuan Jiang
 Fix For: 1.0.0, 2.0.0, 0.98.10

 Attachments: HBASE-12699.v1.branch-1.patch, 
 HBASE-12699.v1.master.patch, HBASE-12699.v1addendum.patch

   Original Estimate: 24h
  Time Spent: 4h
  Remaining Estimate: 1h

 In hbase shell, when trying to set DEFERRED_LOG_FLUSH during create or alter, 
 an undefined method `setAsyncLogFlush' exception was thrown.  
 This is due to that DEFERRED_LOG_FLUSH was deprecated and the 
 setAsyncLogFlush method was removed.  It was replaced by DURABILITY.
 DEFERRED_LOG_FLUSH=true is the same as DURABILITY='ASYNC_WAL'
 The default is DURABILITY='SYNC_WAL', which is the same as the default 
 DEFERRED_LOG_FLUSH=false
 We should ask user to use the DURABILITY setting.  In the meantime, for 
 backward compatibility, the hbase shell should still allow setting 
 DEFERRED_LOG_FLUSH.  Internally, instead of calling setAsyncLogFlush, it 
 should call setDurability



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


[jira] [Commented] (HBASE-12699) undefined method `setAsyncLogFlush' exception thrown when setting DEFERRED_LOG_FLUSH=true

2014-12-16 Thread Ted Yu (JIRA)

[ 
https://issues.apache.org/jira/browse/HBASE-12699?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14249118#comment-14249118
 ] 

Ted Yu commented on HBASE-12699:


Addendum integrated to branch-1 and master.

 undefined method `setAsyncLogFlush' exception thrown when setting 
 DEFERRED_LOG_FLUSH=true
 --

 Key: HBASE-12699
 URL: https://issues.apache.org/jira/browse/HBASE-12699
 Project: HBase
  Issue Type: Bug
  Components: shell
Affects Versions: 2.0.0, 0.99.2
Reporter: Stephen Yuan Jiang
Assignee: Stephen Yuan Jiang
 Fix For: 1.0.0, 2.0.0, 0.98.10

 Attachments: HBASE-12699.v1.branch-1.patch, 
 HBASE-12699.v1.master.patch, HBASE-12699.v1addendum.patch

   Original Estimate: 24h
  Time Spent: 4h
  Remaining Estimate: 1h

 In hbase shell, when trying to set DEFERRED_LOG_FLUSH during create or alter, 
 an undefined method `setAsyncLogFlush' exception was thrown.  
 This is due to that DEFERRED_LOG_FLUSH was deprecated and the 
 setAsyncLogFlush method was removed.  It was replaced by DURABILITY.
 DEFERRED_LOG_FLUSH=true is the same as DURABILITY='ASYNC_WAL'
 The default is DURABILITY='SYNC_WAL', which is the same as the default 
 DEFERRED_LOG_FLUSH=false
 We should ask user to use the DURABILITY setting.  In the meantime, for 
 backward compatibility, the hbase shell should still allow setting 
 DEFERRED_LOG_FLUSH.  Internally, instead of calling setAsyncLogFlush, it 
 should call setDurability



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


[jira] [Commented] (HBASE-12699) undefined method `setAsyncLogFlush' exception thrown when setting DEFERRED_LOG_FLUSH=true

2014-12-16 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/HBASE-12699?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14249145#comment-14249145
 ] 

Hudson commented on HBASE-12699:


FAILURE: Integrated in HBase-0.98 #747 (See 
[https://builds.apache.org/job/HBase-0.98/747/])
HBASE-12699 undefined method 'setAsyncLogFlush' exception thrown when setting 
DEFERRED_LOG_FLUSH=true (Stephen Jiang) (apurtell: rev 
71c0e5b9de244e0bb96ca4c5b010f981acbda1ee)
* hbase-shell/src/main/ruby/hbase/admin.rb


 undefined method `setAsyncLogFlush' exception thrown when setting 
 DEFERRED_LOG_FLUSH=true
 --

 Key: HBASE-12699
 URL: https://issues.apache.org/jira/browse/HBASE-12699
 Project: HBase
  Issue Type: Bug
  Components: shell
Affects Versions: 2.0.0, 0.99.2
Reporter: Stephen Yuan Jiang
Assignee: Stephen Yuan Jiang
 Fix For: 1.0.0, 2.0.0, 0.98.10

 Attachments: HBASE-12699.v1.branch-1.patch, 
 HBASE-12699.v1.master.patch, HBASE-12699.v1addendum.patch

   Original Estimate: 24h
  Time Spent: 4h
  Remaining Estimate: 1h

 In hbase shell, when trying to set DEFERRED_LOG_FLUSH during create or alter, 
 an undefined method `setAsyncLogFlush' exception was thrown.  
 This is due to that DEFERRED_LOG_FLUSH was deprecated and the 
 setAsyncLogFlush method was removed.  It was replaced by DURABILITY.
 DEFERRED_LOG_FLUSH=true is the same as DURABILITY='ASYNC_WAL'
 The default is DURABILITY='SYNC_WAL', which is the same as the default 
 DEFERRED_LOG_FLUSH=false
 We should ask user to use the DURABILITY setting.  In the meantime, for 
 backward compatibility, the hbase shell should still allow setting 
 DEFERRED_LOG_FLUSH.  Internally, instead of calling setAsyncLogFlush, it 
 should call setDurability



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


[jira] [Commented] (HBASE-12699) undefined method `setAsyncLogFlush' exception thrown when setting DEFERRED_LOG_FLUSH=true

2014-12-16 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/HBASE-12699?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14249215#comment-14249215
 ] 

Hudson commented on HBASE-12699:


FAILURE: Integrated in HBase-TRUNK #5932 (See 
[https://builds.apache.org/job/HBase-TRUNK/5932/])
HBASE-12699 Addendum modifies shell help (Stephen Jiang) (tedyu: rev 
889675fb9c83e85edebc31f309c8e03dccfff5ab)
* 12699.v1addendum.patch
HBASE-12699 Addendum modifies shell help (Stephen Jiang) (tedyu: rev 
9e7f7211b95ef4e9c64f5e54411c7c9fa7eeb235)
* hbase-shell/src/main/ruby/shell/commands/alter.rb
* 12699.v1addendum.patch


 undefined method `setAsyncLogFlush' exception thrown when setting 
 DEFERRED_LOG_FLUSH=true
 --

 Key: HBASE-12699
 URL: https://issues.apache.org/jira/browse/HBASE-12699
 Project: HBase
  Issue Type: Bug
  Components: shell
Affects Versions: 2.0.0, 0.99.2
Reporter: Stephen Yuan Jiang
Assignee: Stephen Yuan Jiang
 Fix For: 1.0.0, 2.0.0, 0.98.10

 Attachments: HBASE-12699.v1.branch-1.patch, 
 HBASE-12699.v1.master.patch, HBASE-12699.v1addendum.patch

   Original Estimate: 24h
  Time Spent: 4h
  Remaining Estimate: 1h

 In hbase shell, when trying to set DEFERRED_LOG_FLUSH during create or alter, 
 an undefined method `setAsyncLogFlush' exception was thrown.  
 This is due to that DEFERRED_LOG_FLUSH was deprecated and the 
 setAsyncLogFlush method was removed.  It was replaced by DURABILITY.
 DEFERRED_LOG_FLUSH=true is the same as DURABILITY='ASYNC_WAL'
 The default is DURABILITY='SYNC_WAL', which is the same as the default 
 DEFERRED_LOG_FLUSH=false
 We should ask user to use the DURABILITY setting.  In the meantime, for 
 backward compatibility, the hbase shell should still allow setting 
 DEFERRED_LOG_FLUSH.  Internally, instead of calling setAsyncLogFlush, it 
 should call setDurability



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


[jira] [Commented] (HBASE-12699) undefined method `setAsyncLogFlush' exception thrown when setting DEFERRED_LOG_FLUSH=true

2014-12-16 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/HBASE-12699?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14249230#comment-14249230
 ] 

Hudson commented on HBASE-12699:


FAILURE: Integrated in HBase-1.0 #590 (See 
[https://builds.apache.org/job/HBase-1.0/590/])
HBASE-12699 Addendum modifies shell help (Stephen Jiang) (tedyu: rev 
bb1b2f4eebc683a2a7aa80b341664ba8129f5080)
* hbase-shell/src/main/ruby/shell/commands/alter.rb


 undefined method `setAsyncLogFlush' exception thrown when setting 
 DEFERRED_LOG_FLUSH=true
 --

 Key: HBASE-12699
 URL: https://issues.apache.org/jira/browse/HBASE-12699
 Project: HBase
  Issue Type: Bug
  Components: shell
Affects Versions: 2.0.0, 0.99.2
Reporter: Stephen Yuan Jiang
Assignee: Stephen Yuan Jiang
 Fix For: 1.0.0, 2.0.0, 0.98.10

 Attachments: HBASE-12699.v1.branch-1.patch, 
 HBASE-12699.v1.master.patch, HBASE-12699.v1addendum.patch

   Original Estimate: 24h
  Time Spent: 4h
  Remaining Estimate: 1h

 In hbase shell, when trying to set DEFERRED_LOG_FLUSH during create or alter, 
 an undefined method `setAsyncLogFlush' exception was thrown.  
 This is due to that DEFERRED_LOG_FLUSH was deprecated and the 
 setAsyncLogFlush method was removed.  It was replaced by DURABILITY.
 DEFERRED_LOG_FLUSH=true is the same as DURABILITY='ASYNC_WAL'
 The default is DURABILITY='SYNC_WAL', which is the same as the default 
 DEFERRED_LOG_FLUSH=false
 We should ask user to use the DURABILITY setting.  In the meantime, for 
 backward compatibility, the hbase shell should still allow setting 
 DEFERRED_LOG_FLUSH.  Internally, instead of calling setAsyncLogFlush, it 
 should call setDurability



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


[jira] [Commented] (HBASE-12699) undefined method `setAsyncLogFlush' exception thrown when setting DEFERRED_LOG_FLUSH=true

2014-12-16 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/HBASE-12699?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14249234#comment-14249234
 ] 

Hudson commented on HBASE-12699:


SUCCESS: Integrated in HBase-0.98-on-Hadoop-1.1 #713 (See 
[https://builds.apache.org/job/HBase-0.98-on-Hadoop-1.1/713/])
HBASE-12699 undefined method 'setAsyncLogFlush' exception thrown when setting 
DEFERRED_LOG_FLUSH=true (Stephen Jiang) (apurtell: rev 
71c0e5b9de244e0bb96ca4c5b010f981acbda1ee)
* hbase-shell/src/main/ruby/hbase/admin.rb


 undefined method `setAsyncLogFlush' exception thrown when setting 
 DEFERRED_LOG_FLUSH=true
 --

 Key: HBASE-12699
 URL: https://issues.apache.org/jira/browse/HBASE-12699
 Project: HBase
  Issue Type: Bug
  Components: shell
Affects Versions: 2.0.0, 0.99.2
Reporter: Stephen Yuan Jiang
Assignee: Stephen Yuan Jiang
 Fix For: 1.0.0, 2.0.0, 0.98.10

 Attachments: HBASE-12699.v1.branch-1.patch, 
 HBASE-12699.v1.master.patch, HBASE-12699.v1addendum.patch

   Original Estimate: 24h
  Time Spent: 4h
  Remaining Estimate: 1h

 In hbase shell, when trying to set DEFERRED_LOG_FLUSH during create or alter, 
 an undefined method `setAsyncLogFlush' exception was thrown.  
 This is due to that DEFERRED_LOG_FLUSH was deprecated and the 
 setAsyncLogFlush method was removed.  It was replaced by DURABILITY.
 DEFERRED_LOG_FLUSH=true is the same as DURABILITY='ASYNC_WAL'
 The default is DURABILITY='SYNC_WAL', which is the same as the default 
 DEFERRED_LOG_FLUSH=false
 We should ask user to use the DURABILITY setting.  In the meantime, for 
 backward compatibility, the hbase shell should still allow setting 
 DEFERRED_LOG_FLUSH.  Internally, instead of calling setAsyncLogFlush, it 
 should call setDurability



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