Re: full name free text search problem

2018-01-30 Thread Rahul Sood
Hi Deepak, Look at the score of your response results. You can do this in Debug mode. Rahul. On Wed, Jan 31, 2018 at 4:18 AM, Deepak Udapudi wrote: > Hi all, > > I have the below scenario in full name search that we are trying to > implement. > > Solr configuration :- > >

DataImportHandler not able to Import a Custom XML - documents array is EMPTY

2018-01-30 Thread Rahul Sood
Hi, Struggling to Import an XML containing an XSL transformation from dataImport. Do we need to run in Cloud mode for this ? When I start solr in DIH mode, my other Cores are not visible. 1) My SolrConfig.XML has this: rahul-data-config.xml 2) My rahul-data-config.xml

Re: Distributed search cross cluster

2018-01-30 Thread Erick Erickson
Jan: Hmmm, must Solr do the work? On some level it seems easier if your middle layer (behind your single IP) has 10 CloudSolrClient thread pools, one for each cluster and just merged the docs when it got them back. That would take care of all of the goodness of internal LBs and all that.

Re: Mixing simple and nested docs in same update?

2018-01-30 Thread Tomas Fernandez Lobbe
I believe the problem is that: * BlockJoin queries do not know about your “types”, in the BlockJoin query world, everything that’s not a parent (matches the parentFilter) is a child. * All docs indexed before a parent are considered childs of that doc. That’s why in your first case it considers

facet.method=uif not working in solr cloud?

