Speeding up with SSD cache - Intel Rapid Storage or...?

1,212

I have switched to RAID and could finally fire up "Smart response" mode. I still can use the rest of SSD as an additional disk. It solved the problem.

Share:
1,212

Related videos on Youtube

Miantian
Author by

Miantian

Updated on September 18, 2022

Comments

  • Miantian
    Miantian almost 2 years

    Downloaded this iam policy file and save it in the root path besides main.tf in Terraform:

    https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.2.1/docs/install/iam_policy.json

    Made this creation want to call the policy file

    resource "aws_iam_policy" "worker_policy" {
      name   = "worker-policy"
      policy = file("iam-policy.json")
    }
    

    The tflint got this error:

    15:36:27 server.go:418: rpc: gob error encoding body: gob: type not registered for interface: tfdiags.diagnosticsAsError
    Failed to check ruleset. An error occurred:
    
    Error: Failed to check `aws_iam_policy_invalid_policy` rule: reading body EOF
    

    I also tried this way, the same result:

    policy = jsondecode(file("iam-policy.json"))
    
    • Brian
      Brian over 10 years
      Intel SRT - Smart Response Technology is what your looking for. It only works in RAID mode and with the SRT drivers installed. Allows up to 64GB of an SSD to be used to cache the HD, the remaining space can be used for other partitions.
    • atoth
      atoth over 10 years
      Thanks @Brian, I'll switching AHCI to RAID. In the BIOS I see two SATA controllers: one is SATA other is GSATA3 (or GSATAIII?). I will switch both.
    • Brian
      Brian over 10 years
      Some MB use another SATA controller(s) for ESATA ports or additional SATA3 ports to supplement those provided by the Intel chipset. The MB manual should have drawings or pictures showing which are which.
    • David Ferenczy Rogožan
      David Ferenczy Rogožan about 10 years
      You can try to run Intel Driver Update Utility (Java application), which tries to detect your HW and currently installed drivers and offers you newer/missing drivers for download. You definitely need at least Intel's RAID driver and maybe Intel Rapid Storage Technology application (if it's not included in driver). See Intel Download Center.
    • David Ferenczy Rogožan
      David Ferenczy Rogožan about 10 years
      You can also consider to use Intel Rapid Start, which moves Windows' hibernation file to SSD so it significantly improves waking up from hibernation.
    • David Ferenczy Rogožan
      David Ferenczy Rogožan about 10 years
      BTW both technologies are implemented in software, not hardware (but requires hardware support). Therefore you need that applications to make it work. I'm afraid that there exists Windows versions only. But it's worth to use it unless you have OS installed on SSD directly. It really significantly improves system performance.
  • Miantian
    Miantian almost 3 years
    I add policy = file("${path.module}/iam-policy.json"), it works.