custom hashing across cloud shards

2013-08-19 Thread Katie McCorkell
Hey All, If you don't specify numShards at the start, then you can do custom hashing, because Solr will just write the document to whatever shard you send it to. However, when I don't specify numshards, I'm having trouble creating more than one shard. It makes one shard and the others I add are

Re: SolrCloud shard down

2013-07-29 Thread Katie McCorkell
something like http://pastebin.com/ to share the log in detail. 3. If you had replicas, you wouldn't need to manually switch. It get's taken care of automatically. On Sat, Jul 27, 2013 at 4:16 AM, Katie McCorkell katiemccork...@gmail.com wrote: Hello, I am using

Re: solr with java service wrapper

2013-07-26 Thread Katie McCorkell
I was using Linux. I used the Java Service Wrapper and found what I needed! It provides a way to wrap the start.jar so that it can be started and stopped using linux daemon, helpful for my case of connecting Solr to a chef recipe. I may write an explanation of this soon.

SolrCloud shard down

2013-07-26 Thread Katie McCorkell
Hello, I am using the SolrCloud with a zookeeper ensemble like on example C from the wiki except with total of 3 shards and no replicas (oops). After indexing a whole bunch of documents, shard 2 went down and I'm not sure why. I tried restarting it with the jar command and I tried deleting

solr with java service wrapper

2013-07-17 Thread Katie McCorkell
Hello, I was wondering if people had experience using solr with jetty and a java service wrapper for automatic deployment? I thought a service wrapper might be included in the solr download, but I didn't see one. How does one search the mailing list archive? Are there any previous topics about

Deleted Docs

2013-07-09 Thread Katie McCorkell
Hello, I am curious about the Deleted Docs: statistic on the solr/#/collection1 Overview page. Does Solr remove docs while indexing? I thought it only did that when Optimizing, however my instance had 726 Deleted Docs, but then after adding some documents that number decreased, eventually to 18

are fields stored or unstored by default xml

2013-07-01 Thread Katie McCorkell
In schema.xml I know you can label a field as stored=false or stored=true, but if you say neither, which is it by default? Thank you Katie