All Products
Search
Document Center

Database Autonomy Service:Latency insight

Last Updated:Mar 06, 2024

The latency insight feature helps you troubleshoot the failures and performance issues of your Redis databases. This feature collects statistics on the latency of all commands and custom special events. The latency statistics are accurate to the microsecond. This way, you can analyze an instance based on events, time, and latency, and locate and fix issues in an efficient manner.

Prerequisites

The ApsaraDB for Redis instance uses one of the following minor versions. For information about how to update a minor version, see Update the minor version.

  • Minor version 1.6.9 or later if the instance is an Enhanced Edition (Tair) DRAM-based instance. If you want to collect statistics about Tair module commands, update the minor version to 1.7.28 or later.

  • Minor version 5.1.4 or later if the instance is a Community Edition instance that uses the 5.0 major version.

  • Minor version 0.1.15 or later if the instance is a Community Edition instance that uses the 6.0 major version.

  • Minor version 7.0.0.6 or later if the instance is a Community Edition instance that uses the 7.0 major version.

Overview

Redis 2.8.13 introduced a new feature called latency monitoring to help you identify and troubleshoot possible latency issues based on events. The latency monitoring feature allows you to collect data generated only within the last 160 seconds and access only events that have the highest latency within each second.

ApsaraDB for Redis provides the advanced latency insight feature. This feature can record up to 27 events and execution durations of all commands, and save all latency statistics within the last three days. For more information about the events, see the Common special events section of this topic. The latency insight feature provides the following benefits:

  • Persistence: supports data persistence and latency spike tracing.

  • High precision: provides monitoring information that is accurate to the microsecond for all events.

  • High performance: uses an asynchronous implementation with minimal impact on performance.

  • Real-time operations: supports real-time data queries and aggregation operations.

  • Multidimensional statistics: provides comprehensive latency data that allows you to analyze an instance based on events, time, and latency.

Billing

This feature is available free of charge.

Procedure

  1. Log on to the DAS console.

  2. In the left-side navigation pane, click Instance Monitoring.

  3. On the page that appears, find the database instance that you want to manage and click the instance ID. The instance details page appears.

  4. In the left-side navigation pane, choose Request Analysis > Latency Insight.

  5. On the Latency Insight page, view the latency statistics of the corresponding node within a specific time range.

    For a cluster or read/write splitting instance, you can view the statistics of Data Node and Proxy Node.

    Note

    Only data of the last three days can be queried, and the time range must span within one hour.

    You can click a number corresponding to an event in the table. Then, a chart appears and shows the trend of the event-matched metric. You can also specify the metrics that you want to view on the chart by selecting the metric names from the drop-down list above the chart.

    Note

    Only commands or events that take longer than the specified amount of time to run or execute are recorded and displayed. For information about how to troubleshoot issues associated with instance latency, see Suggestions for handling common latency events.

    pqus

    Metric

    Description

    Events

    The name of the event.

    Total

    The total number of occurrences of the event.

    Ave. Latency (μs)

    The average latency of the event. Unit: μs.

    Max. Latency (μs)

    The maximum latency of the event. Unit: μs.

    Aggregation of Instances (Latency < 1 ms)

    The number of occurrences of the event whose latency is lower than 1 ms. You can click thezhankai icon to view finer-grained statistics, such as the number of occurrences of the event whose latency is lower than 1 μs, 2 μs, 4 μs, 8 μs, 16 μs, 32 μs, 64 μs, 128 μs, 256 μs, and 512 μs.

    Note

    Counting method: The number of occurrences of the event whose latency is from 0 μs to 1 μs is counted and displayed within the <1μs category, and the number of occurrences of the event whose latency is from 1 μs to 2 μs is counted and displayed within the <2μs category. Other categories follow the same pattern.

    <2ms

    <4ms

    ...

    >33s

    The number of occurrences of the event whose latency is within the specified range.

    Note

    Counting method: The number of occurrences of the event whose latency is from 1 ms to 2 ms is counted and displayed within the <2ms category, and the number of occurrences of the event whose latency is longer than 33s is counted and displayed within the >33s category. Other categories follow the same pattern.

Common special events

Category

Event

Threshold

Description

Memory eviction

EvictionDel

30 ms

The amount of time required to delete evicted keys in a specific eviction cycle.

EvictionLazyFree

30 ms

The amount of time that background threads take to release the memory in a specific eviction cycle.

EvictionCycle

30 ms

