hbase_scan.go 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. package timemachine
  2. //import (
  3. // "bytes"
  4. // "context"
  5. // "go-common/app/interface/main/activity/model/timemachine"
  6. // "go-common/library/log"
  7. // "io"
  8. //
  9. // "github.com/tsuna/gohbase/hrpc"
  10. //)
  11. //
  12. //func (d *Dao) timemachineScan(c context.Context, startRow, endRow string) (err error) {
  13. // var scanner hrpc.Scanner
  14. // if scanner, err = d.hbase.ScanRangeStr(c, _hBaseUpItemTableName, startRow, endRow); err != nil {
  15. // log.Error("TimemachineScan d.hbase.Scan(%s) error(%v)", _hBaseUpItemTableName, err)
  16. // return
  17. // }
  18. // for {
  19. // if d.tmProcStop != 0 {
  20. // err = scanner.Close()
  21. // return
  22. // }
  23. // if result, e := scanner.Next(); e != nil {
  24. // if e == io.EOF {
  25. // return
  26. // }
  27. // log.Error("TimemachineScan scanner.Next error(%v)", e)
  28. // continue
  29. // } else {
  30. // if result == nil {
  31. // continue
  32. // }
  33. // item := &timemachine.Item{}
  34. // for _, c := range result.Cells {
  35. // if c == nil {
  36. // continue
  37. // }
  38. // if !bytes.Equal(c.Family, []byte("m")) {
  39. // continue
  40. // }
  41. // tmFillFields(item, c)
  42. // }
  43. // if item.Mid > 0 {
  44. // for {
  45. // if e := d.cache.Do(c, func(ctx context.Context) {
  46. // if e := d.AddCacheTimemachine(ctx, item.Mid, item); e != nil {
  47. // log.Error("timemachineScand.AddCacheTimemachine(%d) error(%v)", item.Mid, e)
  48. // }
  49. // }); e != nil {
  50. // log.Warn("timemachineScan d.AddCacheTimemachine channel full(%v)", e)
  51. // d.limiter.Wait(context.Background())
  52. // } else {
  53. // break
  54. // }
  55. // }
  56. // }
  57. // }
  58. // }
  59. //}