2018-01-30 Thread Wei
Hi, I am using the following parameters for faceting, request solr to use the UIF method; =on=color=*:*=uif=1=true It works as expected in my local standalone solr: - facet-debug: { - elapse: 2, - sub-facet: [ - { - processor:

full name free text search problem

2018-01-30 Thread Deepak Udapudi
Hi all, I have the below scenario in full name search that we are trying to implement. Solr configuration :- fieldType name="keywords_text" class="solr.TextField"> Scenario :- Solr configuration has office name, facility name and

Sort for spatial search

2018-01-30 Thread Leila Deljkovic
Hiya, So I have some nested documents in my index with this kind of structure: { "id": “parent", "gridcell_rpt": "POLYGON((30 10, 40 40, 20 40, 10 20, 30 10))", "density": “30" "_childDocuments_" : [ { "id":"child1",

CoreDescriptor not found in CoreCache

2018-01-30 Thread shefalid
I am using solr 6.6.2. In case of an init failure in core, CoreDescriptor of such a core is not present in the core cache (TransientSolrCoreCacheDefault). Is this behavior expected? -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Help with Boolean search using Solr parser edismax

2018-01-30 Thread Wendy2
Hi Emlr, Thank you for reading my post and for your reply. I updated my post with debug info and a better view of the definition of /search request handler. Any suggestion on what I should try? Thanks, Wendy -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Help with Boolean search using Solr parser edismax

2018-01-30 Thread Wendy2
Hi Emir, Thank you so much for your response. I updated my post with an image which display the configuration of the /search request handler. Any suggestions? Thanks, Wendy -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

literal.* use in posting PDF files

2018-01-30 Thread TK Solr
I have a schema.xml defined to require two fields, "id" and "libDocumentID". solrconfig.xml is the standard one. Using curl, I tried posting a PDF file like this: curl 'http://localhost:8983/solr/update/extract?literal.id=foodf=foo=true' -F "myfile=@foo.pdf" but I got: [doc=foo.pdf]

RE: SOLR 7.1 queries not including empty fields in results

2018-01-30 Thread Hodder, Rick
Hi Chris, :Are you still using the same solrconfig.xml you had in 4.10, or did you switch to using a newer sample/default set (or in some other way modified) solrconfig.xml? :I ask because even if you are using the ClassicIndexSchemaFactory, your update processor chain might be using

Searching for an efficient and scalable way to filter query results using non-indexed and dynamic range values

2018-01-30 Thread Luigi Caiazza
Hello, I am working on a project that simulates a selective, large-scale crawling. The system adapts its behaviour according with some external user queries received at crawling time. Briefly, it analyzes the already crawled pages in the top-k results for each query, and prioritizes the visit of

Re: Broken Feature in Solr 6.6

2018-01-30 Thread Joel Bernstein
Your welcome Joel Bernstein http://joelsolr.blogspot.com/ On Tue, Jan 30, 2018 at 11:00 AM, Antelmo Aguilar wrote: > Hi Joel, > > Thank you! Changing the class from SearchHandler to ExportHandler worked. > I appreciate you looking into it. > > -Antelmo > > On Tue, Jan 30,

Re: Computing record score depending on its association with other records

2018-01-30 Thread Alessandro Benedetti
Accordingly to what I understood the feature weight is present in your second collection. You should express the feature weight in the model resource ( not even in the original collection) Is actually necessary for the feature weight to be in a separate Solr collection ? - ---

Re: Computing record score depending on its association with other records

2018-01-30 Thread Gintautas Sulskus
Thanks, Alessandro, for your reply. Indeed, LTR looks like what I need. However, all of the LRT examples that I have found use a single collection as a data source. My data spans across two collections. Does LTR support this somehow or should I 'denormalise' the data and merge both collections?

Distributed search cross cluster

2018-01-30 Thread Jan Høydahl
Hi, A customer has 10 separate SolrCloud clusters, with same schema across all, but different content. Now they want users in each location to be able to federate a search across all locations. Each location is 100% independent, with separate ZK etc. Bandwidth and latency between the clusters

Re: Mixing simple and nested docs in same update?

2018-01-30 Thread Jan Høydahl
Pasting the GIST link :-) https://gist.github.com/45640fe3bad696d53ef8a0930a35d163 Anyone knows if this is expected behavior? -- Jan Høydahl, search solution architect Cominvent AS - www.cominvent.com > 15. jan. 2018 kl. 14:08 skrev

Re: Broken Feature in Solr 6.6

2018-01-30 Thread Antelmo Aguilar
Hi Joel, Thank you! Changing the class from SearchHandler to ExportHandler worked. I appreciate you looking into it. -Antelmo On Tue, Jan 30, 2018 at 10:43 AM, Joel Bernstein wrote: > I think the best approach is to use the /export handler. The wt=xsort I > believe has

Re: Broken Feature in Solr 6.6

2018-01-30 Thread Joel Bernstein
I think the best approach is to use the /export handler. The wt=xsort I believe has been removed from the system. The configuration for the /export handler uses wt=json now. The configurations in the implicitPlugins.js look like this: "/export": { "class": "solr.ExportHandler",

Re: Perform incremental import with PDF Files

2018-01-30 Thread Emir Arnautović
Hi Karan, clean=false will not delete existing documents in index, but if you reimport documents with the same ID they will be overwritten. If you see the same doc with updated timestamp, then it probably means that you did full-import of docs with the same file name. HTH, Emir -- Monitoring -

Re: Help with Boolean search using Solr parser edismax

2018-01-30 Thread Emir Arnautović
Hi Wendy, It is most likely that you need to list fields that can appear in query using uf. The best way to see what is going on is to use debugQuery and you can see more details how your query is parsed. HTH, Emir -- Monitoring - Log Management - Alerting - Anomaly Detection Solr &

Re: Computing record score depending on its association with other records

2018-01-30 Thread Alessandro Benedetti
Hi Ginsul, let's try to wrap it up : 1) you have an item win N binary features ( given the fact that you represent the document with a list of feature Ids ( and no values) I would assume that it means that when the feature is in the list, it has a value of 1 for the item 2) you want to score (or

Computing record score depending on its association with other records

2018-01-30 Thread Gintautas Sulskus
Hi, I have two collections. The first collection 'items' stores associations between items and their features. The second collection 'features' stores importance score for each feature. items: item_id- one-to-many - feature_id features: feature_id - one-to-one - importance_score_int The

Re: Broken Feature in Solr 6.6

2018-01-30 Thread Antelmo Aguilar
Hi Joel, I apologize, I should have been more specific. We do not use the export handler that is defined by Solr. We use a couple export handlers that we defined using the convention explained in the ticket that implemented the feature. We did this because we have "categories" of things we

Re: Custom Solr function

2018-01-30 Thread Atita Arora
Hope this helps - https://dzone.com/articles/how-write-custom-solr On Tue, Jan 30, 2018 at 2:06 PM, LOPEZ-CORTES Mariano-ext < mariano.lopez-cortes-...@pole-emploi.fr> wrote: > Can we create a custom function in Java? > > Example : > > sort = func([USER-ENTERED TEXT]) desc > > func returns will

Re: Solr 4.8.1 multiple client updates the same collection

2018-01-30 Thread Alessandro Benedetti
"At last, please let me ask another question, is it true that after every commit, even if I had only updated one document, the SolrCloud cache is invalidated (i.e. Solr must open a new searcher)? Because this what the second clients does, updating a document at time and commit. In other

Re: Using Solr with SharePoint Online

2018-01-30 Thread Charlie Hull
On 30/01/2018 07:57, Mohammed.Adnan2 wrote: Hello Team, I am a beginner learning Apache Solr. I am trying to check the compatibility of solr with SharePoint Online, but I am not getting anything concrete related to this in the website documentation. Can you please help me in providing some

AW: Build suggester in different directory (not /tmp).

2018-01-30 Thread Clemens Wyss DEV
> I almost guarantee that buildOnCommit will be unsatisfactory if not "on commit" when should suggestions/spellcheckings be updated? And how? Spellchecking/suggestions@solr: what are the best (up-to-date) sources/links for spellchecking and suggestions? -Ursprüngliche Nachricht- Von:

Custom Solr function

2018-01-30 Thread LOPEZ-CORTES Mariano-ext
Can we create a custom function in Java? Example : sort = func([USER-ENTERED TEXT]) desc func returns will numeric value Thanks in advance