美文网首页
聊聊storagetapper的server

聊聊storagetapper的server

作者: go4it | 来源:发表于2021-02-28 23:50 被阅读0次

    本文主要研究一下storagetapper的server

    server

    storagetapper/server/server.go

    var server *http.Server
    var mutex = sync.Mutex{}
    
    func init() {
        http.HandleFunc("/health", healthCheck)
        http.HandleFunc("/schema", schemaCmd)
        http.HandleFunc("/cluster", clusterInfoCmd)
        http.HandleFunc("/table", tableCmd)
        http.HandleFunc("/config", configCmd)
        http.HandleFunc("/", indexCmd)
    }
    
    //StartHTTPServer starts listening and serving traffic on configured port and sets up http routes.
    func StartHTTPServer(port int) {
        state.EmitRegisteredTablesCount()
        mutex.Lock()
    
        server = &http.Server{Addr: fmt.Sprintf(":%d", port), Handler: nil}
        log.Debugf("HTTP server is listening on %v port", port)
    
        mutex.Unlock()
    
        err := server.ListenAndServe()
        if err != nil && err != http.ErrServerClosed {
            log.E(err)
        }
    }
    
    //Shutdown gracefully stops the server
    func Shutdown() {
        mutex.Lock()
        defer mutex.Unlock()
        if server == nil {
            return
        }
        ctx, cancel := context.WithCancel(context.Background())
        defer cancel()
        log.E(server.Shutdown(ctx))
        server = nil
    }
    

    storagetapper的server提供了StartHTTPServer、Shutdown方法;其init方法注册了/health/schema/cluster/table/config/这几个url

    healthCheck

    storagetapper/server/server.go

    //healthCheck handles call to the health check endpoint
    func healthCheck(w http.ResponseWriter, r *http.Request) {
        w.Header().Add("Content-Type", "text/plain")
        w.WriteHeader(http.StatusOK)
        if _, err := w.Write([]byte("OK")); err != nil {
            log.Errorf("Health check failed: %s\n", err)
        }
    }
    

    healthCheck返回200,文本内容为OK

    小结

    storagetapper的server提供了StartHTTPServer、Shutdown方法;其init方法注册了/health/schema/cluster/table/config/这几个url。

    doc

    相关文章

      网友评论

          本文标题:聊聊storagetapper的server

          本文链接:https://www.haomeiwen.com/subject/mrhofltx.html