Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
How to create SSD cache using SANtricity web proxy services REST API
2015-11-25
10:39 PM
7,754 Views
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
I want to create a SSD cache using SANtricity web proxy services.
However, I am not sure which REST API I should be using.
I couldn't locate any REST API related to creation of SSD cache.
Could someone please help me out with the same.
Note:
I am using SANtricity web proxy services version 1.2/1.3 where they have mentioned that they have support for SSD cache features.
Thanks,
Pratik
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The ability to create an SSD cache is in version 1.3.
The endpoint is /storage-systems/{system-id}/flash-cache and takes a FlashCacheCreateRequest and returns a FlashCacheEx response.
FlashCacheCreateRequest {
driveRefs (Array[string]): A list of one or more drive refs belonging to SSD drives that will be utilized in the FlashCache ,
name (string, optional): The user label for the FlashCache ,
enableExistingVolumes (boolean, optional): If true, all existing volumes that are mapped will have flash cache enabled
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Also set the cacheType
FlashCacheCreateRequest {
driveRefs (Array[string]): A list of one or more drive refs belonging to SSD drives that will be utilized in the FlashCache ,
name (string, optional): The user label for the FlashCache ,
enableExistingVolumes (boolean, optional): If true, all existing volumes that are mapped will have flash cache enabled,
cacheType(FlashCacheType): The flash cache type
}
Example:
{
"driveRefs": [
"010000005001E8200002D1A80000000000000000"
],
"name": "testCache",
"enableExistingVolumes": false,
"cacheType":"readOnlyCache"
}
