Re: throttle segment merging

2012-10-27 Thread Radim Kolar
Dne 26.10.2012 3:47, Tomás Fernández Löbbe napsal(a): Is there way to set-up logging to output something when segment merging runs? I think segment merging is logged when you enable infoStream logging (you should see it commented in the solrconfig.xml) no, segment merging is not logged at info

Re: Get metadata for query

2012-10-27 Thread Erik Hatcher
Distributed *search*? It'll do the right thing as this is an update processor, and only invoked during indexing. Maybe you meant distributed indexing, ala SolrCloud it should also work fine, just like any other straightforward update processor that adds/updates/removes fields from incomin

Re: lukeall.jar for Solr4r?

2012-10-27 Thread Lance Norskog
Aha! Andrzej has not built a 4.0 release version. You need to check out the source and compile your own. http://code.google.com/p/luke/downloads/list - Original Message - | From: "Carrie Coy" | To: solr-user@lucene.apache.org | Sent: Friday, October 26, 2012 7:33:45 AM | Subject: lukeal

Re: Get metadata for query

2012-10-27 Thread Lance Norskog
Erk, haven't used /luke in years. Apologies. About that JS: does distributed search "do the right thing" when the distributed part is not implemented? Or does every script have to explicitly include distributed search support? - Original Message - | From: "Erik Hatcher" | To: solr-user

Doc Transformer to remove document from the response

2012-10-27 Thread eks dev
Transformer is great to augment Documents before shipping to response, but what would be a way to prevent document from being delivered? I have some search components that make some conclusions after search , duplicates removal, clustering and one Augmenter(solr Transformer) to shape the response

Re: Get metadata for query

2012-10-27 Thread Erik Hatcher
Lance Lance Lance :) As the OP said, you can use /admin/luke to get all the fields (static and dynamic) used in the index. I've used that trick to get a list of all *_facet dynamic fields to then have my UI (Blackight's first prototypes, aka Solr Flare) turn around and facet on them. The

Re: Search and Entity structure

2012-10-27 Thread v vijith
Indeed , this worked . The fix that was required was related to the how the document is represented. It depends on the unique key. For the same unique key, it will always update the existing document. So to avoid it, I used the oracle sequence to identify the record, it can be oracle row number or

Re: DIH throws NullPointerException when using dataimporter.functions.escapeSql with parent entities

2012-10-27 Thread Dominik Siebel
In fact there are fields that have a NULL value but they are already taken care of in the SQL Query like: IF(field_name IS NULL, '', field_name). Also it's not just single rows that fail. It's all of them. It does not seem to have anything to do with the data that's coming from the database. If I o

Re: Search and Entity structure

2012-10-27 Thread v vijith
Hi, If I write a query like this, is there a way I can achive the results that I need select * from employee a left outer join qualification b on a.empid = b.empid; This will return 5 records, 1 per employee qualification. Can this be indexed as is? 1, John, MBA, A 1, John, Lead, B 2, George, M

Re: Get metadata for query

2012-10-27 Thread Lance Norskog
Nope! Each document comes back with its own list of stored fields. If you want to find all fields in an index, you have to fetch every last document and OR in the fields in that document. There is no Solr call to get a full list of static or dynamic fields. If you use lots of dynamic fields I c