Return-Path: X-Original-To: apmail-hbase-issues-archive@www.apache.org Delivered-To: apmail-hbase-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id F3A1F90C3 for ; Thu, 23 Feb 2012 06:52:22 +0000 (UTC) Received: (qmail 29375 invoked by uid 500); 23 Feb 2012 06:52:22 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 29337 invoked by uid 500); 23 Feb 2012 06:52:22 -0000 Mailing-List: contact issues-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@hbase.apache.org Received: (qmail 29325 invoked by uid 99); 23 Feb 2012 06:52:22 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Feb 2012 06:52:22 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Feb 2012 06:52:20 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id 67E9A336A00 for ; Thu, 23 Feb 2012 06:51:59 +0000 (UTC) Date: Thu, 23 Feb 2012 06:51:59 +0000 (UTC) From: "Mikhail Bautin (Updated) (JIRA)" To: issues@hbase.apache.org Message-ID: <1558094387.8717.1329979919426.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <1211941610.2497.1329881097239.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Updated] (HBASE-5442) Use builder pattern in StoreFile and HFile MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HBASE-5442?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mikhail Bautin updated HBASE-5442: ---------------------------------- Attachment: HFile-StoreFile-builder-2012-02-22_22_49_00.patch > Use builder pattern in StoreFile and HFile > ------------------------------------------ > > Key: HBASE-5442 > URL: https://issues.apache.org/jira/browse/HBASE-5442 > Project: HBase > Issue Type: Improvement > Reporter: Mikhail Bautin > Assignee: Mikhail Bautin > Attachments: D1893.1.patch, D1893.2.patch, HFile-StoreFile-builder-2012-02-22_22_49_00.patch > > > We have five ways to create an HFile writer, two ways to create a StoreFile writer, and the sets of parameters keep changing, creating a lot of confusion, especially when porting patches across branches. The same thing is happening to HColumnDescriptor. I think we should move to a "builder pattern" solution, e.g. > {code:java} > HFileWriter w = HFile.getWriterBuilder(conf, ) > .setParameter1(value1) > .setParameter2(value2) > ... > .build(); > {code} > Each parameter setter being on its own line will make merges/cherry-pick work properly, we will not have to even mention default parameters again, and we can eliminate a dozen impossible-to-remember constructors. > This particular JIRA addresses StoreFile and HFile refactoring. For HColumnDescriptor refactoring see HBASE-5357. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira