Collection Features APIManaged Fusion Admin APIs
The Collection Features API lets you observe the status of features across collections. To manipulate features for a specific collection, use the Collections API.
For more information, view the API specification.
Features
There are four available features:
Property | Description |
---|---|
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 incoming data in the corresponding Solr collection by time without manual maintenance. Once a collection is configured for time-base partitioning, Fusion automatically ages out old partitions and creates new ones, using the configured partition sizes, expiration intervals, and so on. |
recommendations |
Get configuration information about recommendations. Parameters (
|
Examples
List the status of all features:
REQUEST
curl -u USERNAME:PASSWORD https://EXAMPLE_COMPANY.b.lucidworks.cloud/api/features/status
RESPONSE
[ {
"name" : "searchLogs",
"collectionId" : "demo",
"params" : { },
"enabled" : false
}, {
"name" : "signals",
"collectionId" : "demo",
"params" : { },
"enabled" : false
} ]