You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@lucene.apache.org by "Colvin Cowie (Jira)" <ji...@apache.org> on 2019/11/20 17:28:00 UTC

[jira] [Commented] (SOLR-13682) command line option to export data to a file

    [ https://issues.apache.org/jira/browse/SOLR-13682?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16978623#comment-16978623 ] 

Colvin Cowie commented on SOLR-13682:
-------------------------------------

Hi [~noble.paul] the change to the SolrInputDocument in this issue appears to have caused a problem in the JavaBinCodec to materialize. I'm still looking into what is happening, to provide some more details. I sent a message to the mailing list, if you could take a look at it "Possible data corruption in JavaBinCodec in Solr 8.3 during distributed update?"

Thanks

> command line option to export data to a file
> --------------------------------------------
>
>                 Key: SOLR-13682
>                 URL: https://issues.apache.org/jira/browse/SOLR-13682
>             Project: Solr
>          Issue Type: Improvement
>      Security Level: Public(Default Security Level. Issues are Public) 
>            Reporter: Noble Paul
>            Assignee: Noble Paul
>            Priority: Major
>             Fix For: 8.3
>
>          Time Spent: 20m
>  Remaining Estimate: 0h
>
> example
> {code:java}
> bin/solr export -url http://localhost:8983/solr/gettingstarted
> {code}
> This will export all the docs in a collection called {{gettingstarted}} into a file called {{gettingstarted.json}}
> additional options are
>  * {{format}} : {{jsonl}} (default) or {{javabin}}
>  * {{out}} : export file name 
>  * {{query}} : a custom query , default is **:**
>  * {{fields}}: a comma separated list of fields to be exported
>  * {{limit}} : no:of docs. default is 100 , send  {{-1}} to import all the docs
> h2. Importing using {{curl}}
> importing json file
> {code:java}
> curl -X POST -d @gettingstarted.json http://localhost:18983/solr/gettingstarted/update/json/docs?commit=true
> {code}
> importing javabin format file
> {code:java}
> curl -X POST --header "Content-Type: application/javabin" --data-binary @gettingstarted.javabin http://localhost:7574/solr/gettingstarted/update?commit=true
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@lucene.apache.org
For additional commands, e-mail: issues-help@lucene.apache.org