indexing - thinking sphinx partially rebuilding index? -


After running a script to populate my database, I ran a rake ts: rebuild But the spinks is partially rebuilt indexed

  search daemon closed (Pip: 23309). /home/guest_dp/config/development.sphinx.conf Spinx 2.1.4-ID64-Release (Reliance 21-R 4421) Copyright (c) 2001-2013, Andrew Aczonoff Copyright (c) 2008-2013, Spinks Technologies Inc. ( Http://sphinxsearch.com) using config file '/home/guest_dp/config/development.sphinx.conf' ... indexing index 'episode code' ... collected 4469 docs, 0.0 MB 0.0 mHIT, 100.0% complete Done 4469 docs, 8938 bytes total of 0.071 seconds, 124488 bytes / second, 62244.07 docs / second indexing index 'episode_delata' ... 0 docs, 0.0a MB total 0 docs, 0 bytes total 0.013 seconds, 0 bytes / second, 0.00 docs / sec indexing index 'organization_core' .... . . Except the non-plain index 'episode' ... except the non-plain index 'organization' ... except the non-plain index 'person' ... except the non-plain index 'status' ... non- Except the simple index 'profession ... except the non-plain index' section ... except the non-plain index 'TV_show' ... reads total 12816, 0.005 seconds, 0.2 kb / call average, 0.0 msec / Call averages aggregate 116, 0.020 seconds, 52.3 kb / call average, 0.1 msec / call average successfully search Started (Pip: 23571).  

What does this mean by leaving a non-plain index ? Indexes are distributed to each of these, including _core and

_delta plain index (like episode contains both episode code and episode_delta ). There is nothing to do directly in the index, because the distributed indexes do not contain data, they just point to other indexes.

In other words: What you are seeing is completely normal. All your indices are being processed appropriately.

Sphinx had a slightly different message: Distributed index 'episode' can not be directly indexed; Skipping -.


Comments