[gold] Reduce memory by not locking SearchIndex in warmer closure

After adding in the pre-slice maps, we were accidentally
keeping around all the traces in that map because
the search index was locked away in a closure when warming
Since warming takes 15 minutes or so and we refreshed a tile
after 5 minutes, we were keeping an extra 3-4 traces around.

This appears to help calm down the memory usage again.
I spent some time looking at bt_tracestore again, because
the memory blame blames things in loadEncodedTraces that
I would have thought would have been GC'd, but I now believe
that go does something clever when copying things around
that might make it look like they are still there but are not.

Additionally, we were incorrectly keeping the row keys around,
which can be prevented with a copy, just like in Perf.

Change-Id: I0e913330c10ddccc3cea4d794b2d447a8eb92ea1
Reviewed-on: https://skia-review.googlesource.com/c/buildbot/+/254800
Reviewed-by: Ben Wagner aka dogben <benjaminwagner@google.com>
Commit-Queue: Kevin Lubick <kjlubick@google.com>
5 files changed
tree: 09abe0bc6d04fd4539de0c0c3caf987996bb9160
  1. am/
  2. android_compile/
  3. android_ingest/
  4. android_stats/
  5. api/
  6. appengine_scripts/
  7. autoroll/
  8. bash/
  9. blamer/
  10. chromeextensions/
  11. comments/
  12. common-sk/
  13. contestk/
  14. cq_watcher/
  15. ct/
  16. datahopper/
  17. debugger/
  18. debugger-assets/
  19. docker/
  20. docserverk/
  21. ds/
  22. fiddlek/
  23. firestore/
  24. get_service_account/
  25. git_cookie_authdaemon/
  26. gitsync/
  27. go/
  28. gold-client/
  29. golden/
  30. hashtag/
  31. html-template-minifier/
  32. infra/
  33. infra-sk/
  34. jsdoc/
  35. jsfiddle/
  36. k8s_checker/
  37. kube/
  38. leasing/
  39. licenses/
  40. make/
  41. named-fiddles/
  42. particles/
  43. perdiff/
  44. perf/
  45. periodic-trigger/
  46. power/
  47. proberk/
  48. promk/
  49. pulld/
  50. push/
  51. res/
  52. scripts/
  53. sheriff_emails/
  54. skfe/
  55. skolo/
  56. skottie/
  57. status/
  58. task_driver/
  59. task_scheduler/
  60. tools/
  61. velero/
  62. webtools/
  63. .gitattributes
  64. .gitignore
  65. build_infra_prod.sh
  66. cipd.ensure
  67. codereview.settings
  68. DATASTORE.md
  69. DEPS
  70. go.mod
  71. go.sum
  72. launch.md
  73. LICENSE
  74. Makefile
  75. PRESUBMIT.py
  76. PRIVACY_POLICY.md
  77. README.md
  78. run_unittests
  79. run_unittests.go
  80. STYLEGUIDE.md
  81. whitespace.txt
README.md

Skia-Buildbot Repository

This repo contains infrastructure code for Skia.

Getting the Source Code

The main source code repository is a Git repository hosted at https://skia.googlesource.com/buildbot.git. It is possible to check out this repository directly with git clone or via go get.

Using git clone allows you to work in whatever directory you want. You will still need to set GOPATH in order to build some apps (recommended to put this in a cache dir). E.g.:

$ cd ${WORKDIR}
$ git clone https://skia.googlesource.com/buildbot.git
$ export GOPATH=${HOME}/.cache/gopath/$(basename ${WORKDIR})
$ mkdir $GOPATH
$ cd buildbot

Using go get will fetch the repository into your GOPATH directory along with all the Go dependencies. You will need to set GOPATH and GO111MODULE=on. E.g.:

$ export GOPATH=${WORKDIR}
$ export GO111MODULE=on
$ go get -u -t go.skia.org/infra/...
$ cd ${GOPATH}/src/go.skia.org/infra/

Note: go.skia.org is a custom import path and will only work if used like the examples here.

Install Node.js (not as root) and add the bin dir to your path. Optionally run npm install npm -g, as suggested by the npm getting started doc.

Install other dependencies:

$ sudo apt-get install python-django
$ go get -u github.com/kisielk/errcheck \
  golang.org/x/tools/cmd/goimports \
  go.chromium.org/luci/client/cmd/isolate
$ npm install -g polylint bower

Build ~everything:

$ make all

Generated Code

Some code is generated using go generate with external binaries. First, install the version of protoc referenced in the asset creation script and ensure it is on your PATH before other versions of protoc.

Install the necessary go packages:

$ go get -u \
  github.com/golang/protobuf/protoc-gen-go \
  golang.org/x/tools/cmd/stringer \
  google.golang.org/grpc \
  github.com/vektra/mockery/...

To generate code run in this directory:

$ go generate ./...

Running unit tests

Install Cloud SDK.

Use this command to run the presubmit tests:

$ ./run_unittests --small