
As discussed in PR #336. We have different types of resources like CPU, memory, network, etc. The `slowlog` can only record commands eat lots of CPU during the processing phase (doesn't include read/write network time), but can not record commands eat too many memory and network. For example: 1. run "SET key value(10 megabytes)" command would not be recored in slowlog, since when processing it the SET command only insert the value's pointer into db dict. But that command eats huge memory in query buffer and bandwidth from network. In this case, just 1000 tps can cause 10GB/s network flow. 2. run "GET key" command and the key's value length is 10 megabytes. The get command can eat huge memory in output buffer and bandwidth to network. This PR introduces a new command `COMMANDLOG`, to log commands that consume significant network bandwidth, including both input and output. Users can retrieve the results using `COMMANDLOG get <count> large-request` and `COMMANDLOG get <count> large-reply`, all subcommands for `COMMANDLOG` are: * `COMMANDLOG HELP` * `COMMANDLOG GET <count> <slow|large-request|large-reply>` * `COMMANDLOG LEN <slow|large-request|large-reply>` * `COMMANDLOG RESET <slow|large-request|large-reply>` And the slowlog is also incorporated into the commandlog. For each of these three types, additional configs have been added for control: * `commandlog-request-larger-than` and `commandlog-large-request-max-len` represent the threshold for large requests(the unit is Bytes) and the maximum number of commands that can be recorded. * `commandlog-reply-larger-than` and `commandlog-large-reply-max-len` represent the threshold for large replies(the unit is Bytes) and the maximum number of commands that can be recorded. * `commandlog-execution-slower-than` and `commandlog-slow-execution-max-len` represent the threshold for slow executions(the unit is microseconds) and the maximum number of commands that can be recorded. * Additionally, `slowlog-log-slower-than` and `slowlog-max-len` are now set as aliases for these two new configs. --------- Signed-off-by: zhaozhao.zz <zhaozhao.zz@alibaba-inc.com> Co-authored-by: Madelyn Olson <madelyneolson@gmail.com> Co-authored-by: Ping Xie <pingxie@outlook.com>
158 lines
5.6 KiB
CMake
158 lines
5.6 KiB
CMake
# -------------------------------------------------
|
|
# Define the sources to be built
|
|
# -------------------------------------------------
|
|
|
|
# valkey-server source files
|
|
set(VALKEY_SERVER_SRCS
|
|
${CMAKE_SOURCE_DIR}/src/threads_mngr.c
|
|
${CMAKE_SOURCE_DIR}/src/adlist.c
|
|
${CMAKE_SOURCE_DIR}/src/quicklist.c
|
|
${CMAKE_SOURCE_DIR}/src/ae.c
|
|
${CMAKE_SOURCE_DIR}/src/anet.c
|
|
${CMAKE_SOURCE_DIR}/src/dict.c
|
|
${CMAKE_SOURCE_DIR}/src/hashtable.c
|
|
${CMAKE_SOURCE_DIR}/src/kvstore.c
|
|
${CMAKE_SOURCE_DIR}/src/sds.c
|
|
${CMAKE_SOURCE_DIR}/src/zmalloc.c
|
|
${CMAKE_SOURCE_DIR}/src/lzf_c.c
|
|
${CMAKE_SOURCE_DIR}/src/lzf_d.c
|
|
${CMAKE_SOURCE_DIR}/src/pqsort.c
|
|
${CMAKE_SOURCE_DIR}/src/zipmap.c
|
|
${CMAKE_SOURCE_DIR}/src/sha1.c
|
|
${CMAKE_SOURCE_DIR}/src/ziplist.c
|
|
${CMAKE_SOURCE_DIR}/src/release.c
|
|
${CMAKE_SOURCE_DIR}/src/memory_prefetch.c
|
|
${CMAKE_SOURCE_DIR}/src/io_threads.c
|
|
${CMAKE_SOURCE_DIR}/src/networking.c
|
|
${CMAKE_SOURCE_DIR}/src/util.c
|
|
${CMAKE_SOURCE_DIR}/src/object.c
|
|
${CMAKE_SOURCE_DIR}/src/db.c
|
|
${CMAKE_SOURCE_DIR}/src/replication.c
|
|
${CMAKE_SOURCE_DIR}/src/rdb.c
|
|
${CMAKE_SOURCE_DIR}/src/t_string.c
|
|
${CMAKE_SOURCE_DIR}/src/t_list.c
|
|
${CMAKE_SOURCE_DIR}/src/t_set.c
|
|
${CMAKE_SOURCE_DIR}/src/t_zset.c
|
|
${CMAKE_SOURCE_DIR}/src/t_hash.c
|
|
${CMAKE_SOURCE_DIR}/src/config.c
|
|
${CMAKE_SOURCE_DIR}/src/aof.c
|
|
${CMAKE_SOURCE_DIR}/src/pubsub.c
|
|
${CMAKE_SOURCE_DIR}/src/multi.c
|
|
${CMAKE_SOURCE_DIR}/src/debug.c
|
|
${CMAKE_SOURCE_DIR}/src/sort.c
|
|
${CMAKE_SOURCE_DIR}/src/intset.c
|
|
${CMAKE_SOURCE_DIR}/src/syncio.c
|
|
${CMAKE_SOURCE_DIR}/src/cluster.c
|
|
${CMAKE_SOURCE_DIR}/src/cluster_legacy.c
|
|
${CMAKE_SOURCE_DIR}/src/cluster_slot_stats.c
|
|
${CMAKE_SOURCE_DIR}/src/crc16.c
|
|
${CMAKE_SOURCE_DIR}/src/endianconv.c
|
|
${CMAKE_SOURCE_DIR}/src/commandlog.c
|
|
${CMAKE_SOURCE_DIR}/src/eval.c
|
|
${CMAKE_SOURCE_DIR}/src/bio.c
|
|
${CMAKE_SOURCE_DIR}/src/rio.c
|
|
${CMAKE_SOURCE_DIR}/src/rand.c
|
|
${CMAKE_SOURCE_DIR}/src/memtest.c
|
|
${CMAKE_SOURCE_DIR}/src/syscheck.c
|
|
${CMAKE_SOURCE_DIR}/src/crcspeed.c
|
|
${CMAKE_SOURCE_DIR}/src/crccombine.c
|
|
${CMAKE_SOURCE_DIR}/src/crc64.c
|
|
${CMAKE_SOURCE_DIR}/src/bitops.c
|
|
${CMAKE_SOURCE_DIR}/src/sentinel.c
|
|
${CMAKE_SOURCE_DIR}/src/notify.c
|
|
${CMAKE_SOURCE_DIR}/src/setproctitle.c
|
|
${CMAKE_SOURCE_DIR}/src/blocked.c
|
|
${CMAKE_SOURCE_DIR}/src/hyperloglog.c
|
|
${CMAKE_SOURCE_DIR}/src/latency.c
|
|
${CMAKE_SOURCE_DIR}/src/sparkline.c
|
|
${CMAKE_SOURCE_DIR}/src/valkey-check-rdb.c
|
|
${CMAKE_SOURCE_DIR}/src/valkey-check-aof.c
|
|
${CMAKE_SOURCE_DIR}/src/geo.c
|
|
${CMAKE_SOURCE_DIR}/src/lazyfree.c
|
|
${CMAKE_SOURCE_DIR}/src/module.c
|
|
${CMAKE_SOURCE_DIR}/src/evict.c
|
|
${CMAKE_SOURCE_DIR}/src/expire.c
|
|
${CMAKE_SOURCE_DIR}/src/geohash.c
|
|
${CMAKE_SOURCE_DIR}/src/geohash_helper.c
|
|
${CMAKE_SOURCE_DIR}/src/childinfo.c
|
|
${CMAKE_SOURCE_DIR}/src/allocator_defrag.c
|
|
${CMAKE_SOURCE_DIR}/src/defrag.c
|
|
${CMAKE_SOURCE_DIR}/src/siphash.c
|
|
${CMAKE_SOURCE_DIR}/src/rax.c
|
|
${CMAKE_SOURCE_DIR}/src/t_stream.c
|
|
${CMAKE_SOURCE_DIR}/src/listpack.c
|
|
${CMAKE_SOURCE_DIR}/src/localtime.c
|
|
${CMAKE_SOURCE_DIR}/src/lolwut.c
|
|
${CMAKE_SOURCE_DIR}/src/lolwut5.c
|
|
${CMAKE_SOURCE_DIR}/src/lolwut6.c
|
|
${CMAKE_SOURCE_DIR}/src/acl.c
|
|
${CMAKE_SOURCE_DIR}/src/tracking.c
|
|
${CMAKE_SOURCE_DIR}/src/socket.c
|
|
${CMAKE_SOURCE_DIR}/src/tls.c
|
|
${CMAKE_SOURCE_DIR}/src/rdma.c
|
|
${CMAKE_SOURCE_DIR}/src/sha256.c
|
|
${CMAKE_SOURCE_DIR}/src/timeout.c
|
|
${CMAKE_SOURCE_DIR}/src/setcpuaffinity.c
|
|
${CMAKE_SOURCE_DIR}/src/monotonic.c
|
|
${CMAKE_SOURCE_DIR}/src/mt19937-64.c
|
|
${CMAKE_SOURCE_DIR}/src/resp_parser.c
|
|
${CMAKE_SOURCE_DIR}/src/call_reply.c
|
|
${CMAKE_SOURCE_DIR}/src/script_lua.c
|
|
${CMAKE_SOURCE_DIR}/src/script.c
|
|
${CMAKE_SOURCE_DIR}/src/functions.c
|
|
${CMAKE_SOURCE_DIR}/src/scripting_engine.c
|
|
${CMAKE_SOURCE_DIR}/src/function_lua.c
|
|
${CMAKE_SOURCE_DIR}/src/commands.c
|
|
${CMAKE_SOURCE_DIR}/src/strl.c
|
|
${CMAKE_SOURCE_DIR}/src/connection.c
|
|
${CMAKE_SOURCE_DIR}/src/unix.c
|
|
${CMAKE_SOURCE_DIR}/src/server.c
|
|
${CMAKE_SOURCE_DIR}/src/logreqres.c)
|
|
|
|
# valkey-cli
|
|
set(VALKEY_CLI_SRCS
|
|
${CMAKE_SOURCE_DIR}/src/anet.c
|
|
${CMAKE_SOURCE_DIR}/src/adlist.c
|
|
${CMAKE_SOURCE_DIR}/src/dict.c
|
|
${CMAKE_SOURCE_DIR}/src/valkey-cli.c
|
|
${CMAKE_SOURCE_DIR}/src/zmalloc.c
|
|
${CMAKE_SOURCE_DIR}/src/release.c
|
|
${CMAKE_SOURCE_DIR}/src/ae.c
|
|
${CMAKE_SOURCE_DIR}/src/serverassert.c
|
|
${CMAKE_SOURCE_DIR}/src/crcspeed.c
|
|
${CMAKE_SOURCE_DIR}/src/crccombine.c
|
|
${CMAKE_SOURCE_DIR}/src/crc64.c
|
|
${CMAKE_SOURCE_DIR}/src/siphash.c
|
|
${CMAKE_SOURCE_DIR}/src/crc16.c
|
|
${CMAKE_SOURCE_DIR}/src/monotonic.c
|
|
${CMAKE_SOURCE_DIR}/src/cli_common.c
|
|
${CMAKE_SOURCE_DIR}/src/mt19937-64.c
|
|
${CMAKE_SOURCE_DIR}/src/strl.c
|
|
${CMAKE_SOURCE_DIR}/src/cli_commands.c)
|
|
|
|
# valkey-benchmark
|
|
set(VALKEY_BENCHMARK_SRCS
|
|
${CMAKE_SOURCE_DIR}/src/ae.c
|
|
${CMAKE_SOURCE_DIR}/src/anet.c
|
|
${CMAKE_SOURCE_DIR}/src/valkey-benchmark.c
|
|
${CMAKE_SOURCE_DIR}/src/adlist.c
|
|
${CMAKE_SOURCE_DIR}/src/dict.c
|
|
${CMAKE_SOURCE_DIR}/src/zmalloc.c
|
|
${CMAKE_SOURCE_DIR}/src/serverassert.c
|
|
${CMAKE_SOURCE_DIR}/src/release.c
|
|
${CMAKE_SOURCE_DIR}/src/crcspeed.c
|
|
${CMAKE_SOURCE_DIR}/src/crccombine.c
|
|
${CMAKE_SOURCE_DIR}/src/crc64.c
|
|
${CMAKE_SOURCE_DIR}/src/siphash.c
|
|
${CMAKE_SOURCE_DIR}/src/crc16.c
|
|
${CMAKE_SOURCE_DIR}/src/monotonic.c
|
|
${CMAKE_SOURCE_DIR}/src/cli_common.c
|
|
${CMAKE_SOURCE_DIR}/src/mt19937-64.c
|
|
${CMAKE_SOURCE_DIR}/src/strl.c)
|
|
|
|
# valkey-rdma module
|
|
set(VALKEY_RDMA_MODULE_SRCS ${CMAKE_SOURCE_DIR}/src/rdma.c)
|
|
|
|
# valkey-tls module
|
|
set(VALKEY_TLS_MODULE_SRCS ${CMAKE_SOURCE_DIR}/src/tls.c)
|