| clear query|facets|time |
Search criteria: schema.html.
Results from 1 to 10 from
507 (1.356s).
|
|
|
Loading phrases to help you refine your search...
|
|
Re: Dynamic schema design: feedback requested - Solr - [mail # user]
|
|
... for the schema (whether it's on the local filesystem or on ZK). There are clear benefits to this being the persistence mechanism for the REST API. Even if the REST API persisted it's data in some...
|
|
... already have this intermediate representation - it's the in-memory IndexSchema object. -Yonik http://lucidworks.com ...
|
|
|
Author: Yonik Seeley,
2013-03-11, 18:22
|
|
|
Re: Dynamic schema design: feedback requested - Solr - [mail # user]
|
|
.... In local FS mode, it might be a very low cost (simply check the timestamp on the file for example). Code to re-read the schema and merge changes needs to be there anyway for cloud mode it seems...
|
|
.... *If* we needed to, we could just assert that the schema file is the persistence mechanism, as opposed to the system of record, hence if you hand edit it and then use the API to change it, your...
|
[+ show more]
[- hide]
| ... on ZK that represents the system of record for the schema seemed to be the best. I never even considered making it non-human readable (and thus non-editable by hand). -Yonik http://lucidworks.com ... |
|
|
Author: Yonik Seeley,
2013-03-11, 20:03
|
|
|
Re: Dynamic schema design: feedback requested - Solr - [mail # user]
|
|
...On Mon, Mar 11, 2013 at 5:51 PM, Chris Hostetter wrote: I guess I like a more breadth-first method (or at least that's what it feels like to me). You keep both options in mind as...
|
|
|
Author: Yonik Seeley,
2013-03-12, 01:27
|
|
|
clustering schema - Solr - [mail # dev]
|
|
.... java.lang.NullPointerException at org.apache.solr.schema.SortableIntField.write(SortableIntField.java:72) at org.apache.solr.schema.SchemaField.write(SchemaField.java:108) [...] It's because...
|
|
... a schema mismatch of course... I had already indexed data using the normal schema, and now we're using a different schema/config with the same data dir. I imagine this will be a common mistake...
|
[+ show more]
[- hide]
| ... "fix" (it's not really a bug, just undesirable) is to try and get the schemas closer together? -Yonik http://www.lucidimagination.com ... |
|
|
Author: Yonik Seeley,
2009-10-20, 21:13
|
|
|
[SOLR-3251] dynamically add field to schema - Solr - [issue]
|
|
...One related piece of functionality needed for SOLR-3250 is the ability to dynamically add a field to the schema....
|
|
|
http://issues.apache.org/jira/browse/SOLR-3251
Author: Yonik Seeley,
2013-02-06, 21:50
|
|
|
Re: Field collapsing bad performances, schema redesign - Solr - [mail # user]
|
|
...On Mon, Feb 4, 2013 at 10:34 AM, Mickael Magniez wrote: This is currently very inefficient - if you can live without retrieving the total number of groups, performance should be ...
|
|
|
Author: Yonik Seeley,
2013-02-04, 16:07
|
|
|
Re: clustering schema - Solr - [mail # dev]
|
|
...Actually just copying the example schema to contrib seemed to work fine... those should probably be kept in alignment regardless of if we decide to do something different about the data...
|
|
|
Author: Yonik Seeley,
2009-10-20, 23:52
|
|
|
Re: clustering schema - Solr - [mail # dev]
|
|
...On Tue, Oct 20, 2009 at 5:31 PM, Grant Ingersoll wrote: We could, but that has it's own downsides... like creating lucene indexes in various places in source directories like con...
|
|
|
Author: Yonik Seeley,
2009-10-20, 21:36
|
|
|
Re: XML Schema for schema.xml - Solr - [mail # user]
|
|
... of it looks to Solr's schema! So since it seems like your stuff has it's own schema too, do you see any features needed for Solr's schema? -Yonik =======From Gran's Presentation======= Declare...
|
|
|
Author: Yonik Seeley,
2006-03-03, 18:07
|
|
|
Re: XML Schema for schema.xml - Solr - [mail # user]
|
|
...On 3/3/06, Grant Ingersoll wrote: The schema should already parse and accept the following attributes on either a fieldtype or field definition: "termVectors", "termPositions", "term...
|
|
...Offsets" (these names are in FieldProperties). SchemaField represents the definitions in the schema. FieldType represents the definitions in the schema. DocumentBuilder is used to build Lucene...
|
[+ show more]
[- hide]
| ... Documents, using SchemaField.createField() to create the Field, which delegates to FieldType.createField(). FieldType: public Field createField(SchemaField field, String externalVal, float boost... |
| ....setOmitNorms(field.omitNorms()); f.setBoost(boost); return f; } SchemaField already has public boolean storeTermVector() { return (properties & STORE_TERMVECTORS)!=0; } public boolean storeTermPositions() { return... |
|
|
Author: Yonik Seeley,
2006-03-04, 15:15
|
|
|
|