I did some search on how big HBASE 2.0 is. Here is some interesting numbers:
(1). How many resolved as fixed JIRAs are for 2.0 only? As of today morning (10/14), we have *875*! I used the following query: " project = HBase AND fixVersion = 2.0.0 AND fixVersion not in releasedVersions() AND fixVersion not in (1.3.0, 1.4.0) AND resolution = Fixed ORDER BY fixVersion ASC " - if we think 1.4.0 release would not happen sooner than 2.0.0, then the total number is bigger (*970*!) (2). How many JIRAs are not resolved, but marked for 2.0.0? As of today morning (10/14), we have *531* tickets. *132* of the 531 tickets are Patch Available. Of the 531 JIRAs, *352* are non-BUG/Test; so we have a lot of new features/improvement/tasks going on for 2.0.0. I used the following query: " project = HBase AND (fixVersion = 2.0.0 OR affectedVersion = 2.0.0) AND resolution is EMPTY ORDER BY fixVersion DESC " - this does not include any features that not marked any version; so the actual number would be bigger. If we can get more JIRAs resolved before branch-2, that would help reduce development/maintenance cost. After branch-2 is created, we need to trim down moving parts for sure. Thanks Stephen
