[ https://issues.apache.org/jira/browse/SOLR-13682?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17201092#comment-17201092 ]
David Smiley commented on SOLR-13682: ------------------------------------- The ref-guide addition to solr-control-script-reference.adoc is nice, but I was unable to find it there as a user. I only found it using my committer sleuthing experience. My first action as a user was to search the ref guide search box for the word "export" which uncovered exporting-result-sets.adoc. That page definitely seemed like it was spot-on, yet it didn't have information about this new cool tool. Can you add a link there [~noble.paul]? > 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 > 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-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org