Hi,

You can either convert the timestamp field in Pig to UTF format (try the dateTime type and its associated functions [1]) or you can create the index mapping in Elasticsearch before indexing and define the time field format accordingly [2]

[1] https://pig.apache.org/docs/r0.11.1/func.html#datetime-functions
[2] 
http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/mapping-date-format.html

On 3/18/14 9:26 AM, [email protected] wrote:
Hi,

I am loading my data from an Hbase table into Elasticsearch engine using Pig.

I have a column in my Hbase table called timestamp (with data like "2014-03-18 
11:05:37.503").
I want this field to be automatically detected as the timestamp field by the 
Elasticsearch (I need to add time filter on
my Kibana dashboard).

Here's what I do in the PIG grunt shell:

REGISTER /path-to-my/elasticsearch-hadoop.jar;
A = LOAD 'hbase://demo' USING 
org.apache.pig.backend.hadoop.hbase.HBaseStorage('cf:timestamp') as ( 
timestamp:chararray);
STORE A INTO 'demo/demo' USING org.elasticsearch.hadoop.pig.ESStorage();

Should I store the values for the field in any particular format?

How do I alter the above steps to suit my requirement?

Thanks.

--
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to
[email protected] 
<mailto:[email protected]>.
To view this discussion on the web visit
https://groups.google.com/d/msgid/elasticsearch/93b5f866-464e-4457-917e-39a5ca1ba65f%40googlegroups.com
<https://groups.google.com/d/msgid/elasticsearch/93b5f866-464e-4457-917e-39a5ca1ba65f%40googlegroups.com?utm_medium=email&utm_source=footer>.
For more options, visit https://groups.google.com/d/optout.

--
Costin

--
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/5327FE37.5030200%40gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to