consts.go 443 B

123456789101112131415161718192021
  1. package consts
  2. type EsStatus int
  3. const (
  4. EsStatus_Free EsStatus = +iota //空闲
  5. EsStatus_Busy //忙碌
  6. EsStatus_block //阻塞
  7. )
  8. type QueryLevel int
  9. const (
  10. QueryLevelSimple QueryLevel = 0 + iota //简单查询
  11. QueryLevelAggs //聚合查询
  12. QueryLevelComplex //复杂查询
  13. QueryLevelKey = "queryLevel"
  14. QueryWaitPoolTime = "waitPoolTime"
  15. )