1. 02 Jun, 2020 1 commit
  2. 31 May, 2020 1 commit
  3. 11 May, 2020 1 commit
  4. 14 Apr, 2020 1 commit
  5. 05 Apr, 2020 4 commits
  6. 04 Mar, 2020 1 commit
  7. 14 Feb, 2020 2 commits
  8. 10 Feb, 2020 5 commits
    • Kirill Smelkov's avatar
      Merge branch 'master' into t · a6a767c9
      Kirill Smelkov authored
      * master: (79 commits)
        go/zodb/zodbtools: Regenerate test data + fix
        go/zodb/fs1: Regenerate
        go/neo/proto: Regenerate
        go/neo/proto: Fix protogen to work without prior `go install`
        go/*: Add Unwrap to custom errors that have Cause
        go/zodb/btree: Represent a tree node - either BTree or Bucket - by Node
        go/zodb: Cosmetics
        go/zodb: LiveCache: Reclassify all objects on cache control change
        go/zodb: LiveCache: Allow objects to be pinned / omitted from the cache
        go/zodb: Prepare to rework/fix LiveCache control
        go/zodb: persistent tests: Factor test database setup out of TestPersistentDB
        go/zodb: persistent test: Fix thinko in tPersistentDB.checkObj
        go/zodb: Don't expose LiveCache internal organization onto its users
        go/zodb: OpenStorage -> Open
        go/zodb: LastTid -> Sync + Head
        go/zodb: DB: preserve δtail not to go down to ø slice on seldom commits
        go/zodb: ΔTail += Data()
        go/zodb/*: Cosmetics, typos, ...
        go/zodb: Connection.Resync
        go/zodb: DB: handle invalidations
        ...
      a6a767c9
    • Kirill Smelkov's avatar
      go/zodb/zodbtools: Regenerate test data + fix · 84845c97
      Kirill Smelkov authored
      The only change is extra LF that is appended to end of 1.zdump.pyok due
      to nexedi/zodbtools@624aeb09.
      
      Correspondingly fix dump on zodbtools/go side.
      84845c97
    • Kirill Smelkov's avatar
      go/zodb/fs1: Regenerate · 968f9555
      Kirill Smelkov authored
      The only update comes from
      
      b@8c9698d6
      968f9555
    • Kirill Smelkov's avatar
      go/neo/proto: Regenerate · 461f0bdf
      Kirill Smelkov authored
      Rerun `go generate` for this package. Updates come due to updated
      `stringer`. zproto-marshal.go stays the same.
      461f0bdf
    • Kirill Smelkov's avatar
      go/neo/proto: Fix protogen to work without prior `go install` · 227c1260
      Kirill Smelkov authored
      When trying to regenerate zproto-marshal.go on a fresh go workspace I
      got:
      
          (neo) (z-dev) (g.env) kirr@deco:~/src/neo/src/lab.nexedi.com/kirr/neo/go/neo/proto$ go generate
          typecheck: ../../zodb/zodb.go:174:2: could not import lab.nexedi.com/kirr/go123/mem (can't find import: "lab.nexedi.com/kirr/go123/mem")
          exit status 1
          proto.go:57: running "sh": exit status 1
      
      Digging around a bit this turned out to be due to that
      importer.Default() is using packages in only binary installed form:
      
          https://github.com/golang/go/issues/19334#issuecomment-283430322
          https://github.com/golang/go/issues/11415
      
      Fix it by using "source" importer which always looks at sources.
      
      (zproto-marshal.go stays unchanged after `go generate` rerun)
      227c1260
  9. 16 Jan, 2020 1 commit
  10. 15 Jan, 2020 1 commit
  11. 12 Jan, 2020 4 commits
  12. 07 Jul, 2019 1 commit
  13. 06 Jun, 2019 2 commits
  14. 24 May, 2019 1 commit
  15. 12 Apr, 2019 2 commits
  16. 02 Apr, 2019 2 commits
  17. 12 Mar, 2019 10 commits
    • Kirill Smelkov's avatar
      go/zodb: Cosmetics · adb2ada3
      Kirill Smelkov authored
      More comments, typos, ...
      adb2ada3
    • Kirill Smelkov's avatar
      go/zodb: LiveCache: Reclassify all objects on cache control change · 1e6aeeee
      Kirill Smelkov authored
      If cache control changes, all objects needs to go through new cache
      control as what was e.g. pinned before could be in other class
      from the point of view of new cache control.
      
      Tests pending...
      1e6aeeee
    • Kirill Smelkov's avatar
      go/zodb: LiveCache: Allow objects to be pinned / omitted from the cache · 4357db3f
      Kirill Smelkov authored
      We already have LiveCacheControl and policy to keep object state in live
      cache. However that state is currently kept only until the object is
      present in the cache, and the object is there currently only until there
      are live pointers to the object from anywhere. If all such pointers go
      away, LiveCache currently discards the object.
      
      Add a way (PCachePinObject) to tell live cache that it must retain an
      object even if there are no other pointers to it. This is needed for
      Wendelin.core which semantically relies on some objects to be present in
      live cache, even if in ghost state, for propagating ZODB invalidations
      into OS pagecache:
      
      https://lab.nexedi.com/kirr/wendelin.core/blob/000bf16359/wcfs/wcfs.go#L245
      
      For symmetry add a way (PCacheDropObject) to tell live cache that it
      must not retain an object. This makes sense for objects that are read in
      large only once to avoid needlessly evicting all other objects while
      making the room for what won't be soon used again.
      
      For completeness add also a way (PCacheDropState) to tell live cache
      that the state of this object should not be cached. This can make sense
      even for objects that are pinned: for example Wendelin.core pins ZBlk
      objects to rely on volatile metadata it attaches to them, but have to
      drop ZBlk state that was loaded from database: that state is propagated
      to be cached in OS pagecache, and keeping it also in ZODB live cache
      would just waste RAM.
      
      Finally add test to cover LiveCache/LiveCacheControl functionality in
      detail.
      4357db3f
    • Kirill Smelkov's avatar
      go/zodb: Prepare to rework/fix LiveCache control · cb6fd5a8
      Kirill Smelkov authored
      We are going to rework LiveCache to support both retaining objects in
      cache even though if all pointers to them went away (currently such
      objects disappear from cache), and to tell the cache that such and such
      object should not be cached at all, e.g. not to evict all other objects
      on one-time large reads.
      
      This will be done by LiveCacheControl giving cache policy classification
      for an object. Prepare for that and change
      
      	WantEvict(obj) -> bool
      
      to
      
      	PCacheClassify(obj) PCachePolicy
      
      which can give more information to LiveCache about how to handle an
      object.
      
      This is only a preparatory patch as there is neither no new
      functionality nor fixes here.
      cb6fd5a8
    • Kirill Smelkov's avatar
      go/zodb: persistent tests: Factor test database setup out of TestPersistentDB · 1a2772e3
      Kirill Smelkov authored
      We already have "testing connection" functionality in common place (was
      named tPersistentDB -> now tConnection). However the functionality to
      "setup and use testing database" was inside TestPersistentDB only.
      
      Since we are going to add more tests, factor that functionality out of
      TestPersistentDB into shared infrastructure that could be reused in
      between tests (-> tDB).
      1a2772e3
    • Kirill Smelkov's avatar
      go/zodb: persistent test: Fix thinko in tPersistentDB.checkObj · e1d57c16
      Kirill Smelkov authored
      It was printing oid instead of obj.
      e1d57c16
    • Kirill Smelkov's avatar
      go/zodb: Don't expose LiveCache internal organization onto its users · 2e8448ad
      Kirill Smelkov authored
      Provide functions to:
      
      - set cache element
      - iterate through all elements
      
      LiveCache organization will be changed in the following patch, and it is
      better to keep the knowledge about its internal structure localized.
      2e8448ad
    • Kirill Smelkov's avatar
      . · e0b002f5
      Kirill Smelkov authored
      e0b002f5
    • Kirill Smelkov's avatar
      . · 9bc6b2e8
      Kirill Smelkov authored
      9bc6b2e8
    • Kirill Smelkov's avatar
      . · f6540a23
      Kirill Smelkov authored
      f6540a23