Creation_date in index setteing

I query setting information of index and found that have creation_date
field but I cannot understand what is value. Can you explain me more?

  "settings": {
     "index": {
        "creation_date": "1425631497164",
        "uuid": "A9ZXMK7zTjSyB_oWpvf7fg",
        "analysis": {
           "analyzer": {
              "sensible_analyzer": {
                 "type": "custom",
                 "filter": [
                    "word_filter",
                    "lowercase"
                 ],
                 "tokenizer": "keyword"
              }
           },
           "filter": {
              "word_filter": {
                 "split_on_numerics": "false",
                 "type": "word_delimiter",
                 "preserve_original": "true",
                 "split_on_case_change": "false",
                 "generate_number_parts": "false",
                 "generate_word_parts": "false"
              }
           }
        },
        "number_of_replicas": "1",
        "number_of_shards": "6",
        "version": {
           "created": "1040399"
        }
     }
  }

Thank you,
Hiko

--
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 elasticsearch+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/4c784554-9a52-423a-8acc-386423a1b197%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

It's when the index was created, it's unix epoch time.

On 20 April 2015 at 14:06, tao hiko taohiko@gmail.com wrote:

I query setting information of index and found that have creation_date
field but I cannot understand what is value. Can you explain me more?

  "settings": {
     "index": {
        "creation_date": "1425631497164",
        "uuid": "A9ZXMK7zTjSyB_oWpvf7fg",
        "analysis": {
           "analyzer": {
              "sensible_analyzer": {
                 "type": "custom",
                 "filter": [
                    "word_filter",
                    "lowercase"
                 ],
                 "tokenizer": "keyword"
              }
           },
           "filter": {
              "word_filter": {
                 "split_on_numerics": "false",
                 "type": "word_delimiter",
                 "preserve_original": "true",
                 "split_on_case_change": "false",
                 "generate_number_parts": "false",
                 "generate_word_parts": "false"
              }
           }
        },
        "number_of_replicas": "1",
        "number_of_shards": "6",
        "version": {
           "created": "1040399"
        }
     }
  }

Thank you,
Hiko

--
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 elasticsearch+unsubscribe@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/elasticsearch/4c784554-9a52-423a-8acc-386423a1b197%40googlegroups.com
https://groups.google.com/d/msgid/elasticsearch/4c784554-9a52-423a-8acc-386423a1b197%40googlegroups.com?utm_medium=email&utm_source=footer
.
For more options, visit https://groups.google.com/d/optout.

--
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 elasticsearch+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/CAEYi1X-W3Z0HM-d0fERfksghJEXYvU3vn_zDXm--uvVsrQhf-w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

I tried to use this website (Online Conversion - Unix time conversion)
to convert but the result isn't correct.

"creation_date": "1425631497164" ==> Wed, 19 Jun 47146 13:12:44 GMT
<=== It's wrong!!

Can you recommend which converter or how to?

On Monday, April 20, 2015 at 12:11:25 PM UTC+7, Mark Walkom wrote:

It's when the index was created, it's unix epoch time.

On 20 April 2015 at 14:06, tao hiko <tao...@gmail.com <javascript:>>
wrote:

I query setting information of index and found that have creation_date
field but I cannot understand what is value. Can you explain me more?

  "settings": {
     "index": {
        "creation_date": "1425631497164",
        "uuid": "A9ZXMK7zTjSyB_oWpvf7fg",
        "analysis": {
           "analyzer": {
              "sensible_analyzer": {
                 "type": "custom",
                 "filter": [
                    "word_filter",
                    "lowercase"
                 ],
                 "tokenizer": "keyword"
              }
           },
           "filter": {
              "word_filter": {
                 "split_on_numerics": "false",
                 "type": "word_delimiter",
                 "preserve_original": "true",
                 "split_on_case_change": "false",
                 "generate_number_parts": "false",
                 "generate_word_parts": "false"
              }
           }
        },
        "number_of_replicas": "1",
        "number_of_shards": "6",
        "version": {
           "created": "1040399"
        }
     }
  }

Thank you,
Hiko

--
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 elasticsearc...@googlegroups.com <javascript:>.
To view this discussion on the web visit
https://groups.google.com/d/msgid/elasticsearch/4c784554-9a52-423a-8acc-386423a1b197%40googlegroups.com
https://groups.google.com/d/msgid/elasticsearch/4c784554-9a52-423a-8acc-386423a1b197%40googlegroups.com?utm_medium=email&utm_source=footer
.
For more options, visit https://groups.google.com/d/optout.

--
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 elasticsearch+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/d71fe951-d6db-4144-9941-b1ef0b1fe1f7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

The creation date is given with millisecond precision. Take away the last 3
digits and you converter gives Fri, 06 Mar 2015 08:44:57 GMT for 1425631497.

Christian

On Monday, April 20, 2015 at 5:06:40 AM UTC+1, tao hiko wrote:

I query setting information of index and found that have creation_date
field but I cannot understand what is value. Can you explain me more?

  "settings": {
     "index": {
        "creation_date": "1425631497164",
        "uuid": "A9ZXMK7zTjSyB_oWpvf7fg",
        "analysis": {
           "analyzer": {
              "sensible_analyzer": {
                 "type": "custom",
                 "filter": [
                    "word_filter",
                    "lowercase"
                 ],
                 "tokenizer": "keyword"
              }
           },
           "filter": {
              "word_filter": {
                 "split_on_numerics": "false",
                 "type": "word_delimiter",
                 "preserve_original": "true",
                 "split_on_case_change": "false",
                 "generate_number_parts": "false",
                 "generate_word_parts": "false"
              }
           }
        },
        "number_of_replicas": "1",
        "number_of_shards": "6",
        "version": {
           "created": "1040399"
        }
     }
  }

