一個命令損失數百萬,這,需要賠償嗎?
程式碼不規範,同事兩行淚,擼碼需謹慎!
處於好奇考慮,我來測試一下,這到底是什麼問題?
寫入1000萬資料。
for((i=1;i<=10000000;i++)); do echo "set k$i 哪吒编程$i" >> /tmp/test1.txt;done;
透過/tmp/test1.txt
查看一下是否寫入成功。
cat /tmp/test1.txt | redis-cli -a 111111 --pipe
在redis.conf檔中設定security:
rename- command keys "" rename- command flushdb "" rename- command flushall ""
Redis Scan 指令用於迭代資料庫中的資料庫鍵。
SCAN 指令是一個基於遊標的迭代器,每次被呼叫之後, 都會向使用者傳回一個新的遊標, 使用者在下次迭代時需要使用這個新遊標作為SCAN 指令的遊標參數, 以此來延續之前的迭代過程。
SCAN 傳回一個包含兩個元素的數組, 第一個元素是用來進行下一個迭代的新遊標, 而第二個元素則是一個數組, 這個數組包含了所有被迭代的元素。如果新遊標傳回 0 表示迭代已結束。
scan語法:
SCAN cursor [MATCH pattern] [COUNT count]
阿里雲Redis開發規範中明確規定「拒絕bigkey(防止網路卡流量、慢查詢)」
。
String類型控制在10KB以內,hash、list、set、zset元素個數不要超過5000。
String類型的用del刪除。
其它型別使用hscan、sscan、zscan方式漸進式刪除,同時要避免bigkey過期時間自動刪除問題,因為它會造成主執行緒阻塞。
Hash 刪除: hscan hdel
public void delBigHash(String host, int port, String password, String bigHashKey) { Jedis jedis = new Jedis(host, port); if (password != null && !"".equals(password)) { jedis.auth(password); } ScanParams scanParams = new ScanParams().count(100); String cursor = "0"; do { ScanResult<Entry<String, String>> scanResult = jedis.hscan(bigHashKey, cursor, scanParams); List<Entry<String, String>> entryList = scanResult.getResult(); if (entryList != null && !entryList.isEmpty()) { for (Entry<String, String> entry : entryList) { jedis.hdel(bigHashKey, entry.getKey()); } } cursor = scanResult.getStringCursor(); } while (!"0".equals(cursor)); //删除 bigkey jedis.del(bigHashKey); }
記憶體不均,叢集遷移困難;
#逾時刪除,阻塞執行緒;
網路流量阻塞;
(1)透過redis-cli --bigkeys
找到。
(2)計算每個鍵值的位元組數,透過memory usage key找出
#以上是Redis bigkeys指令會阻塞問題如何解決的詳細內容。更多資訊請關注PHP中文網其他相關文章!