当连接保持活动状态时,我获得了太多打开的连接

时间:2018-10-26 02:28:14

标签: go

我有一个简单的Go文件,目的是返回客户信息的json响应。当我用apache基准测试该脚本时,请求保持活动状态

ab -t 10s -kc 1000 http://127.0.0.1:8080/clients/show/1

但是当请求还没有生效时,我就不会感到恐慌

ab -t 10s -c 1000 http://127.0.0.1:8080/clients/show/1

错误:

  

2018/10/26 03:26:42 http:紧急服务127.0.0.1:44800:错误1040:   连接过多,goroutine 220522 [正在运行]:   网络/ http。(* conn).serve.func1(0xc001779e00)

我的代码:

package main

import (
    "database/sql"
    "encoding/json"
    "fmt"
    _ "github.com/go-sql-driver/mysql"
    "github.com/gorilla/mux"
    "net/http"
    "runtime"
)

type Client struct {
    ID         int    `json:"id"`
    UserID     int    `json:"user_id"`
    Name       string `json:"name"`
    Telephone  string `json:"telephone"`
    Email      string    `json:"email"`
    Category   sql.NullString `json:"string"`
    Notes      string `json:"notes"`
    Additional sql.NullString `json:"additional"`
    CreatedAt  sql.NullString `json:"created_at"`
    UpdatedAt  sql.NullString `json:"updated_at"`
    DeletedAt  sql.NullString `json:"deleted_at"`
}

func main() {
    runtime.GOMAXPROCS(runtime.NumCPU())
    r := mux.NewRouter()

    r.HandleFunc("/clients/show/{id}", showClient).Methods("GET")

    http.ListenAndServe(":8080", r)
}

func handler(w http.ResponseWriter, r *http.Request) {
    fmt.Fprintf(w, "Hello World!")
}

func showClient(w http.ResponseWriter, r *http.Request) {

    db, err := sql.Open("mysql", "root@tcp(127.0.0.1:3306)/crm")

    if err != nil {
        panic(err.Error())
    }

    var client Client

    // Execute the query
    err = db.QueryRow("SELECT * FROM clients where id = ?", 1).Scan(
        &client.ID,
        &client.UserID,
        &client.Name,
        &client.Telephone,
        &client.Email,
        &client.Category,
        &client.Notes,
        &client.Additional,
        &client.CreatedAt,
        &client.UpdatedAt,
        &client.DeletedAt,
    )

    if err != nil {
        panic(err.Error())
    }

    db.Close()

    json.NewEncoder(w).Encode(client)
}

有人可以解释一下为什么这种情况以如此低的并发请求率发生,以及解决此问题的正确方法是什么。

1 个答案:

答案 0 :(得分:0)

有两个问题,套接字的程序使用和服务器配置

每个连接可能需要2个套接字,一个用于数据库,一个用于http客户端。将sql.Open()移到其他作用域,以免被重复调用,这将有助于数据库套接字。对于http服务器,默认值实际上很低-如果有2个以上未使用的保持活动状态,则关闭连接

此外,您的服务器可能需要修改

这个问题的最高答案讨论了Increasing the maximum number of tcp/ip connections in linux,Linux的默认每秒连接数非常保守,小型的简单Go服务器可能会使其过失

根据上述答案调整服务器,这应该会有所帮助