Vadim Ivanov wrote
> Hello, Raj
> 
> I've just checked my Schema page for external file field
> 
> Solr version 8.3.1 gives only such parameters for externalFileField:
> 
> 
> Field: fff
> 
> Field-Type:
> 
> org.apache.solr.schema.ExternalFileField
> 
> 
> Flags:
> 
> UnInvertible
> 
> Omit Term Frequencies & Positions
> 
> 
> Properties
> 
> √
> 
> √
> 
> 
> Are u sure you don’t have (or had)  fieldA  in main collection schema ?
> 
>  
> 
> externalFileField is not part of the index. It resides in separate file in
> Solr index directory and goes into memory every commit.

Hi Vadim Ivanov,

Earlier the fieldType and field I shared with were from solr_5.4.

I have cross the same thing in solr_8.5.2. I have created the following two
fieldTypes and field.
 
<fieldType name="ext_file_fieldA" indexed="false" stored="true"
keyField="id" defVal="0" class="solr.ExternalFileField"/>

<fieldType name="ext_file_fieldB"  keyField="id" defVal="0"
class="solr.ExternalFileField"/>

<field name="fieldA" type="ext_file_fieldA" />
<field name="fieldB" type="ext_file_fieldB" />


In fieldType `ext_file_fieldA` since I have explicitly mentioned about
indexed and stored parameter. I'm getting the expected result in solr SCHEMA
page. (PFA image file: fieldA_schema)

In fieldType `ext_file_fieldB` not mentioned anything about indexed and
stored parameters. I was expecting that the indexed parameter will be false
by default. But in solr SCHEMA page indexed flag is marked green √ (PFA
image file: fieldB_schema)


Please find attached files.

Regards,
Raj <https://lucene.472066.n3.nabble.com/file/t495721/fieldA_schema.png> 
<https://lucene.472066.n3.nabble.com/file/t495721/fieldB_schema.png> 



--
Sent from: https://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Reply via email to