solrinitialisationerrors: Error during shutdown of writer.

2013-12-04 Thread Nutan
I dont why all of a sudden I started getting this errror : this is the sreenshot: I thought there might be some problem with tomcat,so I uninstalled it ,but i still get the same error. I have no idea why is this happening,initially i

/select with 'q' parameter does not work

2013-12-11 Thread Nutan
I have indexed 9 docs. this my* schema.xml* contents id *solrconfig.xml* is: LUCENE_42 ${solr.document.data.dir:} explicit 20 * id

Re: /select with 'q' parameter does not work

2013-12-11 Thread Nutan
But below that i have also defined this, explicit 10 contents Initially it worked,now all of a sudden why no results?? -- View this message in context: http://lucene.472066.n3.nabble.com/select-with-q-parameter-does-not-work-tp4106099p4106128.html Sent from t

Re: /select with 'q' parameter does not work

2013-12-11 Thread Nutan
explicit 20 * id 2.1 ${solr.document.data.dir:} explicit 10 contents i made changes n this new solrconfig.xml ,but still the query does not work. -- Vi

Re: /select with 'q' parameter does not work

2013-12-11 Thread Nutan
No exception,it works normal. other queries like : http://localhost:8080/solr/document/select?q=author:dgfb works. Only for 'contents' field it does not work. all other functionalities like analysis,indexing etc work fine. But for spell check : http://localhost:8080/solr/document/spell?q=programme

Re: /select with 'q' parameter does not work

2013-12-11 Thread Nutan
solrconfig is a xml file,it is not possible to run xml files,you open it in browser and its code gets displayed. -- View this message in context: http://lucene.472066.n3.nabble.com/select-with-q-parameter-does-not-work-tp4106099p4106176.html Sent from the Solr - User mailing list archive at Nab

unable to facet range query

2013-12-11 Thread Nutan
My schema has : this is my field which i want to facet: I replaced above fieldtype with this: But now this shows error in elevate component.My elevate.xml is integer elevate.xml *Logs:* Caused by: org.apache.solr.common.SolrException: Error initializing QueryElevationComponent.

Re: unable to facet range query

2013-12-12 Thread Nutan
I remove the QEC but for facet it still gives this error: Unable to range facet on field:id{type=integer,properties=indexed,stored,omitNorms,required, required=true} -- View this message in context: http://lucene.472066.n3.nabble.com/unable-to-facet-range-query-tp4106305p4106335.html Sent from

Re: unable to facet range query

2013-12-13 Thread Nutan
yes, i did reindex. -- View this message in context: http://lucene.472066.n3.nabble.com/unable-to-facet-range-query-tp4106305p4106710.html Sent from the Solr - User mailing list archive at Nabble.com.

indexing from bowser

2013-12-16 Thread Nutan
how to index pdf,doc files from browser? this query is used for indexing : curl "http://localhost:8080/solr/document/update/extract?literal.id=12&commit=true"; -F"myfile=@C:\solr\document\src\test1\Coding.pdf" but i need to index from browser, as we do for delete: http://localhost:8080/solr/docum

Re: indexing from bowser

2013-12-16 Thread Nutan
ok thanks, but is there any other way where -F is not used? I am creating a api in vc++ and to link to solr i am using libcurl,for this to work the string is the url, eg: curl_easy_setopt(curl, CURLOPT_URL,"http://localhost:8080/solr/document/select?q=*%3A*&wt=json&indent=true&fl=id";); so for

program termination in solrj

