Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 66623200D2C for ; Sun, 29 Oct 2017 23:19:08 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 6500A160BE3; Sun, 29 Oct 2017 22:19:08 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 826031609E9 for ; Sun, 29 Oct 2017 23:19:07 +0100 (CET) Received: (qmail 19517 invoked by uid 500); 29 Oct 2017 22:19:06 -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 19506 invoked by uid 99); 29 Oct 2017 22:19:06 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 29 Oct 2017 22:19:06 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id D28F6CA308 for ; Sun, 29 Oct 2017 22:19:05 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -98.702 X-Spam-Level: X-Spam-Status: No, score=-98.702 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_NUMSUBJECT=0.5, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id POuhMeMFMA4Y for ; Sun, 29 Oct 2017 22:19:04 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id 709D75FD38 for ; Sun, 29 Oct 2017 22:19:04 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 1CCE8E101B for ; Sun, 29 Oct 2017 22:19:03 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 2084C212F9 for ; Sun, 29 Oct 2017 22:19:01 +0000 (UTC) Date: Sun, 29 Oct 2017 22:19:01 +0000 (UTC) From: "Sean Busbey (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HBASE-19099) Evaluate the remaining compatibility concerns between branch-1.3 and branch-1.4 / branch-1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Sun, 29 Oct 2017 22:19:08 -0000 [ https://issues.apache.org/jira/browse/HBASE-19099?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16224227#comment-16224227 ] Sean Busbey commented on HBASE-19099: ------------------------------------- They're in an IA.Public class and these are minor releases. That's my only motivation. "Ignored but user code that references the field keeps working" is fine by me, presuming the ignoring was justified when it happened. Ideally there'll be a release note on that change. > Evaluate the remaining compatibility concerns between branch-1.3 and branch-1.4 / branch-1 > ------------------------------------------------------------------------------------------ > > Key: HBASE-19099 > URL: https://issues.apache.org/jira/browse/HBASE-19099 > Project: HBase > Issue Type: Task > Affects Versions: 1.4.0, 1.5.0 > Reporter: Andrew Purtell > Assignee: Andrew Purtell > Priority: Blocker > Fix For: 1.4.0, 1.5.0 > > > For discussion, here are the remaining compatibility concerns you will encounter upon moving up from 1.3 to 1.4: > The below all relate to source level compatibility. Recompilation of a client program may be terminated with the message "class C is not abstract and does not override abstract method M in TYPE". According to our compatibility guidelines we are allowed to add methods to interfaces, so these are ALLOWED. Please let me know if you disagree. > package org.apache.hadoop.hbase.client > interface Admin > * Abstract method clearDeadServers ( List ) has been added to this interface. > * Abstract method cloneSnapshot ( String, TableName, boolean ) has been added to this interface. > * Abstract method isCleanerChoreEnabled ( ) has been added to this interface. > * Abstract method isMasterInMaintenanceMode ( ) has been added to this interface. > * Abstract method listDeadServers ( ) has been added to this interface. > * Abstract method restoreSnapshot ( String, boolean, boolean ) has been added to this interface. > * Abstract method runCleanerChore ( ) has been added to this interface. > * Abstract method setCleanerChoreRunning ( boolean ) has been added to this interface. > package org.apache.hadoop.hbase.client > interface ResultScanner > * Abstract method renewLease ( ) has been added to this interface. > * Abstract method getScanMetrics ( ) has been added to this interface. > package org.apache.hadoop.hbase.client > interface Table > * Abstract method getReadRpcTimeout ( ) has been added to this interface. > * Abstract method getWriteRpcTimeout ( ) has been added to this interface. > * Abstract method setReadRpcTimeout ( int ) has been added to this interface. > * Abstract method setWriteRpcTimeout ( int ) has been added to this interface. > package org.apache.hadoop.hbase.replication > interface ReplicationPeer > * Abstract method getPeerBandwidth ( ) has been added to this interface. > * Abstract method trackPeerConfigChanges ( ReplicationPeerConfigListener ) has been added to this interface. > package org.apache.hadoop.hbase.coprocessor > interface MasterCoprocessorEnvironment > * Abstract method getMetricRegistryForMaster ( ) has been added to this interface. > package org.apache.hadoop.hbase.coprocessor > interface MasterObserver > * Abstract method postAddRSGroup ( ObserverContext, String ) has been added to this interface. > * Abstract method postBalanceRSGroup ( ObserverContext, String, boolean ) has been added to this interface. > * Abstract method postClearDeadServers ( ObserverContext ) has been added to this interface. > * Abstract method postListDeadServers ( ObserverContext ) has been added to this interface. > * Abstract method postMoveServers ( ObserverContext, Set
, String ) has been added to this interface. > * Abstract method postMoveServersAndTables ( ObserverContext, Set
, Set, String ) has been added to this interface. > * Abstract method postMoveTables ( ObserverContext, Set, String ) has been added to this interface. > * Abstract method postRemoveRSGroup ( ObserverContext, String ) has been added to this interface. > * Abstract method preAddRSGroup ( ObserverContext, String ) has been added to this interface. > * Abstract method preBalanceRSGroup ( ObserverContext, String ) has been added to this interface. > * Abstract method preClearDeadServers ( ObserverContext ) has been added to this interface. > * Abstract method preListDeadServers ( ObserverContext ) has been added to this interface. > * Abstract method preMoveServers ( ObserverContext, Set
, String ) has been added to this interface. > * Abstract method preMoveServersAndTables ( ObserverContext, Set
, Set, String ) has been added to this interface. > * Abstract method preMoveTables ( ObserverContext, Set, String ) has been added to this interface. > * Abstract method preRemoveRSGroup ( ObserverContext, String ) has been added to this interface. > package org.apache.hadoop.hbase.coprocessor > interface RegionCoprocessorEnvironment > * Abstract method getMetricRegistryForRegionServer ( ) has been added to this interface. > package org.apache.hadoop.hbase.coprocessor > interface RegionObserver > * Abstract method postCommitStoreFile ( ObserverContext, byte[ ], Path, Path ) has been added to this interface. > * Abstract method preCommitStoreFile ( ObserverContext, byte[ ], List> ) has been added to this interface. > * Abstract method preCompactScannerOpen ( ObserverContext, Store, List, ScanType, long, InternalScanner, CompactionRequest, long ) has been added to this interface. > * Abstract method preFlushScannerOpen ( ObserverContext, Store, KeyValueScanner, InternalScanner, long ) has been added to this interface. > package org.apache.hadoop.hbase.coprocessor > interface WALCoprocessorEnvironment > * Abstract method getMetricRegistryForRegionServer ( ) has been added to this interface. > package org.apache.hadoop.hbase.ipc > class RpcScheduler > * Abstract method getActiveReadRpcHandlerCount ( ) has been added to this class. > * Abstract method getActiveScanRpcHandlerCount ( ) has been added to this class. > * Abstract method getActiveWriteRpcHandlerCount ( ) has been added to this class. > * Abstract method getReadQueueLength ( ) has been added to this class. > * Abstract method getScanQueueLength ( ) has been added to this class. > * Abstract method getWriteQueueLength ( ) has been added to this class. > package org.apache.hadoop.hbase.regionserver > interface Region > * Abstract method closeRegionOperation ( Region.Operation ) has been added to this interface. > * Abstract method waitForFlushes ( ) has been added to this interface. > package org.apache.hadoop.hbase.replication > interface ReplicationEndpoint 1 > * Added super-interface ReplicationPeerConfigListener. (Added methods.) > . > . > AsyncRpcClient has been removed. It was not Public. This change is ALLOWED. > package org.apache.hadoop.hbase.ipc > class AsyncRpcClient > . > . > There are also changes to the LimitedPrivate interface Store. We previously discussed this, and solicited and received feedback from the Phoenix project saying they do not represent a problem, so the changes will be ALLOWED. > package org.apache.hadoop.hbase.regionserver > interface Store > * Abstract method add ( Iterable ) has been added to this interface. > * Abstract method bulkLoadHFile ( byte[ ], String, Path ) has been added to this interface. > * Abstract method getScanners ( List, boolean, boolean, boolean, boolean, ScanQueryMatcher, byte[ ], byte[ ], long, boolean ) has been added to this interface. > * Abstract method getScanners ( boolean, boolean, boolean, boolean, ScanQueryMatcher, byte[ ], byte[ ], long ) has been added to this interface. > * Abstract method upsert ( Iterable, long, List ) has been added to this interface. > * Abstract method bulkLoadHFile ( String, long ) has been removed from this interface. > * Abstract method getScanners ( List, boolean, boolean, boolean, boolean, ScanQueryMatcher, byte[ ], byte[ ], long, boolean ) has been removed from this interface. > * Abstract method getScanners ( boolean, boolean, boolean, boolean, ScanQueryMatcher, byte[ ], byte[ ], long ) has been removed from this interface. > * Abstract method upsert ( Iterable, long ) has been removed from this interface. > . > . > A number of configuration constants were (re)moved from SimpleRpcScheduler, tagged LimitedPrivate. I think these can be ALLOWED. > package org.apache.hadoop.hbase.ipc > class SimpleRpcScheduler > Removed constants > - CALL_QUEUE_CODEL_DEFAULT_INTERVAL > - CALL_QUEUE_CODEL_DEFAULT_LIFO_THRESHOLD > - CALL_QUEUE_CODEL_DEFAULT_TARGET_DELAY > - CALL_QUEUE_CODEL_INTERVAL > - CALL_QUEUE_CODEL_LIFO_THRESHOLD > - CALL_QUEUE_CODEL_TARGET_DELAY > - CALL_QUEUE_HANDLER_FACTOR_CONF_KEY > - CALL_QUEUE_READ_SHARE_CONF_KEY > - CALL_QUEUE_SCAN_SHARE_CONF_KEY > - CALL_QUEUE_TYPE_CODEL_CONF_VALUE > - CALL_QUEUE_TYPE_CONF_DEFAULT > - CALL_QUEUE_TYPE_CONF_KEY > - CALL_QUEUE_TYPE_DEADLINE_CONF_VALUE > - CALL_QUEUE_TYPE_FIFO_CONF_VALUE > - QUEUE_MAX_CALL_DELAY_CONF_KEY > . > . > Two constants were removed from Public class TableInputFormatBase. I think these are internal implementation details and so removal can be ALLOWED, but we could put them back if need be. > package org.apache.hadoop.hbase.mapreduce > class TableInputFormatBase > Removed constants > - INPUT_AUTOBALANCE_MAXSKEWRATIO > - TABLE_ROW_TEXTKEY -- This message was sent by Atlassian JIRA (v6.4.14#64029)