The amount of time required to perform an eviction. An eviction cycle involves the time required to select and delete data that you want to evict and the time spent on waiting for background threads.

Memory defragmentation

ActiveDefragCycle

100 ms

The amount of time required to defragment memory.

Rehash

Rehash

100 ms

The amount of time required to perform a rehash.

Data structure upgrade

ZipListConvertHash

30 ms

The amount of time required to convert a ziplist to a dictionary by means of hash encoding.

IntsetConvertSet

30 ms

The amount of time required to convert an intset to a set by means of set encoding.

ZipListConvertZset

30 ms

The amount of time required to convert a ziplist to a skiplist by means of ziplist encoding.

Append-only file (AOF)

AofWriteAlone

30 ms

The amount of time required to write an AOF as expected.

AofWrite

30 ms

The amount of time required to write an AOF. Each time an AOF is successfully written, an AofWrite event and one of the following three events are recorded: AofWriteAlone, AofWriteActiveChild, and AofWritePendingFsync.

AofFstat

30 ms

The amount of time required to obtain the information about an AOF.

AofRename

30 ms

The amount of time required to rename an AOF.

AofReWriteDiffWrite

30 ms

The amount of time consumed by an incremental AOF write performed by a parent process after its child process rewrites an AOF.

AofWriteActiveChild

30 ms

The amount of time required to write an AOF to a disk. Other child processes may write data to the disk when the AOF is written.

AofWritePendingFsync

30 ms

The amount of time required to write an AOF. A background process may be performing a fsync operation when the AOF is written.

Redis database (RDB) file

RdbUnlinkTempFile

50 ms

The amount of time required to delete a temporary RDB file after a bgsave child process is terminated.

Others

Commands

30 ms

The amount of time required to run a command that is not tagged with fast.

FastCommand

30 ms

The amount of time required to run a command that is tagged with fast and has the time complexity of O(1) or O(log N). For more information about such commands, see the FastCommands section of this topic.

EventLoop

50 ms

The amount of time required to run a main event loop.

Fork

100 ms

The amount of time required to call a fork operation.

Transaction

50 ms

The actual amount of time consumed by a transaction.

PipeLine

50 ms

The amount of time consumed by a multi-threaded pipeline.

ExpireCycle

30 ms

The amount of time required to clear expired keys at a time.

ExpireDel

30 ms

The amount of time required to delete expired keys in a specific cycle for clearing the keys.

SlotRdbsUnlinkTempFile

30 ms

The amount of time required to delete a temporary RDB file from a slot after a bgsave child process is terminated.

LoadSlotRdb

100 ms

The amount of time required to load an RDB file from a slot.

SlotreplTargetcron

50 ms

The amount of time required to load an RDB file from a slot to a temporary database and then migrate the file to a destination database by using a child process.

FastCommands

Note

The following table describes FastCommands that are commonly used. For information about other commands, visit the Commands page of the Redis official website. All access control list (ACL) commands tagged with @fast are FastCommands.command

ACCOUNT

ADMINAUTH

ASKING

AUTH

BKLIST

BZPOPMAX

BZPOPMIN

DBSIZE

DECR

DECRBY

DISCARD

ECHO

EXISTS

EXPIRE

EXPIREAT

Get

GETBIT

HDEL

HEXISTS

HGET

HINCRBY

HINCRBYFLOAT

HKCOUNTER

HKSWITCH

HLEN

HMGET

HMINCRBY

HMINCRBYFLOAT

HMSET

HSET

HSETNX

HSTRLEN

INCR

INCRBY

INCRBYFLOAT

LASTSAVE

LLEN

LPOP

LPUSH

LPUSHX

MGET

MOVE

MULTI

PERSIST

PEXPIRE

PEXPIREAT

PFADD

PING

PTTL

PUBLISH

READONLY

READWRITE

RENAMENX

RPOP

RPUSH

RPUSHX

SADD

SCARD

SELECT

SETNX

SISMEMBER

SMOVE

SPOP

SREM

STRLEN

SWAPDB

TIME

TOUCH

TTL

TYPE

UNLINK

UNWATCH

WATCH

XACK

XADD

XCLAIM

XDEL

XLEN

XSETID

XTRIM

ZADD

ZCARD

ZCOUNT

ZINCRBY

ZLEXCOUNT

ZPOPMAX

ZPOPMIN

ZRANK

ZREM

ZREVRANK

ZSCORE

ZSCOREAVG