2013-12-21 Thread Nutan
i am trying to index documents with solrj, this is my code, import org.apache.solr.client.solrj.SolrServerException; import org.apache.solr.client.solrj.impl.*; import org.apache.solr.common.SolrInputDocument; import java.io.IOException; public class index { public static void main(String[] args

Re: program termination in solrj

2013-12-21 Thread Nutan
@Manish: i did add() but still the same error. *Logs* shows this: INFO: [document] webapp=/solr path=/update params={wt=javabin&version=2} {add=[23 (1455037990928646144)]} 0 5 Dec 21, 2013 6:56:01 PM org.apache.solr.update.DirectUpdateHandler2 commit INFO: start commit{,optimize=false,openSearche

Re: program termination in solrj

2013-12-21 Thread Nutan
I put the breakpoint at line : SolrInputDocument doc1 = new SolrInputDocument(); It initially showed source not found for Launcher.class,HTTPSolrServer.class. But now even for URLClassPath.class ,the path to this class is the src.jar in the jdk directory. -- View this message in context: http:

Re: program termination in solrj

2013-12-21 Thread Nutan
When i run the console output is this : Which shows that program got terminated. And from logs i am not able to find the solution. When debugged, at many places it shows that:

Re: program termination in solrj

2013-12-21 Thread Nutan
I dont see docs in the solr. -- View this message in context: http://lucene.472066.n3.nabble.com/program-termination-in-solrj-tp4107706p4107717.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: program termination in solrj

2013-12-21 Thread Nutan
So is it only because of the sources not found, that the docs dont get indexed??? -- View this message in context: http://lucene.472066.n3.nabble.com/program-termination-in-solrj-tp4107706p4107719.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: program termination in solrj

2013-12-21 Thread Nutan
i check as with query: q=id:23, response is : numfound=0, Statictics is: Last Modified:16 minutes ago Num Docs:14 Max Doc:16 Deleted Docs:2 Version:495 Segment Count:5 Also for q=*:* , numfound=14 -- View this message in context: http://lucene.472066.n3.nabble.com/program-termination-in-sol

Re: program termination in solrj

2013-12-21 Thread Nutan
thru curl, pdf indexing, curl "http://localhost:8080/solr/document/update/extract?literal.id=12&commit=true"; -F"myfile=@C:\solr\document\src\test1\Coding.pdf" -- View this message in context: http://lucene.472066.n3.nabble.com/program-termination-in-solrj-tp4107706p4107730.html Sent from the

Re: program termination in solrj

2013-12-21 Thread Nutan
do i need to create a new schema.xml ? -- View this message in context: http://lucene.472066.n3.nabble.com/program-termination-in-solrj-tp4107706p4107734.html Sent from the Solr - User mailing list archive at Nabble.com.

document contained more than 100000 characters

2013-12-22 Thread Nutan
Why is the error as : org.apache.tika.sax.WriteOutContentHandler$WriteLimitReachedException: Your document contained more than 10 characters, and so your requested limit has been reached. To receive the full text of the document, increase your limit. (Text up to the limit is however available).

unknown _stream_source_info while indexing rich doc in solr

2013-09-04 Thread Nutan
i am using solr4.2 on windows7 my schema is: solrconfig.xml : contents true ignored_ true when i execute: curl "http://localhost:8080/solr/update/extract?literal.id=1&commit=true"; -F "myfile=@abc.txt" i get error:unknown field ignored_stream_ source_info. i referred solr cookbook3

Re: unknown _stream_source_info while indexing rich doc in solr

2013-09-04 Thread Nutan
yes sir i did restart the tomcat. On Wed, Sep 4, 2013 at 6:27 PM, Jack Krupansky-2 [via Lucene] < ml-node+s472066n4088181...@n3.nabble.com> wrote: > Did you restart Solr after editing config and schema? > > -- Jack Krupansky > > -Original Message- > From:

Re: unknown _stream_source_info while indexing rich doc in solr

2013-09-06 Thread Nutan
I will try this,thanks -- View this message in context: http://lucene.472066.n3.nabble.com/unknown-stream-source-info-while-indexing-rich-doc-in-solr-tp4088136p4088490.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: unknown _stream_source_info while indexing rich doc in solr

2013-09-06 Thread Nutan
it shows type as undefined for dynamic field ignored_* , and I am using default collection1 core, but on the admin page it shows schema : -- View this message in context: http://lucene.472066.n3.nabble.com/unknown-stream-source-info-while-indexing-rich-doc-in-solr-tp4088136p4088591

Re: unknown _stream_source_info while indexing rich doc in solr

2013-09-08 Thread Nutan
Error got resolved,thanks a lot Sir.I have been trying since days to resolve it. On Fri, Sep 6, 2013 at 11:36 PM, Chris Hostetter-3 [via Lucene] < ml-node+s472066n4088604...@n3.nabble.com> wrote: > > : it shows type as undefined for dynamic field ignored_* , and I am using > > That means the

requested url solr/update/extract not available on this server

2013-09-14 Thread Nutan
I am working on Solr 4.2 on Windows 7. I am trying to index pdf files.I referred Solr Cookbook 4. Tomcat is using 8080 port number. I get this error:requested url solr/update/extract not available on this server When my curl is : curl "http://localhost:8080/solr/update/extract?literal.id=1&commit=t

solr/document/select not available

2013-09-15 Thread Nutan
I get this error : solr/select not available.I am using two cores document and contract.Solrconfig.xml of document core is : LUCENE_42 ${solr.collection1.data.dir:} /requestDispatcher> explicit 20 * 2.1 last_modified conten

searching within documents

2013-09-15 Thread Nutan
this is my schema.xml : id this is the document i want to search through contents: 8 nutan shinde best book for solr solr,lucene,apache tika solr,lucene is used for search based service.Google works uses web crawler.Lucene can implement web crawler solr enterprise

Re: searching within documents

2013-09-15 Thread Nutan
, Gora Mohanty-3 [via Lucene] < ml-node+s472066n4090175...@n3.nabble.com> wrote: > On 15 September 2013 17:20, Nutan <[hidden > email]<http://user/SendEmail.jtp?type=node&node=4090175&i=0>> > wrote: > > > > this is my schema.xml : > > You do not prov

Re: searching within documents

2013-09-21 Thread Nutan
id id In my solrconfig I have defined the standard handler for select as : 20 * This is the example doc which i want to search,(this is the output for *:* query) 8 nutan shinde best book for solr solr,lucene,apache tika solr,lucene is used for

Re: requested url solr/update/extract not available on this server

2013-09-21 Thread Nutan
l.id=1&commit=true"; -F > "myfile=@stump.winners.san.diego.2013.pdf" > > > 0 name="QTime">1839 > > > > > > > : > : Check solrconfig to see that /update/extract is configured as in the > standard > : Solr example. > : > : Does /solr

Re: requested url solr/update/extract not available on this server

2013-09-22 Thread Nutan
ignored_ > > > > I'd start with the stock config and try removing things one-by-one... > > Best, > Erick > > On Sat, Sep 21, 2013 at 7:34 AM, Nutan <[hidden > email]<http://user/SendEmail.jtp?type=node&node=4091391&i=0>>

Re: requested url solr/update/extract not available on this server

2013-09-24 Thread Nutan
ingMailingLists > > Erick > > On Sun, Sep 22, 2013 at 5:52 AM, Nutan <[hidden > email]<http://user/SendEmail.jtp?type=node&node=4091440&i=0>> > wrote: > > > I did define the request handler. > > > > > > On Sun, Sep 22, 2013 at 12:51

Re: searching within documents

2013-09-24 Thread Nutan
mFound":2,"start":0,"docs":[ { "id":"7", "author":["nutan"], "comments":"best book", "keywords":"solr,lucene", "contents":"solr,lu

RE: searching within documents

2013-09-24 Thread Nutan
Okay thanks. -- View this message in context: http://lucene.472066.n3.nabble.com/searching-within-documents-tp4090173p4091705.html Sent from the Solr - User mailing list archive at Nabble.com.

RE: searching within documents

2013-09-24 Thread Nutan
Why does it happens that for few words it shows output and for few it does not? For example, 1) q=contents:Sushant numfound is 0 q=contents:sushant gives output 2) q=contents:acted numfound 0 q=contents:well gives output This is the document: 13 chetan worst boo

Re: searching within documents

2013-09-25 Thread Nutan
time but not query time > (not finding q=acted) > > For your query, > > you don't lowercase the input (contents:Sushant > not getting hits). > > Please spend some time with the admin/analysis page > to understand the transformations at index time and > query time

UML diagrams for solr

2013-10-02 Thread Nutan
Hello, I need UML diagrams(class,component,deployment,architecture diagrams) for Solr, where can I get these diagrams? Any help will be appreciated. -- View this message in context: http://lucene.472066.n3.nabble.com/UML-diagrams-for-solr-tp4093126.html Sent from the Solr - User mailing list a

Re: UML diagrams for solr

2013-10-05 Thread Nutan
Hi Kamaci, I am doing a project on Solr using all the features of it,I have started implementing a few of them.But I need Data flow diagrams,UML diagrams not only to learn but also to present,so if you can in anyway provide your class-diagram,it will be helpful to work further on Solr. Also I have

Re: Indexing pdf files - question.

2013-09-04 Thread Nutan Shinde
My solrconfig.xml is: desc true attr_ true Schema.xml: doc_id I have created extract directory and copied all required .jar and solr-cell jar files into this extract directory and given its path in lib tag in solrconfig.xml When I try

Re: Indexing pdf files - question.

2013-09-08 Thread Nutan Shinde
Error got resolved,solution was must be within tag. On Sun, Sep 8, 2013 at 3:31 AM, Furkan KAMACI wrote: > Could you show us logs you get when you start your web container? > > > 2013/9/4 Nutan Shinde > > > My solrconfig.xml is: >

Re: searching within documents

2013-09-21 Thread Nutan Shinde
And this works: localhost:8080/solr/select?q=title:solr this gives output as required doc, but localhost:8080/solr/select?q=contents:solr gives num found as 0 This is the new edited schema.xml : id On Sat, Sep 21, 2013 at 7:58 PM, Nutan wrote: > I have been try