How to post a json array to elasticsearch

Hi all,

I'm a newbie here, when I post an item to elasticsearch
curl -XPOST http://localhost:9200/sg/Location -d "@Location.json"

Location.json
{
"Name" : "aaa",
"Age" : "20"
}

However, if I want to post more than 1 item, I tried below
Location.json
[
{ "Name" : "aaa","Age" : "20"},
{ "Name" : "bbb","Age" : "30"}
]
It doesn't work.

somebody could tell me how to reach this.

Thanks,
Bill

--

Welcome !

You have to send valid JSON.

Something like

{ "content" = [
{ "Name" : "aaa","Age" : "20"},
{ "Name" : "bbb","Age" : "30"}
] }

See Elasticsearch Platform — Find real-time answers at scale | Elastic

--
David :wink:
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

Le 19 nov. 2012 à 09:01, Bill Wang wiiee000@gmail.com a écrit :

Hi all,

I'm a newbie here, when I post an item to elasticsearch
curl -XPOST http://localhost:9200/sg/Location -d "@Location.json"

Location.json
{
"Name" : "aaa",
"Age" : "20"
}

However, if I want to post more than 1 item, I tried below
Location.json
[
{ "Name" : "aaa","Age" : "20"},
{ "Name" : "bbb","Age" : "30"}
]
It doesn't work.

somebody could tell me how to reach this.

Thanks,
Bill

--

You'll need to do several POSTs for that, or to use the bulk API

Elasticsearch expects a JSON object, not an array

On Mon, Nov 19, 2012 at 10:01 AM, Bill Wang wiiee000@gmail.com wrote:

Hi all,

I'm a newbie here, when I post an item to elasticsearch
curl -XPOST http://localhost:9200/sg/Location -d "@Location.json"

Location.json
{
"Name" : "aaa",
"Age" : "20"
}

However, if I want to post more than 1 item, I tried below
Location.json
[
{ "Name" : "aaa","Age" : "20"},
{ "Name" : "bbb","Age" : "30"}
]
It doesn't work.

somebody could tell me how to reach this.

Thanks,
Bill

--

--

Sorry. I misread your question.

See Bulk indexing.

--
David :wink:
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

Le 19 nov. 2012 à 09:20, David Pilato david@pilato.fr a écrit :

Welcome !

You have to send valid JSON.

Something like

{ "content" = [
{ "Name" : "aaa","Age" : "20"},
{ "Name" : "bbb","Age" : "30"}
] }

See Elasticsearch Platform — Find real-time answers at scale | Elastic

--
David :wink:
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

Le 19 nov. 2012 à 09:01, Bill Wang wiiee000@gmail.com a écrit :

Hi all,

I'm a newbie here, when I post an item to elasticsearch
curl -XPOST http://localhost:9200/sg/Location -d "@Location.json"

Location.json
{
"Name" : "aaa",
"Age" : "20"
}

However, if I want to post more than 1 item, I tried below
Location.json
[
{ "Name" : "aaa","Age" : "20"},
{ "Name" : "bbb","Age" : "30"}
]
It doesn't work.

somebody could tell me how to reach this.

Thanks,
Bill

--

--

Thanks Itamar and David so much.
However, I'm not able to use _bulk successfully.

I got error below.
curl -XPOST http://localhost:9200/sg/Location/_bulk --data-binary
"@Location.json"
{"error":"ActionRequestValidationException[Validation Failed: 1: no
requests add
ed;]","status":500}

