You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@phoenix.apache.org by "Ankit Singhal (JIRA)" <ji...@apache.org> on 2017/02/06 08:17:41 UTC

[jira] [Updated] (PHOENIX-3610) Fix tableName used to get the index maintainers while creating HalfStoreFileReader for local index store

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

Ankit Singhal updated PHOENIX-3610:
-----------------------------------
    Attachment: PHOENIX-3610_v1.patch

[~rajeshbabu], can you please review the attached patch

> Fix tableName used to get the index maintainers while creating HalfStoreFileReader for local index store
> --------------------------------------------------------------------------------------------------------
>
>                 Key: PHOENIX-3610
>                 URL: https://issues.apache.org/jira/browse/PHOENIX-3610
>             Project: Phoenix
>          Issue Type: Bug
>            Reporter: Ankit Singhal
>            Assignee: Ankit Singhal
>             Fix For: 4.10.0
>
>         Attachments: PHOENIX-3610.patch, PHOENIX-3610_v1.patch
>
>
> Physical Tablename is used instead of phoenix table name . IndexHalfStoreFileReaderGenerator#preStoreFileReaderOpen
> {code}
> TableName tableName = ctx.getEnvironment().getRegion().getTableDesc().getTableName();
> ..............
> try {
>                 conn = 
> QueryUtil.getConnectionOnServer(ctx.getEnvironment().getConfiguration()).unwrap(
>                             PhoenixConnection.class);
>                 PTable dataTable = PhoenixRuntime.getTableNoCache(conn, tableName.getNameAsString());
>                 List<PTable> indexes = dataTable.getIndexes();
>                 Map<ImmutableBytesWritable, IndexMaintainer> indexMaintainers =
>                         new HashMap<ImmutableBytesWritable, IndexMaintainer>();
>                 for (PTable index : indexes) {
>                     if (index.getIndexType() == IndexType.LOCAL) {
>                         IndexMaintainer indexMaintainer = index.getIndexMaintainer(dataTable, conn);
>                         indexMaintainers.put(new ImmutableBytesWritable(MetaDataUtil
>                                 .getViewIndexIdDataType().toBytes(index.getViewIndexId())),
>                             indexMaintainer);
>                     }
>                 }
>                 if(indexMaintainers.isEmpty()) return reader;
>                 byte[][] viewConstants = getViewConstants(dataTable);
>                 return new IndexHalfStoreFileReader(fs, p, cacheConf, in, size, r, ctx
>                         .getEnvironment().getConfiguration(), indexMaintainers, viewConstants,
>                         childRegion, regionStartKeyInHFile, splitKey);
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)