- Features
- Examples
- Collection Features API Endpoint Specs
API Objective: Status of features across collections.
The Collection Features API lets you observe the status of features across collections. To manipulate features for a specific collection, use the Collections API.
Features
There are four available features:
Property | Description |
---|---|
dynamicSchema |
Modify the Solr schema to be "managed", which means it’s possible for Fusion to use Solr’s schema API to manage the schema. It also sets Solr to operate in 'schemaless' mode, which means fields do not need to be pre-defined in the schema for them to be added to Solr’s index. Note that this applies to the Solr included with Fusion, and does not modify an existing Solr cluster, if you have one already. |
signals |
Create a parallel collection for the storage of signals data (such as user clicks, or ratings). Signals will need to be indexed and aggregated in order to be used. See the section on Signals for more information. |
partitionByTime |
Partition the corresponding Solr collection by time; see Time-Based Partitioning. |
recommendations |
Get configuration information about recommendations. Parameters (
|
Examples
List the status of all features:
REQUEST
curl -u user:pass http://fusion-host:{api-port}/api/features/status
RESPONSE
[ {
"name" : "dynamicSchema",
"collectionId" : "demo",
"params" : { },
"enabled" : false
}, {
"name" : "searchLogs",
"collectionId" : "demo",
"params" : { },
"enabled" : false
}, {
"name" : "signals",
"collectionId" : "demo",
"params" : { },
"enabled" : false
} ]