Home > Integrated Products > VxRail > Guides > Design Guide—Dell Validated Design for SAP HANA Deployments with Dell VxRail Infrastructure > Optimizing file IOPS after the SAP HANA installation
It is possible to configure the SAP HANA file I/O layer with certain parameters to optimize file IOPS for a specific storage solution and file system. The Linux XFS file system is used on all storage volumes for the SAP HANA persistence.
As <sid>adm, run the SAP HANA hdbparam command in the Linux shell:
su - <sid>adm
hdbparam –p # lists current parameter setting
hdbparam –-paramset fileio.max_parallel_io_requests[Data]=128
hdbparam –-paramset fileio.max_parallel_io_requests[Log]=128
Use either hdbsql or the SQL function in SAP HANA Studio or Cockpit and run the following SQL commands:
ALTER SYSTEM ALTER CONFIGURATION ('global.ini', 'SYSTEM') SET ('fileio', 'max_parallel_io_requests[Data]') = '128' WITH RECONFIGURE;
ALTER SYSTEM ALTER CONFIGURATION ('global.ini', 'SYSTEM') SET ('fileio', 'max_parallel_io_requests[Log]') = '128' WITH RECONFIGURE;
For more information, see SAP Note 2399079: Elimination of hdbparam in HANA 2 (access requires SAP login credentials).