Questions tagged [delta-index]
19 questions
6
votes
2 answers
How can I temporarily disable delta indexing with Thinking Sphinx?
I am running a big migration and would like to disable delta indexing so it runs much faster.
Is there a way to specify in the beginning of the task to turn delta indexing off?

Yoni Baciu
- 2,667
- 1
- 22
- 28
3
votes
1 answer
Thinking Sphinx Delta Index not working
I have added the delta column to my table:
class AddDeltaIndexToCimgs < ActiveRecord::Migration
def change
add_column :cimgs, :delta, :boolean, default: true, null: false
end
end
I migrated
I also added the define_index:
define_index do
…

Zequez
- 3,399
- 2
- 31
- 42
2
votes
1 answer
Delta indexes not working on servers when using Thinking Sphinx
I'm using delta indexing for my Thinking Sphinx indexes in my Rails project. In my machine (Mac OS X) it's working fine. I change a record and it immediately finds it. On the servers (Debian) it doesn't.
I did run a sql query for delta = true and…

Pablo Fernandez
- 279,434
- 135
- 377
- 622
1
vote
1 answer
sphinx delta search indexing and merge in cron job
I had implemented delta indexing in cron job and which is
*/2 * * * * /usr/bin/indexer --config /etc/sphinx/sphinx.conf indexer sph_idx_posts_delta --rotate > /var/log/cronlog4.log 2>&1
*/3 * * * * /usr/bin/indexer --config /etc/sphinx/sphinx.conf…

HKumar
- 1,535
- 3
- 13
- 28
1
vote
1 answer
Any way to perform Delta-import in XPathEntityProcessor?
As per SOLR documentation:
The only EntityProcessor which supports delta-import is SqlEntityProcessor!
The XPathEntityProcessor has not implemented it yet. So, unfortunately, there is no delta support for XML at this time
Any one has tried…

Jayesh Bhoyar
- 727
- 5
- 16
1
vote
0 answers
Thinking sphinx ts-delayed-delta Riddle error
I have a curious error when a try to run rake task with RAILS_ENV=preproduction/production environments... uninitialized constant ThinkingSphinx::Configuration::Riddle
On development everything works fine... if a remove ts-delayed-delta gem…

daviceitor
- 66
- 4
1
vote
1 answer
Solr delta-import across multiple databases
I have created a Solr Index whose documents are formed from Two databases db1 and db2.
I can successfully do a full-import as follows:

Mavellin
- 665
- 7
- 17
1
vote
1 answer
Delta indexing the elastic search index on change of model's association record value change using Tire and Elastic Search
I am a newbie to elastic Search and Tire in Ruby on Rails. Watched the railscasts from ryan bates and helped me to get going. Tire is a great gem and has functionality to delta indexing. Assuming i have a mapping like the following, will Tire…

Baaju
- 1,992
- 2
- 18
- 22
1
vote
0 answers
At the time of updating sphinx indexes the load average increase
We have installed and configured the sphinx search in our site for some time now. It was
running very well. But recently we noticed that while updating the main and delta indexes
through ssh in the sphinx server the servers load average increases…

Anirban
- 41
- 5
0
votes
2 answers
Solr : file entity processor and delta import
I'm using solr 3.3 and i want to use delta import with file entity processor and tika entity processor. Full import works fine but the delta import parameter doesn't import the new documents.
Thanks

bobosh
- 425
- 5
- 21
0
votes
1 answer
Partition data while writing to delta sink
In Azure mapping dataflow we now have option to save files in delta format. But that is only available when we select inline dataset (without data bricks subscription). And when the sink dataset is inline dataset, it does not allow to set partition…
0
votes
3 answers
return the first element with a difference from two lists of lists and stop to compare
I work on a project on python and I need to return the first delta (difference) beetween two lists of lists. And each position in the inside list refer to a name.
I succed to return the first delta for each parameter but I would like to stop at the…

Alex
- 3
- 3
0
votes
0 answers
Solr capacity to handle delta import frequency
I wanted to arrange a system where a new item gets indexed in Solr as soon as it is created in db system, to avoid a few minutes delay of the time based delta polling. So I tweaked the delta import a little and made it work based on a query…

Arjun_TECH
- 343
- 1
- 4
- 16
0
votes
1 answer
Frequency of Full reindex on SolrCloud
How often do I need to run full reindex on SolrCloud?
It takes more than 12 hours for full reindex to run and we run it every night but is it really necessary to do it as delta runs correctly.
New data comes in at the rate of 2000 documents on every…

raj247
- 381
- 1
- 4
- 21
0
votes
2 answers
sphinxsearch Delta index updates
I have a problem with Delta-index updates.
If the document id is less than the max_doc_id, is not included in the delta-index, so as long as main-index is not updated, the changes will not apply this data.
Suppose, we have 1000 data.
If fiftieth…

navid
- 823
- 2
- 11
- 29