SOLR-910 -- Add a few utility commands to the DIH admin page such as full import, delta import, status, reload config

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@726512 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Shalin Shekhar Mangar 2008-12-14 18:30:38 +00:00
parent f42b62c1d7
commit 80dea5625e
2 changed files with 26 additions and 0 deletions
contrib/dataimporthandler
CHANGES.txt
src/main/webapp/admin

View File

@ -44,6 +44,9 @@ New Features
8. SOLR-812: Configurable JDBC settings in JdbcDataSource including optimized defaults for read only mode.
(David Smiley, Glen Newton, shalin)
9. SOLR-910: Add a few utility commands to the DIH admin page such as full import, delta import, status, reload config.
(Ahmed Hammad via shalin)
Optimizations
----------------------
1. SOLR-846: Reduce memory consumption during delta import by removing keys when used

View File

@ -69,5 +69,28 @@
</tr>
</table>
</form>
<form action="../dataimport" target="result" method="get">
<input type="hidden" name="clean" value="false">
<input type="hidden" name="commit" value="true">
<input class="stdbutton" type="submit" name="command" value="full-import">
<input class="stdbutton" type="submit" name="command" value="delta-import">
<input class="stdbutton" type="submit" name="command" value="status">
<input class="stdbutton" type="submit" name="command" value="reload-config">
<input class="stdbutton" type="submit" name="command" value="abort">
</form>
<form action="../select" target="result" method="get">
<input type="hidden" name="q" value="*:*">
<input type="hidden" name="start" value="0">
<input type="hidden" name="rows" value="0">
<input class="stdbutton" type="submit" value="Documents Count">
</form>
<form action="../dataimport" target="result" method="get">
<input type="hidden" name="verbose" value="true">
<input type="hidden" name="clean" value="true">
<input type="hidden" name="commit" value="true">
<input type="hidden" name="command" value="full-import">
<input class="stdbutton" type="submit" value="Full Import with Cleaning">
</form>
<a href="index.jsp" target="_parent">Return to Admin Page</a>
</body>
</html>