Index data
With Managed Fusion, your data is indexed in a set of collections in Managed Fusion’s Solr core.
A primary collection holds your searchable content, such as your product catalog, knowledge base, blog articles, product reviews, and so on.
A set of secondary collections are associated with your primary collection to hold related data that Managed Fusion can use to enhance the relevancy of your search results.
This topic shows you how different types of data flow through Managed Fusion to be indexed in your primary and secondary collections.
1. Index your content
No matter where your content is located, Managed Fusion can index it. The Managed Fusion collection where your searchable content is indexed is called the primary collection. Secondary collections are automatically created to hold related data, such as signals, machine learning job output, and so on.
There are a few ways to index your searchable content to the primary collection:
-
Lucidworks has a wide variety of connectors for many types of data sources.
Once the connector fetches your data, parsers read it before passing it to the index pipeline.
-
The Parallel Bulk Loader (PBL)
The PBL can send your data to an index pipeline or directly to the primary collection, depending on whether the data requires transformation before indexing.
-
Send your content to an index profile using the Managed Fusion REST API.
The index pipeline consists of one or more configurable index pipeline stages, each performing a different type of transformation on the incoming data. Each connector has a default index pipeline, but you can modify these or create new ones.
The last stage in any index pipeline should be the Solr Indexer stage, which submits the documents to Solr for indexing.
2. Index your signals
Signals are event records that provide historical data about user behavior, such as clicks, likes, purchases, and so on. You don’t need to index signals about query responses; Managed Fusion indexes response signals automatically by default. If you are using App Studio or App Insights, then you need to index request signals. Learn more about signal types and required fields.
To index your signals, you send them to Managed Fusion using the Signals API, which points to the hidden index pipeline designed especially for signals.
Raw signals are indexed in a secondary collection called COLLECTION_NAME_signals
. For example, if your primary collection is called Products
, then the raw signals collection is Products_signals
.
3. Managed Fusion jobs that index signals-related data
When you enable signals, Managed Fusion creates jobs and secondary collections for analyzing and aggregating your raw signals. Some of this data enables query rewriting and automatic boosting, while other data becomes useful when you enable recommendations.
-
The
_session_rollup
job creates session signals from your raw signals and adds them to the_signals
collection. -
Automatic query rewrites are created by several jobs and indexed in the
_query_rewrite_staging
collection for review before they are published to the_query_rewrite
collection. -
The
_head_tail
job sends rewrites for underperforming queries to the the_query_rewrite_staging
collection. It also sends analytics tables to the_job_reports
collection. -
The
_signals_aggr
collection stores unique combinations of query, document ID, and filters found in your raw signals, each with a timestamp, weight, and count. These are generated by the_click_signals_aggregation
job and the_user_query_history_agg
job. -
The
user_item_prefs_agg
job identifies unique pairs of document IDs and user IDs, assigns a timestamp, weight, and count to each pair, and indexes it in the_recs_aggr
collection.
4. Managed Fusion jobs that index recommendations
When you enable recommendations, another set of jobs and secondary collections is created.
The default recommendation jobs read data from different collections depending on the type of recommendations being generated:
-
Content-based recommendations are produced by the
_content_recs
job by analyzing your primary collection. -
Queries-for-query recommendations are produced by the
_query_recs
job by analyzing your raw signals. -
BPR-based items-for-item and items-for-user recommendations are produced by the
_bpr_item_recs
job by analyzing aggregated signals.
For more recommendations, try configuring the Trending Recommender job. |
What’s next?
See Query data to learn about querying your content and recommendations.
Lucidworks offers free training to help you get started with Fusion. Check out the Indexing Menu Tour quick learning, which focuses on the Indexing Menu features and functionality along with a brief description of each screen available in the menu: Visit the LucidAcademy to see the full training catalog. |
Lucidworks offers free training to help you get started with Fusion. Check out the Anatomy of Indexing quick learning, which focuses on the Fusion objects that work together to index your data: Visit the LucidAcademy to see the full training catalog. |
Lucidworks offers free training to help you get started with Fusion. Check out the Ingesting Data course, which focuses on understanding connectors and how to configure datasources, parsers, and index pipelines: Visit the LucidAcademy to see the full training catalog. |