Search Results: 'solr'

…Unable to process event from channel c1. Exception follows. org.apache.solr.client.solrj.impl.CloudSolrServer$RouteException: org/apache/http/pool/ConnPoolControl at org.apache.solr.client.solrj.impl.CloudSolrServer.directUpdate(CloudSolrServer.java:360) at org.apache.solr.client.solrj.impl.CloudSolrServer.request(CloudSolrServer.java:533) at org.apache.solr.client.solrj.request.AbstractUpdateRequest.process(AbstractUpdateRequest.java:124) at org.apache.solr.client.solrj.SolrServer.add(SolrServer.java:68) at org.apache.solr.client.solrj.SolrServer.add(SolrServer.java:54) at org.kitesdk.morphline.solr.SolrServerDocumentLoader.sendLoads(SolrServerDocumentLoader.java:140) at org.kitesdk.morphline.solr.SolrServerDocumentLoader.sendBatch(SolrServerDocumentLoader.java:131) at org.kitesdk.morphline.solr.SolrServerDocumentLoader.commitTransaction(SolrServerDocumentLoader.java:94) at org.kitesdk.morphline.solr.LoadSolrBuilder$LoadSolr.doNotify(LoadSolrBuilder.java:104) at…

…add a systemPropertyVariables entry named solr.test.versions with a comma separated list of Solr versions to test with: <plugin> <artifactId>maven-failsafe-plugin</artifactId> <version>${maven-failsafe-plugin.version}</version> <configuration> <systemPropertyVariables> […] <solr.test.versions>solr:8.8,solr:8.7,solr:8.6,solr:8.5,solr:8.4,solr:8.3,solr:8.2,solr:8.1</solr.test.versions> </systemPropertyVariables> </configuration> […] </plugin> Summary To

…directory, you should be able to run the various ant tasks to build Solr 5 and setup IntelliJ project files. Let’s build Solr: $~/workspace/lucene-solr> cd solr$~/workspace/lucene-solr/solr> ant server You’ll notice…

…downloaded the Solr/Lucene source tree and I’ll call the solr/ subdirectory the Solr source tree. My Solr/Lucene Source Tree OK enough nonsense, let’s get started. Browse to the top-level Solr/Lucene…

…diff –git a/solr/webapp/web/index.html b/solr/webapp/web/index.htmlindex 7fe1381763c..11157402269 100644— a/solr/webapp/web/index.html+++ b/solr/webapp/web/index.html@@ -182,7 +182,7 @@ limitations under the License. ng-model="currentCollection" chosen ng-change="showCollection(currentCollection)"- ng-options="collection.name for collection in aliases_and_collections" diff –git a/solr/webapp/web/partials/collections.html b/solr/webapp/web/partials/collections.htmlindex 198030c744f..8c9cebc81c7 100644— a/solr/webapp/web/partials/collections.html+++…

…start.sh shell script it starts Solr with solr.solr.home=lucidworks/solr directory. Something to note is that the start.sh has complete paths defined in it from the installer: [sourcecode language=”text”]cd /Users/epugh/solr/solr2/LucidWorks/lucidworks/jetty/../[/sourcecode] It really…

…finally sending data to Solr. Using the normal Solr component, you can write code that looks like this: from(“file://foo?fileName=input.csv”) .unmarshall().csv() .split(body()) .to("bean:convertToSolrDoc") .setHeader(SolrConstants.OPERATION, SolrConstants.INSERT) .to(“solr://localhost:8983/solr/collection1”) This code defines a camel…

…following: dan@maus:~$ mkdir temp dan@maus:~$ cd temp dan@maus:~/tmp$ unzip /usr/local/apache-solr-3.4.0/dist/apache-solr-3.4.0.war dan@maus:~/tmp$ cp ~/code/paoding-analysis/paoding-analysis.jar WEB-INF/lib/ dan@maus:~/tmp$ cp ~/code/paoding-analysis/classes/*.properties WEB-INF/ dan@maus:~/tmp$ zip -r * apache-solr-3.4.0-paoding.war 4. Update your Solr configuration and add…