Monitor a Standalone Data Lake in SAP HANA Cloud
- How to use the monitoring views to monitor the health of your data lake instances
- How monitoring views help to troubleshoot performance issues
Prerequisites
- You have completed the provisioning of a standalone data lake in SAP HANA Cloud using a free tier, trial, or production account.
- Ensure your data lake instance is running before you start.
- Step 1
In SAP HANA Cloud Central, you can see all data lake instances you’ve provisioned, as well as their respective status. This is your most basic monitoring tool, since you can see some basic information about each instance, as well as their storage size and compute capabilities here. This is also where you can scale your data lake instances from SAP HANA Cloud Central.

If you need more detailed information about your data lake, you can use monitoring views. Monitoring views are predefined queries and stored procedures that consolidate system health and performance metrics into a standard SQL interface. These views can be used to monitor system health before problems develop, and to identify the root causes if performance problems occur.
Monitoring views can be used to view performance metrics in areas like CPU utilization, memory cache use usage, memory usage per connection, status of locks in the database, status of currently executing statements, and server thread usage.
Learn more about monitoring views in our technical documentation.
By default, the HDLADMIN user has the MONITOR system privilege. You can grant the MONITOR system privilege (without administrative rights) to other users by running the statement:
SQLCopyGRANT MONITOR TO <grantee [,...]> WITH NO ADMIN OPTIONThis will allow the specified user to access monitoring views.
Let’s see in detail the procedures to access different monitoring views.
- Step 2
Using SAP HANA database explorer connected to your data lake, you can display a menu with a list of all available data lake Relational Engine monitoring views. This can be done by running the command in the SQL Console:
SQLCopySELECT * FROM IQMONVIEWS
Among this list procedures,
iqmonSystemOverviewcan help you see different metrics and get an overview of the system. The metrics includeActiveConnectionsandUserCPUTime. Additionally, you can monitor the changes in the metrics over time. This procedure can be run by using the command:SQLCopySELECT * FROM iqmonSystemOverview
The data lake offers tools for collecting and analyzing statistics about a defined workload. You can quickly determine which database objects are being referenced by queries and should be kept. Unused tables, columns, or indexes can be dropped to reduce usage of space, improve DML performance, and decrease backup time.
- Step 3
Space consumption can be monitored and assessed to determine the ideal storage size for your instance. The
TotalSizemetric can be used to view the allocation of storage space for every individual space. Run the following command in the SQL Console in SAP HANA Cloud Central to display information on each space within your instance:SQLCopySELECT DBSpaceName, DBSpaceType, Writable, Online, Usage, TotalSize, Reserve, NumFiles, NumRWFiles FROM dbo.sp_iqdbspace() ORDER BY DBSpaceName;
Run the following command to view the temporary space in use:
SQLCopySELECT * FROM sp_iqwho()
- Step 4
If you see an issue of insufficient memory during your monitoring of the system, you can increase the available memory. The memory is allocated as a fixed ratio to
vCPUs, which is set up when instances are created. By increasing thevCPUsize, you can increase the available memory. To do so, go to the SAP HANA Cloud Central and edit the existing instance.Similarly, you can go to the SAP HANA Cloud Central when the remaining storage space is no longer enough. Edit the existing instance to increase the storage capacity. However, keep in mind that the storage capacity of the system can only be increased; it cannot be decreased.

- Step 5
The monitoring views and
sp_iqsysmonare intended for very different reporting timescales. Thesp_iqsysmonis a system stored procedure that allows you to define the time interval for monitoring using Start and Stop parameters. The data lake Relational Engine continuously monitors performance and displays the latest performance data on the monitoring views. Rather than monitoring over a defined period, monitoring views start gathering performance metrics at server startup and reports the current state of the system.For example, you can monitor your system at a 30-second time interval for two hours using
sp_iqsysmon. On the other hand, monitoring views provide a current snapshot of system heath and performance metrics.It is beneficial to monitor changes in performance over time and you can do this regularly by checking the monitoring views at regular intervals. Any metrics moving out of their normal ranges should be evaluated.
For example, you may notice CPU usage trending upward, or cache sizes increasing abnormally. Continuous monitoring lets you proactively address such issues before errors occur. Escalation of issues such as these can be prevented through continuous monitoring.
Monitoring views contain over a hundred reporting metrics, which means you can use them to answer a vast number of system health and performance questions. Some common diagnostic use-case scenarios can be found on our technical documentation.
Use these examples as a starting point for your own diagnostic use cases.
In this tutorial, you have learned about monitoring your data lake. There are a wide variety of options to view historical and current data. You are now equipped with the procedures to monitor and diagnose basic problems you may encounter within your system. Complete the next tutorial to learn how to back up and recover the data in your standalone data lake.
- Step 6
Fill in the blank:
The ___________ system view provides you with a list of all available data lake, Relational Engine monitoring views.