kQuerySize method.
>
> Cheers,
> Mahsa
>
> On Mon, Jul 30, 2012 at 11:12 AM, Ablimit Aji wrote:
>
> > I have written a custom index handler and wanted to test it. However hive
> > is not using it.
> > So I test with simple table (pokes (int foo, string bar)) which c
Logs during execution went into Hadoop logs directory (bu default).
On Tue, Aug 7, 2012 at 5:31 PM, Ablimit Aji wrote:
> That's what I'm using right now. It was totally functional in
> SymenticAnalyzer, but not working properly for JOIN.
>
>
> On Tue, Aug 7, 2012
>
> $HIVE_HOME/bin/hive -hiveconf hive.root.logger=INFO,console
>
>
> This should print the INFO messages onto the console.
>
>
> On Tue, Aug 7, 2012 at 4:07 PM, Ablimit Aji wrote:
>
> > Hi,
> >
> > I have put some LOG.info() statements inside t
I have written a custom index handler and wanted to test it. However hive
is not using it.
So I test with simple table (pokes (int foo, string bar)) which comes with
hive distribution for testing purpose.
Then I created a compact index and set the set
hive.optimize.index.filter=true;
However, upon
t; It depends on how you wrote the UDF. One trick you can do trick hive
> into thinking it is non-constant: select a column of 0 length and then
> concat it.
>
> SELECT concat(substring(colx),0,0), myUDF("constant string") ) from
>
> Now its not constant!
>
> On W
Hi,
I wrote several UDF to handle a string typed column. However, when I feed a
constant value to the UDF, it's not recognizing it.
What went wrong ? How can I fix it ?
Example SQL: SELECT MBB("Polygon ((0 1, 1 1, 0 1, 0 0))") FROM myTable
limit 5;
MBB(Text) returns Text value
However the error