You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "stack (JIRA)" <ji...@apache.org> on 2018/03/21 22:13:13 UTC

[jira] [Updated] (HBASE-18647) Parameter cacheBlocks does not take effect in REST API for scan

     [ https://issues.apache.org/jira/browse/HBASE-18647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

stack updated HBASE-18647:
--------------------------
    Fix Version/s: 2.0.0

> Parameter cacheBlocks does not take effect in REST API for scan
> ---------------------------------------------------------------
>
>                 Key: HBASE-18647
>                 URL: https://issues.apache.org/jira/browse/HBASE-18647
>             Project: HBase
>          Issue Type: Bug
>          Components: REST
>    Affects Versions: 3.0.0, 1.4.0, 2.0.0
>            Reporter: Guangxu Cheng
>            Assignee: Guangxu Cheng
>            Priority: Major
>             Fix For: 3.0.0, 1.4.0, 2.0.0-alpha-3, 2.0.0
>
>         Attachments: HBASE-18647.branch-1.patch, HBASE-18647.patch
>
>
> Assign the parameter SCAN_BATCH_SIZE to the variable cacheBlocks  incorrectly.
> And cacheBlocks  has never been used.
> {code:title=TableResource.java|borderStyle=solid}
>   @Path("{scanspec: .*[*]$}")
>   public TableScanResource  getScanResource(
>       final @PathParam("scanspec") String scanSpec,
>       @DefaultValue(Integer.MAX_VALUE + "")
>       @QueryParam(Constants.SCAN_LIMIT) int userRequestedLimit,
>       @DefaultValue("") @QueryParam(Constants.SCAN_START_ROW) String startRow,
>       @DefaultValue("") @QueryParam(Constants.SCAN_END_ROW) String endRow,
>       @DefaultValue("") @QueryParam(Constants.SCAN_COLUMN) List<String> column,
>       @DefaultValue("1") @QueryParam(Constants.SCAN_MAX_VERSIONS) int maxVersions,
>       @DefaultValue("-1") @QueryParam(Constants.SCAN_BATCH_SIZE) int batchSize,
>       @DefaultValue("0") @QueryParam(Constants.SCAN_START_TIME) long startTime,
>       @DefaultValue(Long.MAX_VALUE + "") @QueryParam(Constants.SCAN_END_TIME) long endTime,
>       @DefaultValue("true") @QueryParam(Constants.SCAN_BATCH_SIZE) boolean cacheBlocks,
>       @DefaultValue("false") @QueryParam(Constants.SCAN_REVERSED) boolean reversed,
>       @DefaultValue("") @QueryParam(Constants.SCAN_FILTER) String paramFilter) {
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)