Location.json
{"Id":"1230","Name":"Melbourne -
Frankston","CityName":"Frankston","Airport":"0","RailwayStation":"0"}
{"Id":"1234","Name":"Geelong","CityName":"Geelong","StateCode":"VIC","Airport":"0","RailwayStation":"0"}

I mapping Id as _id.

On Monday, November 19, 2012 4:28:37 PM UTC+8, David Pilato wrote:

Sorry. I misread your question.

See Bulk indexing.

--
David :wink:
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

Le 19 nov. 2012 à 09:20, David Pilato <da...@pilato.fr <javascript:>> a
écrit :

Welcome !

You have to send valid JSON.

Something like

{ "content" = [
{ "Name" : "aaa","Age" : "20"},
{ "Name" : "bbb","Age" : "30"}
] }

See Elasticsearch Platform — Find real-time answers at scale | Elastic

--
David :wink:
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

Le 19 nov. 2012 à 09:01, Bill Wang <wiie...@gmail.com <javascript:>> a
écrit :

Hi all,

I'm a newbie here, when I post an item to elasticsearch
curl -XPOST http://localhost:9200/sg/Location -d "@Location.json"

Location.json
{
"Name" : "aaa",
"Age" : "20"
}

However, if I want to post more than 1 item, I tried below
Location.json
[
{ "Name" : "aaa","Age" : "20"},
{ "Name" : "bbb","Age" : "30"}
]
It doesn't work.

somebody could tell me how to reach this.

Thanks,
Bill

--

--

--

Have a look at Elasticsearch Platform — Find real-time answers at scale | Elastic
Your json file should look like:

{ "index" : { "_index" : "sg", "_type" : "Location", "_id" : "1230" } }

{"Id":"1230","Name":"Melbourne -
Frankston","CityName":"Frankston","Airport":"0","RailwayStation":"0"}

{ "index" : { "_index" : "sg", "_type" : "Location", "_id" : "1234" } }

{"Id":"1234","Name":"Geelong","CityName":"Geelong","StateCode":"VIC","Airport":"0","RailwayStation":"0"}

HTH

Le 19 novembre 2012 à 10:01, Bill Wang wiiee000@gmail.com a écrit :

Thanks Itamar and David so much.
However, I'm not able to use _bulk successfully.

I got error below.
curl -XPOST http://localhost:9200/sg/Location/_bulk --data-binary
"@Location.json"
{"error":"ActionRequestValidationException[Validation Failed: 1: no requests
add
ed;]","status":500}

Location.json
{"Id":"1230","Name":"Melbourne -
Frankston","CityName":"Frankston","Airport":"0","RailwayStation":"0"}

{"Id":"1234","Name":"Geelong","CityName":"Geelong","StateCode":"VIC","Airport":"0","RailwayStation":"0"}

I mapping Id as _id.

On Monday, November 19, 2012 4:28:37 PM UTC+8, David Pilato wrote:

Sorry. I misread your question.

See Bulk indexing.

--
David :wink:
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

Le 19 nov. 2012 à 09:20, David Pilato < da...@pilato.fr> a écrit :

   > > >        Welcome !
   You have to send valid JSON.

   Something like


       > > > >            { "content" = [
          { "Name" : "aaa","Age" : "20"},
          { "Name" : "bbb","Age" : "30"}
       ] }

   > > > 
   See

Elasticsearch Platform — Find real-time answers at scale | Elastic
http://www.elasticsearch.org/guide/reference/mapping/array-type.html

   --
   David ;-)
   Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

   Le 19 nov. 2012 à 09:01, Bill Wang <

http://www.elasticsearch.org/guide/reference/mapping/array-type.html
wiie...@gmail.com> a écrit :

       > > > >            Hi all,
       I'm a newbie here, when I post an item to elasticsearch
       curl -XPOST http://localhost:9200/sg/Location -d

"@Location.json" http://localhost:9200/sg/Location
http://localhost:9200/sg/Location
Location.json
http://localhost:9200/sg/Location
{ http://localhost:9200/sg/Location
"Name" : "aaa", http://localhost:9200/sg/Location
"Age" : "20" http://localhost:9200/sg/Location
} http://localhost:9200/sg/Location
http://localhost:9200/sg/Location
However, if I want to post more than 1 item, I tried below
http://localhost:9200/sg/Location
Location.json
http://localhost:9200/sg/Location
[ http://localhost:9200/sg/Location
{ "Name" : "aaa","Age" : "20"},
http://localhost:9200/sg/Location
{ "Name" : "bbb","Age" : "30"}
http://localhost:9200/sg/Location
] http://localhost:9200/sg/Location
It doesn't work. http://localhost:9200/sg/Location
http://localhost:9200/sg/Location
somebody could tell me how to reach this.
http://localhost:9200/sg/Location
http://localhost:9200/sg/Location
Thanks,
http://localhost:9200/sg/Location
Bill http://localhost:9200/sg/Location

       --


        <http://localhost:9200/sg/Location>

   > > > 
   --


    <http://localhost:9200/sg/Location>

--

http://localhost:9200/sg/Location

http://localhost:9200/sg/Location

--
David Pilato
http://www.scrutmydocs.org/
http://dev.david.pilato.fr/
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

--

Thanks David a lot, you blow me away:)
It works now.

this line looks redundant, is there a way to remove it to make it index
automatically by mapping.
{ "index" : { "_index" : "sg", "_type" : "Location", "_id" : "1230" } }
like the way curl -XPOST http://localhost:9200/sg/Location -d "{"Id":"1230","Name":"Melbourne

  • Frankston","CityName":"Frankston","Airport":"0","RailwayStation":"0"}"

On Monday, November 19, 2012 5:06:08 PM UTC+8, David Pilato wrote:

Have a look at Elasticsearch Platform — Find real-time answers at scale | Elastic
Your json file should look like:

{ "index" : { "_index" : "sg", "_type" : "Location", "_id" : "1230" } }

{"Id":"1230","Name":"Melbourne -
Frankston","CityName":"Frankston","Airport":"0","RailwayStation":"0"}

{ "index" : { "_index" : "sg", "_type" : "Location", "_id" : "1234" } }

{"Id":"1234","Name":"Geelong","CityName":"Geelong","StateCode":"VIC","Airport":"0","RailwayStation":"0"}

HTH

Le 19 novembre 2012 à 10:01, Bill Wang <wiie...@gmail.com <javascript:>>
a écrit :

Thanks Itamar and David so much.
However, I'm not able to use _bulk successfully.

I got error below.
curl -XPOST http://localhost:9200/sg/Location/_bulk --data-binary
"@Location.json"
{"error":"ActionRequestValidationException[Validation Failed: 1: no
requests add
ed;]","status":500}

Location.json
{"Id":"1230","Name":"Melbourne -
Frankston","CityName":"Frankston","Airport":"0","RailwayStation":"0"}
{"Id":"1234","Name":"Geelong","CityName":"Geelong","StateCode":"VIC","Airport":"0","RailwayStation":"0"}

I mapping Id as _id.

On Monday, November 19, 2012 4:28:37 PM UTC+8, David Pilato wrote:

Sorry. I misread your question.

See Bulk indexing.

--
David :wink:
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

Le 19 nov. 2012 à 09:20, David Pilato < da...@pilato.fr> a écrit :

Welcome !

You have to send valid JSON.

Something like

{ "content" = [
{ "Name" : "aaa","Age" : "20"},
{ "Name" : "bbb","Age" : "30"}
] }

See Elasticsearch Platform — Find real-time answers at scale | Elastic

--
David :wink:
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

Le 19 nov. 2012 à 09:01, Bill Wang <http://www.elasticsearch.org/guide/reference/mapping/array-type.html
wiie...@gmail.com> a écrit :

Hi all,

I'm a newbie here, when I post an item to elasticsearch
curl -XPOST http://localhost:9200/sg/Location -d "@Location.json"http://localhost:9200/sg/Location
http://localhost:9200/sg/Location
Location.json
http://localhost:9200/sg/Location
{ http://localhost:9200/sg/Location
"Name" : "aaa", http://localhost:9200/sg/Location
"Age" : "20" http://localhost:9200/sg/Location
} http://localhost:9200/sg/Location
http://localhost:9200/sg/Location
However, if I want to post more than 1 item, I tried below http://localhost:9200/sg/Location
Location.json
http://localhost:9200/sg/Location
[ http://localhost:9200/sg/Location
{ "Name" : "aaa","Age" : "20"}, http://localhost:9200/sg/Location
{ "Name" : "bbb","Age" : "30"} http://localhost:9200/sg/Location
] http://localhost:9200/sg/Location
It doesn't work. http://localhost:9200/sg/Location
http://localhost:9200/sg/Location
somebody could tell me how to reach this.http://localhost:9200/sg/Location
http://localhost:9200/sg/Location
Thanks,
http://localhost:9200/sg/Location
Bill http://localhost:9200/sg/Location

--

http://localhost:9200/sg/Location

--

http://localhost:9200/sg/Location

--

http://localhost:9200/sg/Location

http://localhost:9200/sg/Location

--
David Pilato
http://www.scrutmydocs.org/
http://dev.david.pilato.fr/
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

--

You feel that you did redundant code but, in fact, no.

I mean that when you post or put a document with:

http://localhost:9200/sg/Location

or

http://localhost:9200/sg/Location/1230

Elasticsearch find sg as _index, Location as _type and 1230 as _id.

That's why you have to send it within the bulk request even if it's look
redundant.

HTH

Le 19 novembre 2012 à 10:22, Bill Wang wiiee000@gmail.com a écrit :

Thanks David a lot, you blow me away:)
It works now.

this line looks redundant, is there a way to remove it to make it index
automatically by mapping.
{ "index" : { "_index" : "sg" , "_type" : "Location" , "_id" : "1230" } }
like the way curl -XPOST http://localhost:9200/sg/Location -d
"{"Id":"1230","Name":"Melbourne -
Frankston","CityName":"Frankston","Airport":"0","RailwayStation":"0"}"

On Monday, November 19, 2012 5:06:08 PM UTC+8, David Pilato wrote:

Have a look at
Elasticsearch Platform — Find real-time answers at scale | Elastic
http://www.elasticsearch.org/guide/reference/api/bulk.html
Your json file should look like:

   > > > 
   { "index" : { "_index" : "sg", "_type" : "Location", "_id" : "1230"

} }

{"Id":"1230","Name":"Melbourne -
Frankston","CityName":"Frankston","Airport":"0","RailwayStation":"0"}
http://www.elasticsearch.org/guide/reference/api/bulk.html

       > > > > 
       { "index" : { "_index" : "sg", "_type" : "Location", "_id" :

"1234" } }

   > > > <http://www.elasticsearch.org/guide/reference/api/bulk.html>
       > > > > <http://www.elasticsearch.org/guide/reference/api/bulk.html>
      {"Id":"1234","Name":"Geelong","CityName":"Geelong","StateCode":"VIC","Airport":"0","RailwayStation":"0"}

http://www.elasticsearch.org/guide/reference/api/bulk.html

       HTH

       Le 19 novembre 2012 à 10:01, Bill Wang <

http://www.elasticsearch.org/guide/reference/api/bulk.html
wiie...@gmail.com> a écrit :

        > > > > > Thanks Itamar and David so much.
        However, I'm not able to use _bulk successfully.

        I got error below.
        curl -XPOST http://localhost:9200/sg/Location/_bulk

--data-binary "@Location.json"
http://localhost:9200/sg/Location/_bulk
http://localhost:9200/sg/Location/_bulk
{"error":"ActionRequestValidationException[Validation
Failed: 1: no requests add http://localhost:9200/sg/Location/_bulk
ed;]","status":500}

        Location.json <http://localhost:9200/sg/Location/_bulk>
        {"Id":"1230","Name":"Melbourne -

Frankston","CityName":"Frankston","Airport":"0","RailwayStation":"0"}
http://localhost:9200/sg/Location/_bulk

       {"Id":"1234","Name":"Geelong","CityName":"Geelong","StateCode":"VIC","Airport":"0","RailwayStation":"0"}

http://localhost:9200/sg/Location/_bulk

        I mapping Id as _id.

        On Monday, November 19, 2012 4:28:37 PM UTC+8, David

Pilato wrote: http://localhost:9200/sg/Location/_bulk
> > > > > > http://localhost:9200/sg/Location/_bulk

          Sorry. I misread your question.

          See Bulk indexing.

          --
          David ;-)
          Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

          Le 19 nov. 2012 à 09:20, David Pilato <

http://localhost:9200/sg/Location/_bulk da...@pilato.fr > a écrit
:

           <http://localhost:9200/sg/Location/_bulk>


              > > > > > > > <http://localhost:9200/sg/Location/_bulk>
              Welcome !

              You have to send valid JSON.

              Something like


                  > > > > > > > >                       {
                  > > > > > > > > "content" = [
                     { "Name" : "aaa","Age" : "20"},
                     { "Name" : "bbb","Age" : "30"}
                  ] }

              > > > > > > > 
              See  <http://localhost:9200/sg/Location/_bulk>

Elasticsearch Platform — Find real-time answers at scale | Elastic
http://www.elasticsearch.org/guide/reference/mapping/array-type.html

              --
              David ;-)
              Twitter : @dadoonet / @elasticsearchfr /

@scrutmydocs
http://www.elasticsearch.org/guide/reference/mapping/array-type.html

              Le 19 nov. 2012 à 09:01, Bill Wang <

http://www.elasticsearch.org/guide/reference/mapping/array-type.html
wiie...@gmail.com> a écrit :

                  > > > > > > > >                       Hi
                  > > > > > > > > all,
                  I'm a newbie here, when I post an item to

elasticsearch
curl -XPOST
http://localhost:9200/sg/Location -d "@Location.json"
http://localhost:9200/sg/Location
http://localhost:9200/sg/Location
http://localhost:9200/sg/Location
http://localhost:9200/sg/Location
Location.json
http://localhost:9200/sg/Location
{ http://localhost:9200/sg/Location
"Name" : "aaa",
http://localhost:9200/sg/Location
"Age" : "20"
http://localhost:9200/sg/Location
} http://localhost:9200/sg/Location
http://localhost:9200/sg/Location
However, if I want to post more than 1
item, I tried below http://localhost:9200/sg/Location
Location.json
http://localhost:9200/sg/Location
[ http://localhost:9200/sg/Location
{ "Name" : "aaa","Age" : "20"},
http://localhost:9200/sg/Location
{ "Name" : "bbb","Age" : "30"}
http://localhost:9200/sg/Location
] http://localhost:9200/sg/Location
It doesn't work.
http://localhost:9200/sg/Location
http://localhost:9200/sg/Location
somebody could tell me how to reach this.
http://localhost:9200/sg/Location
http://localhost:9200/sg/Location
Thanks,
http://localhost:9200/sg/Location
Bill http://localhost:9200/sg/Location

                  --


                   <http://localhost:9200/sg/Location>

              > > > > > > > 
              --


               <http://localhost:9200/sg/Location>

          > > > > > >             > > > > > 
        --


         <http://localhost:9200/sg/Location>

          <http://localhost:9200/sg/Location>


        --
        David Pilato
        http://www.scrutmydocs.org/ <http://www.scrutmydocs.org/>
        http://dev.david.pilato.fr/ <http://dev.david.pilato.fr/>
        Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

       > > > > 
       --





   > > > 

--
David Pilato
http://www.scrutmydocs.org/
http://dev.david.pilato.fr/
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

--

Has this behavior been changed?

Looking at

"The endpoints are /_bulk, /{index}/_bulk, and {index}/type/_bulk. When the
index or the index/type are provided, they will be used by default on bulk
items that don’t provide them explicitly."

What are the minimal information required for bulk indexing?
http://localhost:9200/sg/Location/_bulk
{ "index" : {"_id" : "1230" } }
{"Id":"1230","Name":"Melbourne -
Frankston","CityName":"Frankston","Airport":"0","RailwayStation":"0"}
{ "index" : {"_id" : "1234" } }
{"Id":"1234","Name":"Geelong","CityName":"Geelong","StateCode":"VIC","Airport":"0","RailwayStation":"0"}

Is the meta-line still required? If so, is "_id" still required? Or is {
"index" : {} } enough?

Is it feasible to bulk load files with millions of items or should they be
divided into smaller chunks? Hundreds of MB, tens of MB or less than 1MB?

Den måndagen den 19:e november 2012 kl. 10:59:24 UTC+1 skrev David Pilato:

You feel that you did redundant code but, in fact, no.

I mean that when you post or put a document with:

http://localhost:9200/sg/Location

or

http://localhost:9200/sg/Location/1230

Elasticsearch find sg as _index, Location as _type and 1230 as _id.

That's why you have to send it within the bulk request even if it's look
redundant.

HTH

Le 19 novembre 2012 à 10:22, Bill Wang <wiie...@gmail.com <javascript:>>
a écrit :

Thanks David a lot, you blow me away:)
It works now.

this line looks redundant, is there a way to remove it to make it index
automatically by mapping.
{ "index" : { "_index" : "sg" , "_type" : "Location" , "_id" :
"1230" } }
like the way curl -XPOST http://localhost:9200/sg/Location -d "{"Id":"1230","Name":"Melbourne

  • Frankston","CityName":"Frankston","Airport":"0","RailwayStation":"0"}"

On Monday, November 19, 2012 5:06:08 PM UTC+8, David Pilato wrote:

Have a look at
Elasticsearch Platform — Find real-time answers at scale | Elastic
Your json file should look like:

{ "index" : { "_index" : "sg", "_type" : "Location", "_id" : "1230" } }

{"Id":"1230","Name":"Melbourne -
Frankston","CityName":"Frankston","Airport":"0","RailwayStation":"0"}http://www.elasticsearch.org/guide/reference/api/bulk.html

{ "index" : { "_index" : "sg", "_type" : "Location", "_id" : "1234" } }

http://www.elasticsearch.org/guide/reference/api/bulk.html

http://www.elasticsearch.org/guide/reference/api/bulk.html

{"Id":"1234","Name":"Geelong","CityName":"Geelong","StateCode":"VIC","Airport":"0","RailwayStation":"0"}http://www.elasticsearch.org/guide/reference/api/bulk.html

HTH

Le 19 novembre 2012 à 10:01, Bill Wang <http://www.elasticsearch.org/guide/reference/api/bulk.html
wiie...@gmail.com> a écrit :

Thanks Itamar and David so much.
However, I'm not able to use _bulk successfully.

I got error below.
curl -XPOST http://localhost:9200/sg/Location/_bulk --data-binary
"@Location.json" http://localhost:9200/sg/Location/_bulk
http://localhost:9200/sg/Location/_bulk
{"error":"ActionRequestValidationException[Validation Failed: 1: no
requests add http://localhost:9200/sg/Location/_bulk
ed;]","status":500}

Location.json
http://localhost:9200/sg/Location/_bulk
{"Id":"1230","Name":"Melbourne -
Frankston","CityName":"Frankston","Airport":"0","RailwayStation":"0"}
http://localhost:9200/sg/Location/_bulk

{"Id":"1234","Name":"Geelong","CityName":"Geelong","StateCode":"VIC","Airport":"0","RailwayStation":"0"}http://localhost:9200/sg/Location/_bulk

I mapping Id as _id.

On Monday, November 19, 2012 4:28:37 PM UTC+8, David Pilato wrote:
http://localhost:9200/sg/Location/_bulk

http://localhost:9200/sg/Location/_bulk
Sorry. I misread your question.

See Bulk indexing.

--
David :wink:
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

Le 19 nov. 2012 à 09:20, David Pilato <
http://localhost:9200/sg/Location/_bulk da...@pilato.fr > a écrit :

http://localhost:9200/sg/Location/_bulk

http://localhost:9200/sg/Location/_bulk
Welcome !

You have to send valid JSON.

Something like

{ "content" = [
{ "Name" : "aaa","Age" : "20"},
{ "Name" : "bbb","Age" : "30"}
] }

See http://localhost:9200/sg/Location/_bulk
Elasticsearch Platform — Find real-time answers at scale | Elastic

--
David :wink:
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs
http://www.elasticsearch.org/guide/reference/mapping/array-type.html
Le 19 nov. 2012 à 09:01, Bill Wang <http://www.elasticsearch.org/guide/reference/mapping/array-type.html
wiie...@gmail.com> a écrit :

Hi all,

I'm a newbie here, when I post an item to elasticsearch
curl -XPOST http://localhost:9200/sg/Location -d "@Location.json"
http://localhost:9200/sg/Location
http://localhost:9200/sg/Location
http://localhost:9200/sg/Location http://localhost:9200/sg/Location
Location.json
http://localhost:9200/sg/Location
{ http://localhost:9200/sg/Location
"Name" : "aaa", http://localhost:9200/sg/Location
"Age" : "20" http://localhost:9200/sg/Location
} http://localhost:9200/sg/Location
http://localhost:9200/sg/Location
However, if I want to post more than 1 item, I tried below http://localhost:9200/sg/Location
Location.json
http://localhost:9200/sg/Location
[ http://localhost:9200/sg/Location
{ "Name" : "aaa","Age" : "20"}, http://localhost:9200/sg/Location
{ "Name" : "bbb","Age" : "30"} http://localhost:9200/sg/Location
] http://localhost:9200/sg/Location
It doesn't work. http://localhost:9200/sg/Location
http://localhost:9200/sg/Location
somebody could tell me how to reach this.http://localhost:9200/sg/Location
http://localhost:9200/sg/Location
Thanks,
http://localhost:9200/sg/Location
Bill http://localhost:9200/sg/Location

--

http://localhost:9200/sg/Location

--

http://localhost:9200/sg/Location

--

http://localhost:9200/sg/Location
http://localhost:9200/sg/Location

--
David Pilato
http://www.scrutmydocs.org/
http://dev.david.pilato.fr/
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

--

--
David Pilato
http://www.scrutmydocs.org/
http://dev.david.pilato.fr/
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

--
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/d226e9c7-9a47-40a6-8fd5-be7d4a5a2b6c%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Yes meta line is required. You can use bulk for indexing, deleting, updating…
So we need to know what you want to do.

I'm not aware of any "shortcut" like op_type=index which will basically say that only index operations are provided in the JSON stream.

It could be a feature request I guess…

For your last comment, make sure that you don't send too many element per bulk request. I often found (for my use cases) that 10k docs per bulk is enough.
Don't forget that your bulk request needs at some point to be loaded in memory on the node which get the bulk bulk request.

--
David Pilato | Technical Advocate | Elasticsearch.com
@dadoonet | @elasticsearchfr

Le 28 novembre 2013 at 08:36:00, Anders (anders@waglund.se) a écrit:

Has this behavior been changed?

Looking at http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/docs-bulk.html
"The endpoints are /_bulk, /{index}/_bulk, and {index}/type/_bulk. When the index or the index/type are provided, they will be used by default on bulk items that don’t provide them explicitly."

What are the minimal information required for bulk indexing?
http://localhost:9200/sg/Location/_bulk
{ "index" : {"_id" : "1230" } }
{"Id":"1230","Name":"Melbourne - Frankston","CityName":"Frankston","Airport":"0","RailwayStation":"0"}
{ "index" : {"_id" : "1234" } }
{"Id":"1234","Name":"Geelong","CityName":"Geelong","StateCode":"VIC","Airport":"0","RailwayStation":"0"}

Is the meta-line still required? If so, is "_id" still required? Or is { "index" : {} } enough?

Is it feasible to bulk load files with millions of items or should they be divided into smaller chunks? Hundreds of MB, tens of MB or less than 1MB?

Den måndagen den 19:e november 2012 kl. 10:59:24 UTC+1 skrev David Pilato:
You feel that you did redundant code but, in fact, no.

I mean that when you post or put a document with:
http://localhost:9200/sg/Location
or
http://localhost:9200/sg/Location/1230
Elasticsearch find sg as _index, Location as _type and 1230 as _id.

That's why you have to send it within the bulk request even if it's look redundant.

HTH

Le 19 novembre 2012 à 10:22, Bill Wang wiie...@gmail.com a écrit :
Thanks David a lot, you blow me away:)
It works now.

this line looks redundant, is there a way to remove it to make it index automatically by mapping.
{ "index" : { "_index" : "sg" , "_type" : "Location" , "_id" : "1230" } }
like the way curl -XPOST http://localhost:9200/sg/Location -d "{"Id":"1230","Name":"Melbourne - Frankston","CityName":"Frankston","Airport":"0","RailwayStation":"0"}"

On Monday, November 19, 2012 5:06:08 PM UTC+8, David Pilato wrote:
Have a look at http://www.elasticsearch.org/guide/reference/api/bulk.html
Your json file should look like:

{ "index" : { "_index" : "sg", "_type" : "Location", "_id" : "1230" } }
{"Id":"1230","Name":"Melbourne - Frankston","CityName":"Frankston","Airport":"0","RailwayStation":"0"}
{ "index" : { "_index" : "sg", "_type" : "Location", "_id" : "1234" } }
{"Id":"1234","Name":"Geelong","CityName":"Geelong","StateCode":"VIC","Airport":"0","RailwayStation":"0"}

HTH

Le 19 novembre 2012 à 10:01, Bill Wang < wiie...@gmail.com> a écrit :
Thanks Itamar and David so much.
However, I'm not able to use _bulk successfully.

I got error below.
curl -XPOST http://localhost:9200/sg/Location/_bulk --data-binary "@Location.json"
{"error":"ActionRequestValidationException[Validation Failed: 1: no requests add
ed;]","status":500}

Location.json
{"Id":"1230","Name":"Melbourne - Frankston","CityName":"Frankston","Airport":"0","RailwayStation":"0"}
{"Id":"1234","Name":"Geelong","CityName":"Geelong","StateCode":"VIC","Airport":"0","RailwayStation":"0"}

I mapping Id as _id.

On Monday, November 19, 2012 4:28:37 PM UTC+8, David Pilato wrote:
Sorry. I misread your question.

See Bulk indexing.

--
David :wink:
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

Le 19 nov. 2012 à 09:20, David Pilato < da...@pilato.fr > a écrit :

Welcome !

You have to send valid JSON.

Something like

{ "content" = [
{ "Name" : "aaa","Age" : "20"},
{ "Name" : "bbb","Age" : "30"}
] }

See http://www.elasticsearch.org/guide/reference/mapping/array-type.html

--
David :wink:
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

Le 19 nov. 2012 à 09:01, Bill Wang < wiie...@gmail.com> a écrit :

Hi all,

I'm a newbie here, when I post an item to elasticsearch
curl -XPOST http://localhost:9200/sg/Location -d "@Location.json"

Location.json
{
"Name" : "aaa",
"Age" : "20"
}

However, if I want to post more than 1 item, I tried below
Location.json
[
{ "Name" : "aaa","Age" : "20"},
{ "Name" : "bbb","Age" : "30"}
]
It doesn't work.

somebody could tell me how to reach this.

Thanks,
Bill

--

--

--

--
David Pilato
http://www.scrutmydocs.org/
http://dev.david.pilato.fr/
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

--

--
David Pilato
http://www.scrutmydocs.org/
http://dev.david.pilato.fr/
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

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/d226e9c7-9a47-40a6-8fd5-be7d4a5a2b6c%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

--
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/etPan.5296ffd2.2cd89a32.3e14%40MacBook-Air-de-David.local.
For more options, visit https://groups.google.com/groups/opt_out.