forked from influxdata/influxdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinitial_migration.go
100 lines (88 loc) · 2.44 KB
/
initial_migration.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
package kv
import (
"context"
"encoding/json"
"github.com/influxdata/influxdb/v2/kit/platform"
)
type InitialMigration struct{}
// MigrationName returns the string initial migration
// which allows this store to be used as a migration
func (m InitialMigration) MigrationName() string {
return "initial migration"
}
// Up initializes all the owned buckets of the underlying store
func (m InitialMigration) Up(ctx context.Context, store SchemaStore) error {
// please do not initialize anymore buckets here
// add them as a new migration to the list of migrations
// defined in NewInitialMigration.
for _, bucket := range [][]byte{
[]byte("authorizationsv1"),
[]byte("authorizationindexv1"),
[]byte("bucketsv1"),
[]byte("bucketindexv1"),
[]byte("dashboardsv2"),
[]byte("orgsdashboardsv1"),
[]byte("dashboardcellviewsv1"),
kvlogBucket,
kvlogIndex,
[]byte("labelsv1"),
[]byte("labelmappingsv1"),
[]byte("labelindexv1"),
[]byte("onboardingv1"),
[]byte("organizationsv1"),
[]byte("organizationindexv1"),
taskBucket,
taskRunBucket,
taskIndexBucket,
[]byte("userspasswordv1"),
scrapersBucket,
[]byte("secretsv1"),
[]byte("telegrafv1"),
[]byte("telegrafPluginsv1"),
[]byte("userresourcemappingsv1"),
[]byte("notificationRulev1"),
[]byte("usersv1"),
[]byte("userindexv1"),
sourceBucket,
// these are the "document" (aka templates) key prefixes
[]byte("templates/documents/content"),
[]byte("templates/documents/meta"),
// store base backed services
[]byte("checksv1"),
[]byte("checkindexv1"),
[]byte("notificationEndpointv1"),
[]byte("notificationEndpointIndexv1"),
variableBucket,
variableIndexBucket,
variableOrgsIndex,
// deprecated: removed in later migration
[]byte("sessionsv1"),
} {
if err := store.CreateBucket(ctx, bucket); err != nil {
return err
}
}
// seed initial sources (default source)
return store.Update(ctx, func(tx Tx) error {
return putAsJson(tx, sourceBucket, DefaultSource.ID, DefaultSource)
})
}
// Down is a no operation required for service to be used as a migration
func (m InitialMigration) Down(ctx context.Context, store SchemaStore) error {
return nil
}
func putAsJson(tx Tx, bucket []byte, id platform.ID, value interface{}) error {
data, err := json.Marshal(value)
if err != nil {
return err
}
encodedID, err := id.Encode()
if err != nil {
return err
}
b, err := tx.Bucket(bucket)
if err != nil {
return err
}
return b.Put(encodedID, data)
}