[
https://issues.apache.org/jira/browse/HBASE-7596?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13555691#comment-13555691
]
Matteo Bertozzi commented on HBASE-7596:
----------------------------------------
one other test quick test too see the problem is to run from the shell
{code}
create 't1', 'cf'
disable 't1'
alter 't1', NAME => 'f1', VERSIONS => 5
alter 't1', METHOD => 'table_att', MAX_FILESIZE => '134217728'
alter 't1', 'delete' => 'f1'
alter 't1', NAME => 'f1', VERSIONS => 5
{code}
and pre-patch you get /hbase/t1/.tableinfo.0000000008 post patch
/hbase/t1/.tableinfo.0000000005
> Redundant FSTableDescriptor update
> ----------------------------------
>
> Key: HBASE-7596
> URL: https://issues.apache.org/jira/browse/HBASE-7596
> Project: HBase
> Issue Type: Bug
> Components: master
> Affects Versions: 0.96.0, 0.94.4
> Reporter: Matteo Bertozzi
> Assignee: Matteo Bertozzi
> Priority: Trivial
> Attachments: HBASE-7596-v0.patch
>
>
> The TableAddFamilyHandler and TableDeleteFamilyHandler code looks like
> {code}
> // Update table descriptor in HDFS
> HTableDescriptor htd = this.masterServices.getMasterFileSystem()
> .addColumn(tableName, familyDesc);
> // Update in-memory descriptor cache
> this.masterServices.getTableDescriptors().add(htd);
> {code}
> while the ModifyTableHandler code is just
> {code}
> // Update descriptor
> this.masterServices.getTableDescriptors().add(this.htd);
> {code}
> The MasterFileSystem code looks like
> {code}
> HTableDescriptor htd = this.services.getTableDescriptors().get(tableName);
> // ...add/remove columns to the descriptor...
> this.services.getTableDescriptors().add(htd);
> {code}
> so, the service.getTableDescriptors().add() is called two times for the
> add/delete family handler. (and the table descriptor rewritten twice
> FSTableDescriptors.updateHTableDescriptor())
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira