You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "stack (JIRA)" <ji...@apache.org> on 2008/09/04 02:11:44 UTC

[jira] Commented: (HBASE-867) If millions of columns in a column family, hbase scanner won't come up

    [ https://issues.apache.org/jira/browse/HBASE-867?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12628210#action_12628210 ] 

stack commented on HBASE-867:
-----------------------------

It looks like we should be breaking out of the main while loop in the next method after we pass out a column match -- because store keys are sorted -- but then we fall on the next while loop which just nexts until we hit the next row.

Normally this is fine, if only a few columns in a row, but in Daniel's case its taking forever to move to the next row.

Also, we won't split a region if only one row so its looking like his store files are large, 1G.

> If millions of columns in a column family, hbase scanner won't come up
> ----------------------------------------------------------------------
>
>                 Key: HBASE-867
>                 URL: https://issues.apache.org/jira/browse/HBASE-867
>             Project: Hadoop HBase
>          Issue Type: Bug
>            Reporter: stack
>
> Our Daniel has uploaded a table that has a column family with millions of columns in it.  He can get items from the table promptly specifying row and column.  Scanning is another matter.  Thread dumping I see we're stuck in the scanner constructor nexting through cells.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.