exing analysis chain of target field). You can remove
> inputField from document.
>
> HTH,
> Emir
> --
> Monitoring - Log Management - Alerting - Anomaly Detection
> Solr & Elasticsearch Consulting Support Training - http://sematext.com/
>
>
>
> > On 22 Nov 20
TokenStream is stateless, it holds the attributes for the
> current token only.
> Anyway, it resetted before it's returned for later reuse - it can't carry a
> state.
>
> On Wed, Nov 22, 2017 at 1:43 PM, Roxana Danger
> wrote:
>
> > Hi Emir,
> > Many tha
mp; Elasticsearch Consulting Support Training - http://sematext.com/
>
>
>
> > On 22 Nov 2017, at 11:43, Roxana Danger wrote:
> >
> > Hi Emir,
> > Many thanks for your reply.
> > The UpdateProcessor can do this work, but is analyzer.reusableTokenStream
>
Emir
> --
> Monitoring - Log Management - Alerting - Anomaly Detection
> Solr & Elasticsearch Consulting Support Training - http://sematext.com/
>
>
>
> > On 22 Nov 2017, at 11:09, Roxana Danger wrote:
> >
> > Hello all,
> >
> > I would like to reu
Hello all,
I would like to reuse the tokenstream generated for one field, to create a
new tokenstream (adding a few filters to the available tokenstream), for
another field without the need of executing again the whole analysis.
The particular application is:
- I have field *tokens* that uses an
Hello all,
I would like to reuse the tokenstream generated in one field, to create a
new tokenstream for another field without executing again the whole
analysis.
The particulate application is:
- I have field *tokens* with an analyzer that generate the tokens (and
maintains the token type attrib
should be able to use UninvertingReader.wrap()
> to do something similar.
>
> Alan Woodward
> www.flax.co.uk
>
>
> > On 22 Dec 2016, at 17:58, Roxana Danger
> wrote:
> >
> > Hi Alan,
> > thank you very much, but I am not sure if this is the reason.
> &
Hi,
>
> FieldValueQuery reports matches using docvalues, and it looks like they’re
> not enabled on that field.
>
> Alan Woodward
> www.flax.co.uk
>
>
> > On 22 Dec 2016, at 16:21, Roxana Danger
> wrote:
> >
> > Hi all,
> >
> > I have creat
Hi all,
I have created an index using solr. I am trying to execute the following
code, but I get zero results in the count.
DirectoryReader dr = DirectoryReader.open(FSDirectory.open(new
File(indexDir).toPath()));
IndexSearcher searcher = new IndexSearcher( dr );
System.out.println(dr.maxDoc());
hat type
> * Not using that field in a document
> * Assuming the tokenizer/filter will be instantiated directly rather than
> through the factory interfaces.
>
> Hope that helps!
>
> k/r,
> Scott
>
>
> On Tue, Feb 2, 2016 at 3:04 AM, Roxana Danger <
> roxana.d
Hello,
I would like to use some code embedded on an analyser. The problem is that
I need to pass some parameters for initializing it. My though was to create
a plugin and initialize the parameters with the init( Map
args ) or init( NamedList args ) methods as explained in
http://wiki.apache.org/sol
, Upayavira wrote:
>
>
> On Mon, Oct 26, 2015, at 02:58 PM, Roxana Danger wrote:
> > Hello everyone,
> > Is there a way to update all the documents in the solr index using a
> > custom
> > update processor?
>
>
> You want to re-index all document
Hello everyone,
Is there a way to update all the documents in the solr index using a custom
update processor?
Thank you,
Roxana
?
On 23 October 2015 at 07:49, Roxana Danger
wrote:
> Hi Alexandre,
>
> No, this is what is missing... I assume I can select the docs with a query
> (e.g. *:*, in the content.stream?), but I haven't found which parameter is
> the right one to use...
>
> Thanks,
> Roxana
&
e second call which documents to update. Are you doing
> that?
>
> There may also be a wrinkle in the URP order, but let's get the first step
> working first.
> On 22 Oct 2015 12:59 pm, "Roxana Danger"
> wrote:
>
> > yes, it's working now... but I c
first email of the thread, I indicated I had tried 4.4 and
> 4.5-SNAPSHOT.
>
> Thanks,
> Shawn
>
>
--
Roxana Danger | Data Scientist Dragon Court, 27-29 Macklin Street, London,
WC2B 5LX Tel: 020 7067 4568 [image: reed.co.uk] <http://www.reed.co.uk/> The
UK's #1 j
> DIHWriter sw = getSolrWriter(processor, loader, requestParams, req);
>
>
>
>
>
>
> > On Oct 22, 2015, at 12:19 PM, Shawn Heisey wrote:
> >
> > On 10/22/2015 10:09 AM, Roxana Danger wrote:
> >> The DIH is executed correctly and the tokenized representat
Alex.
>
> Solr Analyzers, Tokenizers, Filters, URPs and even a newsletter:
> http://www.solr-start.com/
>
>
> On 22 October 2015 at 10:49, Roxana Danger
> wrote:
> > Hi Alex,
> >
> > My idea behind this is avoid two calls: first, the importer and after
the
> terms I
> > am using the SolrIndexSearcher provided during the request
> > (req.getSearcher()). However, it seems that this searcher uses only the
> > data physically stored and does not consider any of the imported data.
> >
> > Any idea on how can I access
;
> Solr Analyzers, Tokenizers, Filters, URPs and even a newsletter:
> http://www.solr-start.com/
>
>
> On 22 October 2015 at 06:20, Roxana Danger
> wrote:
> > Hello,
> >
> > I would like to create an updateRequestProcessorChain that should to be
2015 at 13:08, Mikhail Khludnev
wrote:
> Hello Roxana,
>
> I feel it's almost impossible. I can only suggest to commit to make new
> terms visible.
> There is SolrCore.getRealtimeSearcher() but I never understand what it
> does.
>
> On Thu, Oct 22, 2015 at 1:2
Hello,
I would like to create an updateRequestProcessorChain that should to be
executed after a DB DIH. I am extending UpdateRequestProcessorFactory and
the UpdateRequestProcessor classes. The method processAdd of my
UpdateRequestProcessor should be able to update the documents with the
indexed t
ter:
> http://www.solr-start.com/
>
>
> On 30 September 2015 at 10:53, Roxana Danger
> wrote:
> > Do you mean creating 2 instances and then generating a third one (or
> > updating one of them) for merging their data?
> > Is it not guaranteed that the entities in the
>
> Solr Analyzers, Tokenizers, Filters, URPs and even a newsletter:
> http://www.solr-start.com/
>
>
> On 28 September 2015 at 11:23, Roxana Danger
> wrote:
> > Hello,
> > I am importing in solr 2 entities coming from 2 different tables,
> and
> >
Hello,
I am importing in solr 2 entities coming from 2 different tables, and
I have defined an update request processor chain with two custom processor
factories:
- the first processor factory needs to be executed first for one type
of entities and then for the other (I differentiate the
Hello,
I have an analyzer whose output can be used to fill different fields.
I could use copyfield and use the analyzer multiple times to fill each
field; or save the output to a "temporal" field and use multiple very
simple analyzers, one per field, that just split the output in the temporal
ses/reads maxTokenLength
> parameter for initialisation.
>
> Ahmet
>
>
>
>
> On Thursday, September 3, 2015 4:51 PM, Roxana Danger <
> roxana.dan...@reedonline.co.uk> wrote:
>
>
>
> Hello,
> I constructed a custom analyser that needs to get some
Hello,
I constructed a custom analyser that needs to get some data from a
file. Is there any attribute in the analyzer element of the schema.xml that
I can use to initialize the parametersf my analyzer?
Thank you very much in advance,
Roxana
--
approach? Will the background processing be re-indexing the documents?
Thank you very much in advance,
Roxana
--
Roxana Danger | Data Scientist Dragon Court, 27-29 Macklin Street, London,
WC2B 5LX Tel: 020 7067 4568 [image: reed.co.uk] <http://www.reed.co.uk/> The
UK's
29 matches
Mail list logo