Re: Releasing HSearch 1.0 - Search and Analytics Engine on hadoop/hbase

2014-04-18 Thread shubhendu.singh
As of now we take flat file (csv,tsv etc.) loaded on hadoop to index data or data loaded in a hbase table. Thanks, Shubhendu -- View this message in context: http://apache-hbase.679495.n3.nabble.com/Releasing-HSearch-1-0-Search-and-Analytics-Engine-on-hadoop-hbase-tp4058295p4058385.html Sent

Re: Releasing HSearch 1.0 - Search and Analytics Engine on hadoop/hbase

2014-04-18 Thread Ted Yu
There is overlap, in terms of hbase version, in the hadooplib_XX list. If possible, it would be better to separate hadooplib_ into two categories of modules: one for hadoop and one for hbase. This way, user can combine one from each category to fit the actual distro they're using. Cheers On

Re: Releasing HSearch 1.0 - Search and Analytics Engine on hadoop/hbase

2014-04-17 Thread shubhendu.singh
A filter using filterRow() to filter out an entire row, or filterRow(List) to modify the final list of included values, must also override the hasRowFilter() function to return true. The framework is using this flag to ensure that a given filter is compatible with the selected scan parameters. In

Re: Releasing HSearch 1.0 - Search and Analytics Engine on hadoop/hbase

2014-04-17 Thread Flavio Pompermaier
Is Hsearch able to index also json fields?that would be awesome :) On Apr 17, 2014 1:01 PM, shubhendu.singh shubhendu.si...@bizosys.com wrote: A filter using filterRow() to filter out an entire row, or filterRow(List) to modify the final list of included values, must also override the

Re: Releasing HSearch 1.0 - Search and Analytics Engine on hadoop/hbase

2014-04-17 Thread Ted Yu
In several Filters under src/compatibility/hadooplib_12, I see following method (src/compatibility/hadooplib_12/storage/HSearchBytesFilter.java e.g.): @Override public final void filterRow(final ListKeyValue kvL) { I guess hadooplib_12 is used with HBase 0.94 Cheers On Thu, Apr 17, 2014 at

Releasing HSearch 1.0 - Search and Analytics Engine on hadoop/hbase

2014-04-16 Thread shubhendu.singh
After our first release of *HSearch* (announced in this forum) back in December 2010, we have been working at it incorporating customer feedback from their production deployments. Recently, we included the capability to store and analyze structured data in addition to unstructured data. With

Re: Releasing HSearch 1.0 - Search and Analytics Engine on hadoop/hbase

2014-04-16 Thread Sai Pavan Gadde
Hi Shubhendu Shekhar Singh, Could you please provide me exactly the download link to download HSearch. I would like to use and explore the thing On Wed, Apr 16, 2014 at 4:03 PM, shubhendu.singh shubhendu.si...@bizosys.com wrote: After our first release of *HSearch* (announced in this forum)

Re: Releasing HSearch 1.0 - Search and Analytics Engine on hadoop/hbase

2014-04-16 Thread shubhendu.singh
Hi Sai Pavan Gadde, The download link and getting started guide is here http://www.hadoopsearch.net/hsearch.html http://www.hadoopsearch.net/hsearch.html .. Regards, Shubhendu -- View this message in context:

Re: Releasing HSearch 1.0 - Search and Analytics Engine on hadoop/hbase

2014-04-16 Thread Ted Yu
I looked at hsearch-core where I found: $ ls src/compatibility/hadooplib_ hadooplib_12/ hadooplib_94/ hadooplib_96/ From a brief look, hadooplib_94/hbase provides wrapper for hbase 0.94 and hadooplib_96/hbase provides wrapper for 0.96 Similarly I found some Coprocessors under

Re: Releasing HSearch 1.0 - Search and Analytics Engine on hadoop/hbase

2014-04-16 Thread Ted Yu
Looking at some of the Filter classes, e.g. src/compatibility/hadooplib_96/storage/HSearchScalarFilter.java, I saw: public final boolean hasFilterRow() { return true; } However, there is no filterRow() defined in the Filter. See javadoc for hasFilterRow(): /** * Primarily used to