microservices icon indicating copy to clipboard operation
microservices copied to clipboard

micro 微服务实例教程,包含JWT鉴权、熔断、监控、链路追踪、健康检查、跨域等

Results 4 microservices issues
Sort by recently updated
recently updated
newest added

部署在云服务器上会panic: WriteHeader called after Handler finished micro Api panic 必现步骤 : 1. 先把熔断阀值调高 `hystrix.DefaultMaxConcurrent = 100000` `hystrix.DefaultVolumeThreshold = 100000` 2. 熔断超时调低 `hystrix.DefaultTimeout = 100` 3 .用压测工具 webbench 高并发请求接口必panic "panic: net/http:...

go build -o ../build/microGW main.go go: github.com/micro/[email protected] requires k8s.io/[email protected] requires github.com/gogo/[email protected]: invalid pseudo-version: revision is shorter than canonical (65acae22fc9d) 这个错误,我该如何解决?谢谢

访问api模块: http://localhost:8081/user/test ``` { message: "Hi, this is the Greeter API" } ``` 但是访问gateway 405 request url : http://localhost:8080/user/test ``` { id: "go.micro.client.transport", code: 500, detail: "405 Not Allowed: 405...