[ 
https://issues.apache.org/jira/browse/SOLR-6476?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Noble Paul updated SOLR-6476:
-----------------------------
    Description: 
The current schema API does one operation at a time and the normal usecase is 
that users add multiple fields/fieldtypes/copyFields etc in one shot.


example 
{code}
curl http://localhost:8983/solr/collection1/schema -H 
'Content-type:application/json'  -d '{
    "add-field": {
        "name":"sell-by",
        "type":"tdate",
        "stored":true
    },
    "add-field":{
        "name":"catchall",
        "type":"text_general",
        "stored":false
    }
}
{code}
or 
{code}
curl http://localhost:8983/solr/collection1/schema -H 
'Content-type:application/json'  -d '{
    "add-field":[ {
        "name":"sell-by",
        "type":"tdate",
        "stored":true
    },
    {
        "name":"catchall",
        "type":"text_general",
        "stored":false
    }]
}
{code}

  was:
The current schema API does one operation at a time and the normal usecase is 
that users add multiple fields/fieldtypes/copyFields etc in one shot.


example 
{code:javascript}
curl http://localhost:8983/solr/collection1/schema -H 
'Content-type:application/json'  -d '{
    "add-field": {
        "name":"sell-by",
        "type":"tdate",
        "stored":true
    },
    "add-field":{
        "name":"catchall",
        "type":"text_general",
        "stored":false
    }
}
{code}
or 
{code}
curl http://localhost:8983/solr/collection1/schema -H 
'Content-type:application/json'  -d '{
    "add-field":[ {
        "name":"sell-by",
        "type":"tdate",
        "stored":true
    },
    {
        "name":"catchall",
        "type":"text_general",
        "stored":false
    }]
}
{code}


> Create a bulk mode for schema API
> ---------------------------------
>
>                 Key: SOLR-6476
>                 URL: https://issues.apache.org/jira/browse/SOLR-6476
>             Project: Solr
>          Issue Type: New Feature
>          Components: Schema and Analysis
>            Reporter: Noble Paul
>            Assignee: Noble Paul
>              Labels: managedResource
>             Fix For: 5.0, Trunk
>
>         Attachments: SOLR-6476.patch, SOLR-6476.patch, SOLR-6476.patch, 
> SOLR-6476.patch, SOLR-6476.patch, SOLR-6476.patch, SOLR-6476.patch, 
> SOLR-6476.patch
>
>
> The current schema API does one operation at a time and the normal usecase is 
> that users add multiple fields/fieldtypes/copyFields etc in one shot.
> example 
> {code}
> curl http://localhost:8983/solr/collection1/schema -H 
> 'Content-type:application/json'  -d '{
>     "add-field": {
>         "name":"sell-by",
>         "type":"tdate",
>         "stored":true
>     },
>     "add-field":{
>         "name":"catchall",
>         "type":"text_general",
>         "stored":false
>     }
> }
> {code}
> or 
> {code}
> curl http://localhost:8983/solr/collection1/schema -H 
> 'Content-type:application/json'  -d '{
>     "add-field":[ {
>         "name":"sell-by",
>         "type":"tdate",
>         "stored":true
>     },
>     {
>         "name":"catchall",
>         "type":"text_general",
>         "stored":false
>     }]
> }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to