MINOR: Added basic files to allow manual posting of data to SOLR for debugging purposes

This commit is contained in:
Russell Michell 2012-05-14 14:26:00 +12:00
parent 8381621f98
commit 73cdc76de0
4 changed files with 64 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
MyIndex

BIN
thirdparty/solr/server/post.jar vendored Normal file

Binary file not shown.

28
thirdparty/solr/server/post.sh vendored Executable file
View File

@ -0,0 +1,28 @@
#!/bin/sh
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
FILES=$*
URL=http://localhost:8983/solr/update
for f in $FILES; do
echo Posting file $f to $URL
curl $URL --data-binary @$f -H 'Content-type:application/xml'
echo
done
#send the commit command to make sure all the changes are flushed and visible
curl $URL --data-binary '<commit/>' -H 'Content-type:application/xml'
echo

35
thirdparty/solr/server/ss-test.xml vendored Normal file
View File

@ -0,0 +1,35 @@
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!--
Example XML data fo rposting to a SOLR instance as part of a SilverStripe CMS install
See your schema.xml document, for a list of fields, auto-configured to work with solr.
Manually post with: java -Durl=http://localhost:8983/solr/MyIndex/update/ -Dtype=text/xml -jar post.jar ss-test.xml
Veyr basic XML, copied right of out of a fresvh SS3 install, just to simulate real data
-->
<add>
<doc>
<field name="_documentid">1</field>
<field name="ID">1</field>
<field name="SiteTree_Title">Home</field>
<field name="SiteTree_Content">Welcome to SilverStripe!</field>
<field name="ClassName">Page</field>
<field name="ClassHierarchy"></field>
</doc>
</add>