Thank you,
Hiko

--
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 elasticsearch+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/4d4f9dea-57e9-4403-988a-6b3012af6a65%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Thank you very much Christian.

On Monday, April 20, 2015 at 2:29:29 PM UTC+7,
christian...@elasticsearch.com wrote:

The creation date is given with millisecond precision. Take away the last
3 digits and you converter gives Fri, 06 Mar 2015 08:44:57 GMT fo
r 1425631497.

Christian

On Monday, April 20, 2015 at 5:06:40 AM UTC+1, tao hiko wrote:

I query setting information of index and found that have creation_date
field but I cannot understand what is value. Can you explain me more?

  "settings": {
     "index": {
        "creation_date": "1425631497164",
        "uuid": "A9ZXMK7zTjSyB_oWpvf7fg",
        "analysis": {
           "analyzer": {
              "sensible_analyzer": {
                 "type": "custom",
                 "filter": [
                    "word_filter",
                    "lowercase"
                 ],
                 "tokenizer": "keyword"
              }
           },
           "filter": {
              "word_filter": {
                 "split_on_numerics": "false",
                 "type": "word_delimiter",
                 "preserve_original": "true",
                 "split_on_case_change": "false",
                 "generate_number_parts": "false",
                 "generate_word_parts": "false"
              }
           }
        },
        "number_of_replicas": "1",
        "number_of_shards": "6",
        "version": {
           "created": "1040399"
        }
     }
  }

Thank you,
Hiko

--
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 elasticsearch+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/5d9e671b-ef21-45f7-999c-8d5dd979e47e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Hi All,

I also require the indexing time to be returned by ES, but when i am firing the query like curl -XGET 'http://192.168.0.179:9200/16-04-2015-index/_settings'

I am not able to get the index_creation time and getting the response as : {"16-04-2015-index":{"settings":{"index":{"uuid":"rHmX564PSnuI8cye4GxA1g","number_of_replicas":"0","number_of_shards":"5","version":{"created":"1030099"}}}}}

Please let me know how i can get the index creation time for the same.

~Prashant

Prashant,

What version of Elasticsearch are you using?

The index creation date added to the index settings API in version 1.4.0
and will only show for indices created with that version or later
(see Store index creation time in index metadata by colings86 · Pull Request #7218 · elastic/elasticsearch · GitHub).

Colin

On Monday, April 20, 2015 at 2:23:37 PM UTC+1, Prashy wrote:

Hi All,

I also require the indexing time to be returned by ES, but when i am
firing
the query like curl -XGET
'http://192.168.0.179:9200/16-04-2015-index/_settings'

I am not able to get the index_creation time and getting the response as :
{"16-04-2015-index":{"settings":{"index":{"uuid":"rHmX564PSnuI8cye4GxA1g","number_of_replicas":"0","number_of_shards":"5","version":{"created":"1030099"}}}}}

Please let me know how i can get the index creation time for the same.

~Prashant

--
View this message in context:
http://elasticsearch-users.115913.n3.nabble.com/creation-date-in-index-setteing-tp4073837p4073853.html
Sent from the Elasticsearch Users mailing list archive at Nabble.com.

--
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 elasticsearch+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/b12a4019-c5ab-4e0f-aaec-0d3ab083da4d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

We are using version 1.3.0
On Apr 20, 2015 7:38 PM, "Colin Goodheart-Smithe-2 [via Elasticsearch
Users]" ml-node+s115913n4073856h92@n3.nabble.com wrote:

Prashant,

What version of Elasticsearch are you using?

The index creation date added to the index settings API in version 1.4.0
and will only show for indices created with that version or later (see
Store index creation time in index metadata by colings86 · Pull Request #7218 · elastic/elasticsearch · GitHub).

Colin

On Monday, April 20, 2015 at 2:23:37 PM UTC+1, Prashy wrote:

Hi All,

I also require the indexing time to be returned by ES, but when i am
firing
the query like curl -XGET
'http://192.168.0.179:9200/16-04-2015-index/_settings'

I am not able to get the index_creation time and getting the response as
:
{"16-04-2015-index":{"settings":{"index":{"uuid":"rHmX564PSnuI8cye4GxA1g","number_of_replicas":"0","number_of_shards":"5","version":{"created":"1030099"}}}}}

Please let me know how i can get the index creation time for the same.

~Prashant

--
View this message in context: http://elasticsearch-users.115913.n3.nabble.com/creation-date-in-index-setteing-tp4073837p4073853.html

Sent from the Elasticsearch Users mailing list archive at Nabble.com.

--
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 [hidden email]
http:///user/SendEmail.jtp?type=node&node=4073856&i=0.
To view this discussion on the web visit
https://groups.google.com/d/msgid/elasticsearch/b12a4019-c5ab-4e0f-aaec-0d3ab083da4d%40googlegroups.com
https://groups.google.com/d/msgid/elasticsearch/b12a4019-c5ab-4e0f-aaec-0d3ab083da4d%40googlegroups.com?utm_medium=email&utm_source=footer
.
For more options, visit https://groups.google.com/d/optout.


If you reply to this email, your message will be added to the discussion
below:

http://elasticsearch-users.115913.n3.nabble.com/creation-date-in-index-setteing-tp4073837p4073856.html
To unsubscribe from creation_date in index setteing, click here
http://elasticsearch-users.115913.n3.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=4073837&code=cHJhc2hhbnQuYWdyYXdhbEBwYWxhZGlvbi5uZXR8NDA3MzgzN3wtMTkxMzg2NjkyMw==
.
NAML
http://elasticsearch-users.115913.n3.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html!nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers!nabble%3Aemail.naml-instant_emails!nabble%3Aemail.naml-send_instant_email!nabble%3Aemail.naml