I have a large (200Gb) MySQL table which is constantly grows with new rows. Is it possible to create an RT index in Manticore and fill it with existing data from this table? Or is it possible to alter existing RT index with new charset_table and be available to search through all the table data, now only added after altering the index?
How to use new RT index with existing large MySQL table with Sphinx / Manticore?
912 Views Asked by Le chat du rabbin At
1
There are 1 best solutions below
Related Questions in SPHINX
- How to use Manticore Regex using sphinxapi
- Sphinx search: wordforms result
- Sphinx query index: exclude rows containig particular value
- Why does sphinx 3.4.1 return zeros when creating a query via SetSelect()
- Sphinx 2.2.11 - Infix search not working consistently for some terms
- Does sphinx consider pdf file producer during searching?
- How can I prioritize search results containing a specific term in Sphinxsearch?
- Django MySql backend errors when getting features from Sphinxsearch
- Sphinx Results Take Huge Time To Show (Slow Index)
- spinxsql combine match and filter
- Sphinx search SQl to get exact word
- No enabled local indexes to search
- Facet a Mutli-value(MVA) type field in sphinx
- Monit / init.d for Elixir/Phoenix and Spinx/searchd on Ubuntu
- Order manticore/sphinx results by full text field alphabetically
Related Questions in MANTICORE-SEARCH
- Sphinx / Manticore - base one plain index off another?
- How to use Manticore Regex using sphinxapi
- SphinxQL match equivalent of MySQL LIKE %searchterm%
- spinxsql combine match and filter
- Geodist with where or match
- Apache Nutch Indexer Plugin to Manticore Search Exception: java.lang.NoClassDefFoundError: com/manticoresearch/client/ApiException
- Manticore - FACET by JSON, using the key of the JSON array
- ERROR 1064 (42000): no such local index in manticore
- How to perform a wildcard query in Manticore Search?
- Manticore PHP PDO | Communication link failure: 1047 unknown command (code=22)
- How to search terms containing slash ("/") with Sphinx / Manticore?
- How to use new RT index with existing large MySQL table with Sphinx / Manticore?
- Manticore search fails indexing empty set on csvpipe/tsvpipe
- Sphinx Search with non-ASCII characters
- Is json api for search only available for RT indices?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I've found the solution! Attaching a plain index to an RT index.
At first, create a plain index with source, then attach it to RT index and populate the RT index with new incoming data. In my case it took near 2 hours for plain indexing and less than one second for attaching.