forked from stellar/go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchange_compactor.go
302 lines (276 loc) · 10.8 KB
/
change_compactor.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
package ingest
import (
"encoding/base64"
"github.com/stellar/go/support/errors"
"github.com/stellar/go/xdr"
)
// ChangeCompactor is a cache of ledger entry changes that squashes all
// changes within a single ledger. By doing this, it decreases number of DB
// queries sent to a DB to update the current state of the ledger.
// It has integrity checks built in so ex. removing an account that was
// previously removed returns an error. In such case verify.StateError is
// returned.
//
// The ChangeCompactor should not be used when ingesting from history archives
// because the history archive snapshots only contain CREATED changes.
// The ChangeCompactor is suited for compacting ledger entry changes derived
// from LedgerCloseMeta payloads because they typically contain a mix of
// CREATED, UPDATED, and REMOVED ledger entry changes and therefore may benefit
// from compaction.
//
// It applies changes to the cache using the following algorithm:
//
// 1. If the change is CREATED it checks if any change connected to given entry
// is already in the cache. If not, it adds CREATED change. Otherwise, if
// existing change is:
// a. CREATED it returns error because we can't add an entry that already
// exists.
// b. UPDATED it returns error because we can't add an entry that already
// exists.
// c. REMOVED it means that due to previous transitions we want to remove
// this from a DB what means that it already exists in a DB so we need to
// update the type of change to UPDATED.
// d. RESTORED it returns an error as the RESTORED change indicates the
// entry already exists.
// 2. If the change is UPDATE it checks if any change connected to given entry
// is already in the cache. If not, it adds UPDATE change. Otherwise, if
// existing change is:
// a. CREATED it means that due to previous transitions we want to create
// this in a DB what means that it doesn't exist in a DB so we need to
// update the entry but stay with CREATED type.
// b. UPDATED we simply update it with the new value.
// c. REMOVED it means that at this point in the ledger the entry is removed
// so updating it returns an error.
// d. RESTORED we update it with the new value but keep the change type as
// RESTORED.
// 3. If the change is REMOVE it checks if any change connected to given entry
// is already in the cache. If not, it adds REMOVE change. Otherwise, if
// existing change is:
// a. CREATED it means that due to previous transitions we want to create
// this in a DB what means that it doesn't exist in a DB. If it was
// created and removed in the same ledger it's a noop so we remove entry
// from the cache.
// b. UPDATED we simply update it to be a REMOVE change because the UPDATE
// change means the entry exists in a DB.
// c. REMOVED it returns error because we can't remove an entry that was
// already removed.
// d. RESTORED depending on the change compactor's configuration, we may or
// may not emit a REMOVE change type for an entry that was restored earlier
// in the ledger.
// 4. If the change is RESTORED it checks if any change related to the given
// entry already exists in the cache. If not, it adds the RESTORED change.
// Otherwise, it returns an error because only archived entries can be
// restored. If the entry was created, updated or removed in the same
// ledger, the entry must be active and not archived.
type ChangeCompactor struct {
// ledger key => Change
cache map[string]Change
encodingBuffer *xdr.EncodingBuffer
config ChangeCompactorConfig
}
type ChangeCompactorConfig struct {
// Determines whether the change compactor emits a REMOVED change when an archived entry
// is restored and then removed within the same ledger.
SuppressRemoveAfterRestoreChange bool
}
// NewChangeCompactor returns a new ChangeCompactor.
func NewChangeCompactor(config ChangeCompactorConfig) *ChangeCompactor {
return &ChangeCompactor{
cache: make(map[string]Change),
encodingBuffer: xdr.NewEncodingBuffer(),
config: config,
}
}
// AddChange adds a change to ChangeCompactor. All changes are stored
// in memory. To get the final, squashed changes call GetChanges.
//
// Please note that the current ledger capacity in pubnet (max 1000 ops/ledger)
// makes ChangeCompactor safe to use in terms of memory usage. If the
// cache takes too much memory, you apply changes returned by GetChanges and
// create a new ChangeCompactor object to continue ingestion.
func (c *ChangeCompactor) AddChange(change Change) error {
switch change.ChangeType {
case xdr.LedgerEntryChangeTypeLedgerEntryCreated:
return c.addCreatedChange(change)
case xdr.LedgerEntryChangeTypeLedgerEntryUpdated:
return c.addUpdatedChange(change)
case xdr.LedgerEntryChangeTypeLedgerEntryRemoved:
return c.addRemovedChange(change)
case xdr.LedgerEntryChangeTypeLedgerEntryRestored:
return c.addRestoredChange(change)
default:
return errors.New("Unknown entry change state")
}
}
// addCreatedChange adds a change to the cache, but returns an error if create
// change is unexpected.
func (c *ChangeCompactor) addCreatedChange(change Change) error {
ledgerKey, err := c.getLedgerKey(change.Post)
if err != nil {
return err
}
ledgerKeyString := string(ledgerKey)
existingChange, exist := c.cache[ledgerKeyString]
if !exist {
c.cache[ledgerKeyString] = change
return nil
}
switch existingChange.ChangeType {
case xdr.LedgerEntryChangeTypeLedgerEntryCreated:
fallthrough
case xdr.LedgerEntryChangeTypeLedgerEntryUpdated:
fallthrough
case xdr.LedgerEntryChangeTypeLedgerEntryRestored:
return NewStateError(errors.Errorf(
"can't create an entry that already exists (ledger key = %s)",
base64.StdEncoding.EncodeToString(ledgerKey),
))
case xdr.LedgerEntryChangeTypeLedgerEntryRemoved:
// If existing type is removed it means that this entry does exist
// in a DB so we update entry change.
c.cache[ledgerKeyString] = Change{
Type: change.Type,
Pre: existingChange.Pre,
Post: change.Post,
ChangeType: xdr.LedgerEntryChangeTypeLedgerEntryUpdated,
}
default:
return errors.Errorf("Unknown LedgerEntryChangeType: %d", existingChange.ChangeType)
}
return nil
}
func (c *ChangeCompactor) getLedgerKey(ledgerEntry *xdr.LedgerEntry) ([]byte, error) {
// safe, since we later cast to string (causing a copy)
key, err := ledgerEntry.LedgerKey()
if err != nil {
return nil, errors.Wrap(err, "error getting ledger key for new entry")
}
ledgerKey, err := c.encodingBuffer.UnsafeMarshalBinary(key)
if err != nil {
return nil, errors.Wrap(err, "error marshaling ledger key for new entry")
}
return ledgerKey, nil
}
// maxTTL returns the ttl entry with the highest LiveUntilLedgerSeq
func maxTTL(a, b xdr.TtlEntry) xdr.TtlEntry {
if a.LiveUntilLedgerSeq > b.LiveUntilLedgerSeq {
return a
}
return b
}
// addUpdatedChange adds a change to the cache, but returns an error if update
// change is unexpected.
func (c *ChangeCompactor) addUpdatedChange(change Change) error {
ledgerKey, err := c.getLedgerKey(change.Post)
if err != nil {
return err
}
ledgerKeyString := string(ledgerKey)
existingChange, exist := c.cache[ledgerKeyString]
if !exist {
c.cache[ledgerKeyString] = change
return nil
}
switch existingChange.ChangeType {
case xdr.LedgerEntryChangeTypeLedgerEntryCreated,
xdr.LedgerEntryChangeTypeLedgerEntryUpdated,
xdr.LedgerEntryChangeTypeLedgerEntryRestored:
post := change.Post
if change.Type == xdr.LedgerEntryTypeTtl {
// CAP-63 introduces special update semantics for TTL entries, see
// https://github.com/stellar/stellar-protocol/blob/master/core/cap-0063.md#ttl-ledger-change-semantics
*post.Data.Ttl = maxTTL(*existingChange.Post.Data.Ttl, *post.Data.Ttl)
}
c.cache[ledgerKeyString] = Change{
Type: change.Type,
Pre: existingChange.Pre,
Post: post,
ChangeType: existingChange.ChangeType, //keep the existing change type
}
case xdr.LedgerEntryChangeTypeLedgerEntryRemoved:
return NewStateError(errors.Errorf(
"can't update an entry that was previously removed (ledger key = %s)",
base64.StdEncoding.EncodeToString(ledgerKey),
))
default:
return errors.Errorf("Unknown LedgerEntryChangeType: %d", existingChange.ChangeType)
}
return nil
}
// addRemovedChange adds a change to the cache, but returns an error if remove
// change is unexpected.
func (c *ChangeCompactor) addRemovedChange(change Change) error {
ledgerKey, err := c.getLedgerKey(change.Pre)
if err != nil {
return err
}
ledgerKeyString := string(ledgerKey)
existingChange, exist := c.cache[ledgerKeyString]
if !exist {
c.cache[ledgerKeyString] = change
return nil
}
switch existingChange.ChangeType {
case xdr.LedgerEntryChangeTypeLedgerEntryCreated:
// If existing type is created it means that this will be no op.
// Entry was created and is now removed in a single ledger.
delete(c.cache, ledgerKeyString)
case xdr.LedgerEntryChangeTypeLedgerEntryUpdated:
c.cache[ledgerKeyString] = Change{
Type: change.Type,
Pre: existingChange.Pre,
Post: nil,
ChangeType: change.ChangeType,
}
case xdr.LedgerEntryChangeTypeLedgerEntryRemoved:
return NewStateError(errors.Errorf(
"can't remove an entry that was previously removed (ledger key = %s)",
base64.StdEncoding.EncodeToString(ledgerKey),
))
case xdr.LedgerEntryChangeTypeLedgerEntryRestored:
if c.config.SuppressRemoveAfterRestoreChange {
// Entry was restored and removed in the same ledger; deleting it is effectively a noop.
delete(c.cache, ledgerKeyString)
} else {
c.cache[ledgerKeyString] = Change{
Type: change.Type,
Pre: change.Pre,
Post: nil,
ChangeType: change.ChangeType,
}
}
default:
return errors.Errorf("Unknown LedgerEntryChangeType: %d", existingChange.ChangeType)
}
return nil
}
// addRestoredChange adds a change to the cache, but returns an error if the restore
// change is unexpected.
func (c *ChangeCompactor) addRestoredChange(change Change) error {
ledgerKey, err := c.getLedgerKey(change.Post)
if err != nil {
return err
}
ledgerKeyString := string(ledgerKey)
if _, exist := c.cache[ledgerKeyString]; exist {
return NewStateError(errors.Errorf(
"can't restore an entry that is already active (ledger key = %s)",
base64.StdEncoding.EncodeToString(ledgerKey),
))
}
c.cache[ledgerKeyString] = change
return nil
}
// GetChanges returns a slice of Changes in the cache. The order of changes is
// random but each change is connected to a separate entry.
func (c *ChangeCompactor) GetChanges() []Change {
changes := make([]Change, 0, len(c.cache))
for _, entryChange := range c.cache {
changes = append(changes, entryChange)
}
return changes
}
// Size returns number of ledger entries in the cache.
func (c *ChangeCompactor) Size() int {
return len(c.cache)
}