Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

schema cache: cache schema version by timestamp #40768

Merged
merged 8 commits into from
Feb 6, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
75 changes: 65 additions & 10 deletions infoschema/cache.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
package infoschema

import (
"fmt"
"sort"
"sync"

Expand All @@ -38,20 +39,32 @@ type InfoCache struct {
mu sync.RWMutex
// cache is sorted by SchemaVersion in descending order
cache []InfoSchema
// record SnapshotTS of the latest schema Insert.
maxUpdatedSnapshotTS uint64

// keep ts to version mapping
tsToVersion map[uint64]int64
versionToTs map[int64]uint64
// maintain the order everytime the cahce is updated
descSortedTs []uint64
}

// NewCache creates a new InfoCache.
func NewCache(capacity int) *InfoCache {
return &InfoCache{cache: make([]InfoSchema, 0, capacity)}
return &InfoCache{
cache: make([]InfoSchema, 0, capacity),
tsToVersion: make(map[uint64]int64),
versionToTs: make(map[int64]uint64),
descSortedTs: make([]uint64, 0, capacity),
}
}

// Reset resets the cache.
func (h *InfoCache) Reset(capacity int) {
h.mu.Lock()
defer h.mu.Unlock()
h.cache = make([]InfoSchema, 0, capacity)
h.tsToVersion = make(map[uint64]int64)
h.versionToTs = make(map[int64]uint64)
h.descSortedTs = make([]uint64, 0, capacity)
}

// GetLatest gets the newest information schema.
Expand All @@ -66,10 +79,32 @@ func (h *InfoCache) GetLatest() InfoSchema {
return nil
}

// GetVersionByTimestamp returns the schema version used at the specific timestamp
func (h *InfoCache) GetVersionByTimestamp(ts uint64) (int64, error) {
h.mu.RLock()
defer h.mu.RUnlock()
return h.getVersionByTimestampNoLock(ts)
}

func (h *InfoCache) getVersionByTimestampNoLock(ts uint64) (int64, error) {
i := sort.Search(len(h.descSortedTs), func(i int) bool {
return h.descSortedTs[i] <= ts
})
if i < len(h.descSortedTs) {
return h.tsToVersion[h.descSortedTs[i]], nil
}

return 0, fmt.Errorf("no schema cached for timestamp %d", ts)
}

// GetByVersion gets the information schema based on schemaVersion. Returns nil if it is not loaded.
func (h *InfoCache) GetByVersion(version int64) InfoSchema {
h.mu.RLock()
defer h.mu.RUnlock()
return h.getByVersionNoLock(version)
}

func (h *InfoCache) getByVersionNoLock(version int64) InfoSchema {
getVersionCounter.Inc()
i := sort.Search(len(h.cache), func(i int) bool {
return h.cache[i].SchemaMetaVersion() <= version
Expand Down Expand Up @@ -108,11 +143,9 @@ func (h *InfoCache) GetBySnapshotTS(snapshotTS uint64) InfoSchema {
defer h.mu.RUnlock()

getTSCounter.Inc()
if snapshotTS >= h.maxUpdatedSnapshotTS {
if len(h.cache) > 0 {
hitTSCounter.Inc()
return h.cache[0]
}
if version, err := h.getVersionByTimestampNoLock(snapshotTS); err == nil {
hitTSCounter.Inc()
return h.getByVersionNoLock(version)
}
return nil
}
Expand All @@ -129,9 +162,31 @@ func (h *InfoCache) Insert(is InfoSchema, snapshotTS uint64) bool {
return h.cache[i].SchemaMetaVersion() <= version
})

if h.maxUpdatedSnapshotTS < snapshotTS {
h.maxUpdatedSnapshotTS = snapshotTS
// maintain ts to version mapping
ts, ok := h.versionToTs[version]
xhebox marked this conversation as resolved.
Show resolved Hide resolved
if ok {
// version exists, only update ts if the new one is smaller
if snapshotTS < ts {
h.versionToTs[version] = snapshotTS
delete(h.tsToVersion, ts)
h.tsToVersion[snapshotTS] = version
pos := sort.Search(len(h.descSortedTs), func(i int) bool {
return h.descSortedTs[i] < ts
})
if pos > 0 {
h.descSortedTs[pos-1] = snapshotTS
}
}
} else {
// add the version
h.versionToTs[version] = snapshotTS
h.tsToVersion[snapshotTS] = version
h.descSortedTs = append(h.descSortedTs, snapshotTS)
}
sort.Slice(h.descSortedTs, func(i, j int) bool {
// reverse the order
return h.descSortedTs[i] > h.descSortedTs[j]
})

// cached entry
if i < len(h.cache) && h.cache[i].SchemaMetaVersion() == version {
Expand Down
64 changes: 61 additions & 3 deletions infoschema/cache_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func TestInsert(t *testing.T) {
ic.Insert(is5, 5)
require.Equal(t, is5, ic.GetByVersion(5))
require.Equal(t, is2, ic.GetByVersion(2))
require.Nil(t, ic.GetBySnapshotTS(2))
require.Equal(t, is2, ic.GetBySnapshotTS(2))
require.Equal(t, is5, ic.GetBySnapshotTS(10))

// older
Expand All @@ -59,7 +59,7 @@ func TestInsert(t *testing.T) {
require.Equal(t, is5, ic.GetByVersion(5))
require.Equal(t, is2, ic.GetByVersion(2))
require.Nil(t, ic.GetByVersion(0))
require.Nil(t, ic.GetBySnapshotTS(2))
require.Equal(t, is2, ic.GetBySnapshotTS(2))
require.Equal(t, is6, ic.GetBySnapshotTS(10))

// replace 2, drop 2
Expand Down Expand Up @@ -91,7 +91,7 @@ func TestInsert(t *testing.T) {
require.Nil(t, ic.GetByVersion(2))
require.Nil(t, ic.GetByVersion(0))
require.Nil(t, ic.GetBySnapshotTS(2))
require.Nil(t, ic.GetBySnapshotTS(5))
require.Equal(t, is5, ic.GetBySnapshotTS(5))
require.Equal(t, is6, ic.GetBySnapshotTS(10))
}

Expand Down Expand Up @@ -129,3 +129,61 @@ func TestGetLatest(t *testing.T) {
ic.Insert(is0, 0)
require.Equal(t, is2, ic.GetLatest())
}

func TestGetByTimestamp(t *testing.T) {
ic := infoschema.NewCache(16)
require.NotNil(t, ic)
require.Nil(t, ic.GetLatest())

is1 := infoschema.MockInfoSchemaWithSchemaVer(nil, 1)
ic.Insert(is1, 1)
require.Equal(t, is1, ic.GetLatest())
_, err := ic.GetVersionByTimestamp(0)
require.NotNil(t, err)
ver, err := ic.GetVersionByTimestamp(1)
require.Nil(t, err)
require.Equal(t, int64(1), ver)
require.Equal(t, is1, ic.GetBySnapshotTS(1))
ver, err = ic.GetVersionByTimestamp(2)
require.Nil(t, err)
require.Equal(t, int64(1), ver)
require.Equal(t, is1, ic.GetBySnapshotTS(2))

is2 := infoschema.MockInfoSchemaWithSchemaVer(nil, 2)
ic.Insert(is2, 2)
require.Equal(t, is2, ic.GetLatest())
_, err = ic.GetVersionByTimestamp(0)
require.NotNil(t, err)
ver, err = ic.GetVersionByTimestamp(1)
require.Nil(t, err)
require.Equal(t, int64(1), ver)
require.Equal(t, is1, ic.GetBySnapshotTS(1))
ver, err = ic.GetVersionByTimestamp(2)
require.Nil(t, err)
require.Equal(t, int64(2), ver)
require.Equal(t, is2, ic.GetBySnapshotTS(2))
ver, err = ic.GetVersionByTimestamp(3)
require.Nil(t, err)
require.Equal(t, int64(2), ver)
require.Equal(t, is2, ic.GetBySnapshotTS(3))

is0 := infoschema.MockInfoSchemaWithSchemaVer(nil, 0)
ic.Insert(is0, 0)
require.Equal(t, is2, ic.GetLatest())
ver, err = ic.GetVersionByTimestamp(0)
require.Nil(t, err)
require.Equal(t, int64(0), ver)
require.Equal(t, is0, ic.GetBySnapshotTS(0))
ver, err = ic.GetVersionByTimestamp(1)
require.Nil(t, err)
require.Equal(t, int64(1), ver)
require.Equal(t, is1, ic.GetBySnapshotTS(1))
ver, err = ic.GetVersionByTimestamp(2)
require.Nil(t, err)
require.Equal(t, int64(2), ver)
require.Equal(t, is2, ic.GetBySnapshotTS(2))
ver, err = ic.GetVersionByTimestamp(3)
require.Nil(t, err)
require.Equal(t, int64(2), ver)
require.Equal(t, is2, ic.GetBySnapshotTS(3))
}