Exception during integration of Solr with UIMA

2017-03-20 Thread aruninfo100
Hi All, I am trying to integrate UIMA with Solr.I am following the steps mentioned in https://cwiki.apache.org/confluence/display/solr/UIMA+Integration .But when I try to index the documents,exceptions are thrown in terminal and solr log is also logged with error traces.I have been trying to

model building

2017-03-20 Thread Joe Obernberger
I'm trying to build a model using tweets. I've manually tagged 30 tweets as threatening, and 50 random tweets as non-threatening. When I build the mode with: update(models2, batchSize="50", train(UNCLASS, features(UNCLASS,

Re: ChildDocTransformerFactory and returning only parents with children

2017-03-20 Thread David Kramer
I’ll be honest I didn’t understand most of what you wrote (like I said we’re just getting started with this). We will most certainly need to do faceted search in future iterations so thanks for the “json.facets” reference. And I do understand that the ChildDocTransformer is really for

Solr Split not working

2017-03-20 Thread Azazel K
Hi, We have a solr index running in 4.5.0 that we are trying to upgrade to 4.7.2 and split the shard. The uniqueKey is a TrieLongField, and it's values are always negative : Max : -9223372035490849922 Min : -9223372036854609508 When we copy the solr 4.5.0 index to new cluster running 4.7.2

Re: model building

2017-03-20 Thread Joe Obernberger
If I put the training data into its own collection and use q="*:*", then it works correctly. Is that a requirement? Thank you. -Joe On 3/20/2017 3:47 PM, Joe Obernberger wrote: I'm trying to build a model using tweets. I've manually tagged 30 tweets as threatening, and 50 random tweets as

dynamic field sorting

2017-03-20 Thread Midas A
Hi , How can i improve the performance of dynamic field sorting . index size is : 20 GB Regards, Midas

Re: Storing index of different collections in different location

2017-03-20 Thread Zheng Lin Edwin Yeo
Hi Mikhail, Thanks for the information. I'll try it out. Regards, Edwin On 20 March 2017 at 02:50, Mikhail Khludnev wrote: > Hello, Edwin. > > https://cwiki.apache.org/confluence/display/solr/Collections+API# > CollectionsAPI-CREATESHARD:CreateaShard > mentions >

Re: model building

2017-03-20 Thread Joel Bernstein
I've only tested with the training data in it's own collection, but it was designed for multiple training sets in the same collection. I suspect you're training set is too small to get a reliable model from. The training sets we tested with were considerably larger. All the idfs_ds values being

Re: SOLR Data Locality

2017-03-20 Thread Shawn Heisey
On 3/17/2017 11:14 AM, Imad Qureshi wrote: > I understand that but unfortunately that's not an option right now. We > already have 16 TB of index in HDFS. > > So let me rephrase this question. How important is data locality for SOLR. Is > performance impacted if SOLR data is on a remote node?

Re: About editing managed-schema by hand

2017-03-20 Thread Shawn Heisey
On 3/20/2017 9:22 AM, Issei Nishigata wrote: > Is my understanding correct that managed-schema is not limited that it > can be modified only via Schema API, but that we usually modify it via > Schema API, and we also can modify what Schema API can't do by > hand-editing? Needless to say, I

Count Dates Given A Range in a Multivalued Field

2017-03-20 Thread Furkan KAMACI
Hi All, I have a multivalued date field i.e.: [2017-02-06T00:00:00Z,2017-02-09T00:00:00Z,2017-03-04T00:00:00Z] I want to count how many dates exist given a data range within such field. i.e. start: 2017-02-01T00:00:00Z end: 2017-02-28T00:00:00Z result is 2 (2017-02-06T00:00:00Z and

Re: Exception during integration of Solr with UIMA

2017-03-20 Thread Tommaso Teofili
Hi, the UIMA OpenCalais Annotator you're using refers to an old endpoint which is no longer available, see log line [1]. I would suggest to simply remove the OpenCalaisAnnotator entry from your UIMAUpdateRequestProcessor configuration in solrconfig.xml. More generally you should put only the UIMA

Re: Exception during integration of Solr with UIMA

2017-03-20 Thread aruninfo100
Hi Tommaso, Thanks for the reply. In the UIMAUpdateRequestProcessor I have only OpenCalais liscence entry and no other entries.So I need to remove the same right. VALID_OPENCALAIS_KEY . Do i need to make modifications/remove in the OverridingParamsExtServicesAE.xml file for OpenCalais ?

ChildDocTransformerFactory and returning only parents with children

2017-03-20 Thread David Kramer
Hi. We’re just ramping up a product search engine for our eCommerce site, so this is all new development and we are slowly building up our Solr knowledgebase, so thanks in advance for any guidance. Our catalog (mostly shoes and apparel) has three objects nested: Products (title, description,

Re: About editing managed-schema by hand

2017-03-20 Thread Issei Nishigata
Thank you for these information. but I am still confusing about specification of managed-schema. I recognize that I cannot modify "unique id" or "Similarity" by Schema API now. * https://issues.apache.org/jira/browse/SOLR-7242 Isn't there any other way than hand-editing in this particular case?

Re: [Migration Solr5 to Solr6] Unwanted deleted files references

2017-03-20 Thread Elodie Sannier
We have found a workaround to close the searchers checking the current index version. And now the SolrCore does not have many open searchers. However, we have less unwanted deleted files references but we still have some. We have two collections fr_blue, fr_green with aliases: fr -> fr_blue

Re: ChildDocTransformerFactory and returning only parents with children

2017-03-20 Thread Alexandre Rafalovitch
You should be able to nest things multiple levels deep. What happens when you try? For trying to find parents where children satisfy some criteria, [child] result transformer is probably a bit later. You may want to look into json.facets instead and search against children with shifting domain up