我有以下Scotty应用程序,该应用程序尝试使用STM保持服务的API调用计数:
{-# LANGUAGE OverloadedStrings #-}
module Main where
import Web.Scotty
import Data.Monoid (mconcat)
import Control.Concurrent.STM
import Control.Monad.IO.Class
main :: IO ()
main = do
counter <- newTVarIO 0
scotty 3000 $
get "/:word" $ do
liftIO $ atomically $ do
counter' <- readTVar counter
writeTVar counter (counter' + 1)
liftIO $ do
counter' <- atomically (readTVar counter)
print counter'
beam <- param "word"
html $ mconcat ["<h1>Scotty, ", beam, " me up!</h1>"]
我像这样“负载测试” API:
ab -c 100 -n 100000 http://127.0.0.1:3000/z
但是,该API大约处理了1.6万个请求,然后被“卡住”-ab
停止,错误为apr_socket_recv: Operation timed out (60)
。
我认为我正在滥用STM,但不确定自己在做什么错。有什么建议吗?
答案 0 :(得分:5)
在这里快速猜测。 16,000大约是可用的TCP端口数。可能您没有关闭任何连接,因此ab
的开放端口用尽了吗?