0
  • 聊天消息
  • 系統(tǒng)消息
  • 評論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學(xué)習(xí)在線課程
  • 觀看技術(shù)視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會員中心
創(chuàng)作中心

完善資料讓更多小伙伴認(rèn)識你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示

如何實(shí)現(xiàn)一個秒殺系統(tǒng)

Android編程精選 ? 來源:Android編程精選 ? 作者:Android編程精選 ? 2022-09-15 09:56 ? 次閱讀

實(shí)現(xiàn)一個秒殺系統(tǒng),采用spring boot 2.x + mybatis+ redis + swagger2 + lombok實(shí)現(xiàn)。

先說說基本流程,就是提供一個秒殺接口,然后針對秒殺接口進(jìn)行限流,限流的方式目前我實(shí)現(xiàn)了兩種,上次實(shí)現(xiàn)的是累計計數(shù)方式,這次還有這個功能,并且我增加了令牌桶方式的lua腳本進(jìn)行限流。

然后不被限流的數(shù)據(jù)進(jìn)來之后,加一把分布式鎖,獲取分布式鎖之后就可以對數(shù)據(jù)庫進(jìn)行操作了。直接操作數(shù)據(jù)庫的方式可以,但是速度會比較慢,咱們直接通過一個初始化接口,將庫存數(shù)據(jù)放到緩存中,然后對緩存中的數(shù)據(jù)進(jìn)行操作。

寫庫的操作采用異步方式,實(shí)現(xiàn)的方式就是將操作好的數(shù)據(jù)放入到隊(duì)列中,然后由另一個線程對隊(duì)列進(jìn)行消費(fèi)。當(dāng)然,也可以將數(shù)據(jù)直接寫入mq中,由另一個線程進(jìn)行消費(fèi),這樣也更穩(wěn)妥。

好了,看一下項(xiàng)目的基本結(jié)構(gòu):

e8a4b096-3421-11ed-ba43-dac502259ad0.jpg

看一下入口controller類,入口類有兩個方法,一個是初始化訂單的方法,即秒殺開始的時候,秒殺接口才會有效,這個方法可以采用定時任務(wù)自動實(shí)現(xiàn)也可以。

初始化后就可以調(diào)用placeOrder的方法了。在placeOrder上面有個自定義的注解DistriLimitAnno,這個是我在上篇文章寫的,用作限流使用。

采用的方式目前有兩種,一種是使用計數(shù)方式限流,一種方式是令牌桶,上次使用了計數(shù),咱們這次采用令牌桶方式實(shí)現(xiàn)。

package com.hqs.flashsales.controller;

import com.hqs.flashsales.annotation.DistriLimitAnno;import com.hqs.flashsales.aspect.LimitAspect;import com.hqs.flashsales.lock.DistributedLock;import com.hqs.flashsales.limit.DistributedLimit;import com.hqs.flashsales.service.OrderService;import lombok.extern.slf4j.Slf4j;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.data.redis.core.RedisTemplate;import org.springframework.data.redis.core.script.RedisScript;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.GetMapping;import org.springframework.web.bind.annotation.PostMapping;import org.springframework.web.bind.annotation.ResponseBody;

import javax.annotation.Resource;import java.util.Collections;

