[
https://issues.apache.org/jira/browse/HBASE-7171?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15047282#comment-15047282
]
Enis Soztutar commented on HBASE-7171:
--------------------------------------
Looks good. Can we invoke HFilePrettyPrinter without building it through an OS
process. We can add static methods if needed to HFPP.
{code}
+ ProcessBuilder pb=new ProcessBuilder("hbase", "hfile", "-s", "-f",
storeFile);
+ pb.redirectErrorStream(true);
+ Process pr = pb.start();
+ BufferedReader in = new BufferedReader(new
InputStreamReader(pr.getInputStream()));
{code}
> Initial web UI for region/memstore/storefiles details
> -----------------------------------------------------
>
> Key: HBASE-7171
> URL: https://issues.apache.org/jira/browse/HBASE-7171
> Project: HBase
> Issue Type: Improvement
> Components: UI
> Reporter: stack
> Assignee: Mikhail Antonov
> Labels: beginner
> Attachments: HBASE-7171.patch, region_details.png, region_list.png,
> storefile_details.png
>
>
> Click on a region in UI and get a listing of hfiles in HDFS and summary of
> memstore content; click on an HFile and see its content
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)