/** * @author huangqingshi * @Date 2019-01-23 */@Slf4j@Controllerpublic class FlashSaleController {

@Autowired OrderService orderService; @Autowired DistributedLock distributedLock; @Autowired LimitAspect limitAspect; //注意RedisTemplate用的String,String,后續(xù)所有用到的key和value都是String的 @Autowired RedisTemplate redisTemplate;

private static final String LOCK_PRE = "LOCK_ORDER";

@PostMapping("/initCatalog") @ResponseBody public String initCatalog() { try { orderService.initCatalog(); } catch (Exception e) { log.error("error", e); }

return "init is ok"; }

@PostMapping("/placeOrder") @ResponseBody @DistriLimitAnno(limitKey = "limit", limit = 100, seconds = "1") public Long placeOrder(Long orderId) { Long saleOrderId = 0L; boolean locked = false; String key = LOCK_PRE + orderId; String uuid = String.valueOf(orderId); try { locked = distributedLock.distributedLock(key, uuid, "10" ); if(locked) { //直接操作數(shù)據(jù)庫// saleOrderId = orderService.placeOrder(orderId); //操作緩存 異步操作數(shù)據(jù)庫 saleOrderId = orderService.placeOrderWithQueue(orderId); } log.info("saleOrderId:{}", saleOrderId); } catch (Exception e) { log.error(e.getMessage()); } finally { if(locked) { distributedLock.distributedUnlock(key, uuid); } } return saleOrderId; }

}


令牌桶的方式比直接計數(shù)更加平滑,直接計數(shù)可能會瞬間達(dá)到最高值,令牌桶則把最高峰給削掉了,令牌桶的基本原理就是有一個桶裝著令牌,然后又一隊(duì)人排隊(duì)領(lǐng)取令牌,領(lǐng)到令牌的人就可以去做做自己想做的事情了,沒有領(lǐng)到令牌的人直接就走了(也可以重新排隊(duì))。

發(fā)令牌是按照一定的速度發(fā)放的,所以這樣在多人等令牌的時候,很多人是拿不到的。當(dāng)桶里邊的令牌在一定時間內(nèi)領(lǐng)完后,則沒有令牌可領(lǐng),都直接走了。如果過了一定的時間之后可以再次把令牌桶裝滿供排隊(duì)的人領(lǐng)。

基本原理是這樣的,看一下腳本簡單了解一下,里邊有一個key和四個參數(shù),第一個參數(shù)是獲取一個令牌桶的時間間隔,第二個參數(shù)是重新填裝令牌的時間(精確到毫秒),第三個是令牌桶的數(shù)量限制,第四個是隔多長時間重新填裝令牌桶。

-- bucket namelocal key = KEYS[1]-- token generate intervallocal intervalPerPermit = tonumber(ARGV[1])-- grant timestamplocal refillTime = tonumber(ARGV[2])-- limit token countlocal limit = tonumber(ARGV[3])-- ratelimit time periodlocal interval = tonumber(ARGV[4])

local counter = redis.call('hgetall', key)

if table.getn(counter) == 0 then -- first check if bucket not exists, if yes, create a new one with full capacity, then grant access redis.call('hmset', key, 'lastRefillTime', refillTime, 'tokensRemaining', limit - 1) -- expire will save memory redis.call('expire', key, interval) return 1elseif table.getn(counter) == 4 then -- if bucket exists, first we try to refill the token bucket local lastRefillTime, tokensRemaining = tonumber(counter[2]), tonumber(counter[4]) local currentTokens if refillTime > lastRefillTime then -- check if refillTime larger than lastRefillTime. -- if not, it means some other operation later than this call made the call first. -- there is no need to refill the tokens. local intervalSinceLast = refillTime - lastRefillTime if intervalSinceLast > interval then currentTokens = limit redis.call('hset', key, 'lastRefillTime', refillTime) else local grantedTokens = math.floor(intervalSinceLast / intervalPerPermit) if grantedTokens > 0 then -- ajust lastRefillTime, we want shift left the refill time. local padMillis = math.fmod(intervalSinceLast, intervalPerPermit) redis.call('hset', key, 'lastRefillTime', refillTime - padMillis) end currentTokens = math.min(grantedTokens + tokensRemaining, limit) end else -- if not, it means some other operation later than this call made the call first. -- there is no need to refill the tokens. currentTokens = tokensRemaining end

assert(currentTokens >= 0)

if currentTokens == 0 then -- we didn't consume any keys redis.call('hset', key, 'tokensRemaining', currentTokens) return 0 else -- we take 1 token from the bucket redis.call('hset', key, 'tokensRemaining', currentTokens - 1) return 1 endelse error("Size of counter is " .. table.getn(counter) .. ", Should Be 0 or 4.")end

看一下調(diào)用令牌桶l(fā)ua的JAVA代碼,也比較簡單:

public Boolean distributedRateLimit(String key, String limit, String seconds) {    Long id = 0L;    long intervalInMills = Long.valueOf(seconds) * 1000;    long limitInLong = Long.valueOf(limit);    long intervalPerPermit = intervalInMills / limitInLong;//    Long refillTime = System.currentTimeMillis();//    log.info("調(diào)用redis執(zhí)行l(wèi)ua腳本, {} {} {} {} {}", "ratelimit", intervalPerPermit, refillTime,//        limit, intervalInMills);    try {       id = redisTemplate.execute(rateLimitScript, Collections.singletonList(key),          String.valueOf(intervalPerPermit), String.valueOf(System.currentTimeMillis()),          String.valueOf(limitInLong), String.valueOf(intervalInMills));    } catch (Exception e) {      log.error("error", e);    }

if(id == 0L) { return false; } else { return true; } }


創(chuàng)建兩張簡單表,一個庫存表,一個是銷售訂單表:

CREATE TABLE `catalog` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL DEFAULT '' COMMENT '名稱', `total` int(11) NOT NULL COMMENT '庫存', `sold` int(11) NOT NULL COMMENT '已售', `version` int(11) NULL COMMENT '樂觀鎖,版本號', PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE `sales_order` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `cid` int(11) NOT NULL COMMENT '庫存ID', `name` varchar(30) NOT NULL DEFAULT '' COMMENT '商品名稱', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '創(chuàng)建時間', PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8;


基本已經(jīng)準(zhǔn)備完畢,然后啟動程序,打開swagger(http://localhost:8080/swagger-ui.html#),執(zhí)行初始化方法initCatalog:

e8b3ac2c-3421-11ed-ba43-dac502259ad0.jpg

日志里邊會輸出初始化的記錄內(nèi)容,初始化庫存為1000:

e8be7300-3421-11ed-ba43-dac502259ad0.png

初始化執(zhí)行的方法,十分簡單,寫到緩存中。

@Override  public void initCatalog() {    Catalog catalog = new Catalog();    catalog.setName("mac");    catalog.setTotal(1000L);    catalog.setSold(0L);    catalogMapper.insertCatalog(catalog);    log.info("catalog:{}", catalog);    redisTemplate.opsForValue().set(CATALOG_TOTAL + catalog.getId(), catalog.getTotal().toString());    redisTemplate.opsForValue().set(CATALOG_SOLD + catalog.getId(), catalog.getSold().toString());    log.info("redis value:{}", redisTemplate.opsForValue().get(CATALOG_TOTAL + catalog.getId()));    handleCatalog();  }

我寫了一個測試類,啟動3000個線程,然后去進(jìn)行下單請求:

package com.hqs.flashsales;

import lombok.extern.slf4j.Slf4j;import org.junit.Test;import org.junit.runner.RunWith;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.boot.test.context.SpringBootTest;import org.springframework.boot.test.web.client.TestRestTemplate;import org.springframework.test.context.junit4.SpringRunner;import org.springframework.util.LinkedMultiValueMap;import org.springframework.util.MultiValueMap;

import java.util.concurrent.TimeUnit;

@Slf4j@RunWith(SpringRunner.class)@SpringBootTest(classes = FlashsalesApplication.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)public class FlashSalesApplicationTests {

@Autowired private TestRestTemplate testRestTemplate;

@Test public void flashsaleTest() { String url = "http://localhost:8080/placeOrder"; for(int i = 0; i < 3000; i++) { ? ? ? ? ? ?try { ? ? ? ? ? ? ? ?TimeUnit.MILLISECONDS.sleep(20); ? ? ? ? ? ? ? ?new Thread(() -> { MultiValueMap params = new LinkedMultiValueMap<>(); params.add("orderId", "1"); Long result = testRestTemplate.postForObject(url, params, Long.class); if(result != 0) { System.out.println("-------------" + result); } } ).start(); } catch (Exception e) { log.info("error:{}", e.getMessage()); }

} }

@Test public void contextLoads() { }

}


然后開始運(yùn)行測試代碼,查看一下測試日志和程序日志,均顯示賣了1000后直接顯示SOLD OUT了。分別看一下日志和數(shù)據(jù)庫:

e8cd70f8-3421-11ed-ba43-dac502259ad0.jpg

e8df77da-3421-11ed-ba43-dac502259ad0.jpg

商品庫存catalog表和訂單明細(xì)表sales_order表,都是1000條,沒有問題。

e8f1df10-3421-11ed-ba43-dac502259ad0.jpg

總結(jié):

通過采用分布式鎖和分布式限流,即可實(shí)現(xiàn)秒殺流程,當(dāng)然分布式限流也可以用到很多地方,比如限制某些IP在多久時間訪問接口多少次,都可以的。

令牌桶的限流方式使得請求可以得到更加平滑的處理,不至于瞬間把系統(tǒng)達(dá)到最高負(fù)載。在這其中其實(shí)還有一個小細(xì)節(jié),就是Redis的鎖,單機(jī)情況下沒有任何問題,如果是集群的話需要注意,一個key被hash到同一個slot的時候沒有問題,如果說擴(kuò)容或者縮容的話,如果key被hash到不同的slot,程序可能會出問題。

在寫代碼的過程中還出現(xiàn)了一個小問題,就是寫controller的方法的時候,方法一定要聲明成public的,否則自定義的注解用不了,其他service的注解直接變?yōu)榭?,這個問題也是找了很久才找到。

審核編輯:彭靜
聲明:本文內(nèi)容及配圖由入駐作者撰寫或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點(diǎn)僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場。文章及其配圖僅供工程師學(xué)習(xí)之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問題,請聯(lián)系本站處理。 舉報投訴
  • 接口
    +關(guān)注

    關(guān)注

    33

    文章

    8447

    瀏覽量

    150724
  • 數(shù)據(jù)庫
    +關(guān)注

    關(guān)注

    7

    文章

    3752

    瀏覽量

    64233
  • 腳本
    +關(guān)注

    關(guān)注

    1

    文章

    387

    瀏覽量

    14811

原文標(biāo)題:用 IDEA 基于SpringBoot2+ mybatis+Redis實(shí)現(xiàn)一個秒殺系統(tǒng)(附上源碼)

文章出處:【微信號:AndroidPush,微信公眾號:Android編程精選】歡迎添加關(guān)注!文章轉(zhuǎn)載請注明出處。

收藏 人收藏

    評論

    相關(guān)推薦

    何氏手機(jī)維修秒殺絕殺技術(shù)----笫集漏電故障的秒殺技術(shù)

    神往,只是我不想傳播,造成何氏秒殺技術(shù)是光打雷不下雨。今天不僅要下雨。還是下的特大雨。手機(jī)的漏電故障,對于手機(jī)維修界難題,就是工作了幾十年的資深工程師往往也是縮手無策。因?yàn)橛械穆╇姽收鲜前l(fā)熱
    發(fā)表于 01-27 23:27

    秒殺到了是德 U1242C

    `昨天秒殺示波器,秒了天。今天終于秒到萬用表。http://mall.jd.com/index-698032.html,2:30的http://mall.jd.com
    發(fā)表于 11-11 14:26

    基于EP9315實(shí)現(xiàn)基本的NAS系統(tǒng)

    穩(wěn)定、高效率的以太網(wǎng)接入。在操作系統(tǒng)方面,作為只需要實(shí)現(xiàn)網(wǎng)絡(luò)存儲和文件管理的系統(tǒng),應(yīng)該采用面向存儲的專用操作
    發(fā)表于 10-27 06:30

    【1元秒殺】萬用表1元購,包郵!數(shù)量有限,先到先得~

    當(dāng)一個人開始對電子產(chǎn)品產(chǎn)生興趣時,萬用表可能是他購買的第部測試設(shè)備。11月2日,華秋商城貼心為廣大電子工程師、電子發(fā)燒友們推出了“萬用表1元秒殺”的福利購活動,還包郵哦~點(diǎn)擊領(lǐng)券(請在手機(jī)端上領(lǐng)取
    發(fā)表于 11-02 10:57

    如何去實(shí)現(xiàn)種基于SpringMVC的電商高并發(fā)秒殺系統(tǒng)設(shè)計

    參考博客Java高并發(fā)秒殺系統(tǒng)API目錄業(yè)務(wù)場景要解決的問題Redis的使用業(yè)務(wù)場景首頁倒計時秒殺活動,搶購商品要解決的問題高并發(fā)下庫存的控制分布式系統(tǒng)事務(wù)處理機(jī)制(分布式鎖)
    發(fā)表于 01-03 07:50

    嵌入式視頻監(jiān)控系統(tǒng)的設(shè)計與實(shí)現(xiàn)

    設(shè)計和實(shí)現(xiàn)嵌入式視頻監(jiān)控系統(tǒng),系統(tǒng)由基于嵌入式平臺的視頻服務(wù)器、基于PC 機(jī)的控制中心和客戶端組成。視頻服務(wù)器以嵌入式處理器為硬件平臺
    發(fā)表于 08-25 11:51 ?22次下載

    秒殺神券雙組合 vivo 618狂歡眾多炸裂福利勁爆來襲

    的超值福利,將本就白熱化的購機(jī)狂歡,推向又一個新的高度。 vivo官網(wǎng)狂歡節(jié)超級秒殺日 爆款低至5折限時秒殺,618超級神券限時領(lǐng)取 為進(jìn)步加大福利放送力度,vivo官網(wǎng)狂歡節(jié)超級
    的頭像 發(fā)表于 06-13 14:17 ?2947次閱讀

    篇文章秒殺三道區(qū)間相關(guān)的問題

    經(jīng)常有讀者問區(qū)間相關(guān)的問題,今天寫篇文章,秒殺三道區(qū)間相關(guān)的問題。 所謂區(qū)間問題,就是線段問題,讓你合并所有線段、找出線段的交集等等。主要有兩技巧: 1、排序。常見的排序方法就是按照區(qū)間起點(diǎn)排序
    的頭像 發(fā)表于 10-12 14:54 ?1851次閱讀
    <b class='flag-5'>一</b>篇文章<b class='flag-5'>秒殺</b>三道區(qū)間相關(guān)的問題

    如何實(shí)現(xiàn)微內(nèi)核操作系統(tǒng)的設(shè)計

    設(shè)計并實(shí)現(xiàn)運(yùn)行在Bochs虛擬機(jī)上的微內(nèi)核結(jié)構(gòu)的操作系統(tǒng), 詳細(xì)描述了系統(tǒng)中進(jìn)程管理、進(jìn)程間通訊、基本內(nèi)存管理、磁盤服務(wù)器以及文件服務(wù)
    發(fā)表于 11-13 17:28 ?28次下載
    如何<b class='flag-5'>實(shí)現(xiàn)</b><b class='flag-5'>一</b><b class='flag-5'>個</b>微內(nèi)核操作<b class='flag-5'>系統(tǒng)</b>的設(shè)計

    阿里的秒殺系統(tǒng)是如何設(shè)計的?

    阿里的秒殺系統(tǒng)是怎么設(shè)計的?,服務(wù)器,redis,調(diào)用,后端
    的頭像 發(fā)表于 02-20 11:23 ?1913次閱讀
    阿里的<b class='flag-5'>秒殺</b><b class='flag-5'>系統(tǒng)</b>是如何設(shè)計的?

    解密高并發(fā)業(yè)務(wù)場景下典型的秒殺系統(tǒng)的架構(gòu)

    中,就更別提如何構(gòu)建高并發(fā)系統(tǒng)了! 究竟什么樣的系統(tǒng)算是高并發(fā)系統(tǒng)?今天,我們就起解密高并發(fā)業(yè)務(wù)場景下典型的秒殺
    的頭像 發(fā)表于 11-17 10:32 ?2213次閱讀
    解密高并發(fā)業(yè)務(wù)場景下典型的<b class='flag-5'>秒殺</b><b class='flag-5'>系統(tǒng)</b>的架構(gòu)

    【源碼版】基于SpringMVC的電商高并發(fā)秒殺系統(tǒng)設(shè)計思路

    參考博客Java高并發(fā)秒殺系統(tǒng)API目錄業(yè)務(wù)場景要解決的問題Redis的使用業(yè)務(wù)場景首頁倒計時秒殺活動,搶購商品要解決的問題高并發(fā)下庫存的控制分布式系統(tǒng)事務(wù)處理機(jī)制(分布式鎖)
    發(fā)表于 01-12 10:23 ?0次下載
    【源碼版】基于SpringMVC的電商高并發(fā)<b class='flag-5'>秒殺</b><b class='flag-5'>系統(tǒng)</b>設(shè)計思路

    如何控制秒殺商品頁面購買按鈕的點(diǎn)亮

    售空;(4)般是定時上架;(5)時間短、瞬時并發(fā)量高; ? 2 秒殺技術(shù)挑戰(zhàn) 假設(shè)某網(wǎng)站秒殺活動只推出件商品,預(yù)計會吸引1萬人參加活動,也就說最大并發(fā)請求數(shù)是10000,
    的頭像 發(fā)表于 06-29 11:12 ?791次閱讀
    如何控制<b class='flag-5'>秒殺</b>商品頁面購買按鈕的點(diǎn)亮

    如何實(shí)現(xiàn)malloc

    甚至把malloc當(dāng)做操作系統(tǒng)所提供的系統(tǒng)調(diào)用或C的關(guān)鍵字。實(shí)際上,malloc只是C的標(biāo)準(zhǔn)庫中提供的普通函數(shù),而且實(shí)現(xiàn)malloc的基
    的頭像 發(fā)表于 11-13 14:31 ?728次閱讀
    如何<b class='flag-5'>實(shí)現(xiàn)</b><b class='flag-5'>一</b><b class='flag-5'>個</b>malloc

    java結(jié)合redis秒殺功能

    近年來,隨著電子商務(wù)的快速發(fā)展,各大電商平臺都推出了各種促銷活動來吸引用戶。秒殺活動作為種高效的促銷方式,能夠在很短的時間內(nèi)促成大量的交易。然而,高并發(fā)場景下的秒殺活動也給系統(tǒng)帶來了
    的頭像 發(fā)表于 12-04 11:06 ?571次閱讀