-
Notifications
You must be signed in to change notification settings - Fork 503
/
Copy pathpostgresql.go
632 lines (555 loc) · 17.7 KB
/
postgresql.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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
/*
Copyright 2023 The Dapr Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package postgresql
import (
"context"
"encoding/json"
"errors"
"fmt"
"reflect"
"strconv"
"strings"
"time"
"github.com/google/uuid"
"github.com/jackc/pgx/v5"
"github.com/jackc/pgx/v5/pgconn"
"github.com/jackc/pgx/v5/pgxpool"
pginterfaces "github.com/dapr/components-contrib/common/component/postgresql/interfaces"
pgtransactions "github.com/dapr/components-contrib/common/component/postgresql/transactions"
sqlinternal "github.com/dapr/components-contrib/common/component/sql"
pgmigrations "github.com/dapr/components-contrib/common/component/sql/migrations/postgres"
"github.com/dapr/components-contrib/metadata"
"github.com/dapr/components-contrib/state"
stateutils "github.com/dapr/components-contrib/state/utils"
"github.com/dapr/kit/logger"
)
// PostgreSQL state store.
type PostgreSQL struct {
state.BulkStore
logger logger.Logger
metadata pgMetadata
db pginterfaces.PGXPoolConn
gc sqlinternal.GarbageCollector
enableAzureAD bool
deleteWithPrefix bool
}
// PostgreSQLDeleteWithPrefix extends PostgreSQL and adds support for DeleteWithPrefix.
type PostgreSQLDeleteWithPrefix struct {
*PostgreSQL
}
type Options struct {
// Disables support for authenticating with Azure AD
// This should be set to "false" when targeting different databases than PostgreSQL (such as CockroachDB)
NoAzureAD bool
// Disables support for DeleteWithPrefix
// This should be set to "false" when targeting CockroachDB and other PostgreSQL-compatible database that don't offer the necessary capabilities
NoDeleteWithPrefix bool
}
// NewPostgreSQLStateStore creates a new instance of PostgreSQL state store v2 with the default options.
// The v2 of the component uses a different format for storing data, always in a BYTEA column, which is more efficient than the JSONB column used in v1.
// Additionally, v2 uses random UUIDs for etags instead of the xmin column, expanding support to all Postgres-compatible databases such as CockroachDB, etc.
func NewPostgreSQLStateStore(logger logger.Logger) state.Store {
return NewPostgreSQLStateStoreWithOptions(logger, Options{})
}
// NewPostgreSQLStateStoreWithOptions creates a new instance of PostgreSQL state store with options.
func NewPostgreSQLStateStoreWithOptions(logger logger.Logger, opts Options) state.Store {
s := &PostgreSQL{
logger: logger,
enableAzureAD: !opts.NoAzureAD,
deleteWithPrefix: !opts.NoDeleteWithPrefix,
}
s.BulkStore = state.NewDefaultBulkStore(s)
// If we want DeleteWithPrefix support, wrap into a PostgreSQLDeleteWithPrefix object
if opts.NoDeleteWithPrefix {
return s
}
return &PostgreSQLDeleteWithPrefix{
PostgreSQL: s,
}
}
// Init sets up Postgres connection and performs migrations
func (p *PostgreSQL) Init(ctx context.Context, meta state.Metadata) error {
err := p.metadata.InitWithMetadata(meta, p.enableAzureAD)
if err != nil {
p.logger.Errorf("Failed to parse metadata: %v", err)
return err
}
config, err := p.metadata.GetPgxPoolConfig()
if err != nil {
p.logger.Error(err)
return err
}
connCtx, connCancel := context.WithTimeout(ctx, p.metadata.Timeout)
p.db, err = pgxpool.NewWithConfig(connCtx, config)
connCancel()
if err != nil {
err = fmt.Errorf("failed to connect to the database: %w", err)
p.logger.Error(err)
return err
}
pingCtx, pingCancel := context.WithTimeout(ctx, p.metadata.Timeout)
err = p.db.Ping(pingCtx)
pingCancel()
if err != nil {
err = fmt.Errorf("failed to ping the database: %w", err)
p.logger.Error(err)
return err
}
// Migrate schema
err = p.performMigrations(ctx)
if err != nil {
p.logger.Error(err)
return err
}
if p.metadata.CleanupInterval != nil {
gc, err := sqlinternal.ScheduleGarbageCollector(sqlinternal.GCOptions{
Logger: p.logger,
UpdateLastCleanupQuery: func(arg any) (string, any) {
return fmt.Sprintf(
`INSERT INTO %[1]s (key, value)
VALUES ('last-cleanup-state-v2-%[2]s', now()::text)
ON CONFLICT (key)
DO UPDATE SET value = now()::text
WHERE (EXTRACT('epoch' FROM now() - %[1]s.value::timestamp with time zone) * 1000)::bigint > $1`,
p.metadata.MetadataTableName,
p.metadata.TablePrefix,
), arg
},
DeleteExpiredValuesQuery: fmt.Sprintf(
`DELETE FROM %s WHERE expires_at IS NOT NULL AND expires_at < now()`,
p.metadata.TableName(pgTableState),
),
CleanupInterval: *p.metadata.CleanupInterval,
DB: sqlinternal.AdaptPgxConn(p.db),
})
if err != nil {
return err
}
p.gc = gc
}
return nil
}
func (p *PostgreSQL) performMigrations(ctx context.Context) error {
m := pgmigrations.Migrations{
DB: p.db,
Logger: p.logger,
MetadataTableName: p.metadata.MetadataTableName,
MetadataKey: "migrations-state-v2-" + p.metadata.TablePrefix,
}
stateTable := p.metadata.TableName(pgTableState)
keyPrefixFunction := p.metadata.FunctionName(pgFunctionKeyPrefix)
return m.Perform(ctx, []sqlinternal.MigrationFn{
// Migration 1: create the table for state
func(ctx context.Context) error {
p.logger.Infof("Creating state table: '%s'", stateTable)
_, err := p.db.Exec(ctx,
fmt.Sprintf(`
CREATE TABLE %[1]s (
key text NOT NULL PRIMARY KEY,
value bytea NOT NULL,
etag uuid NOT NULL DEFAULT gen_random_uuid(),
created_at timestamp with time zone NOT NULL DEFAULT now(),
updated_at timestamp with time zone,
expires_at timestamp with time zone
);
CREATE INDEX ON %[1]s (expires_at);
`, stateTable),
)
if err != nil {
return fmt.Errorf("failed to create state table: %w", err)
}
return nil
},
// Migration 2: add the "key_prefix" function and "prefix" index to the state table
// If DeleteWithPrefix support is disabled, this is a no-op, but we keep the migration here because we want the migration level to increase, or bad things will happen if another migration is added in the future
func(ctx context.Context) error {
if !p.deleteWithPrefix {
return nil
}
// Create the "key_prefix" function
// Then add the "prefix" index to the state table that can be used by DeleteWithPrefix
p.logger.Infof("Creating function '%s' and adding 'prefix' index to table '%s'", keyPrefixFunction, stateTable)
_, err := p.db.Exec(
ctx,
fmt.Sprintf(
`
CREATE FUNCTION %[1]s(k text) RETURNS text
LANGUAGE SQL
IMMUTABLE
LEAKPROOF
RETURNS NULL ON NULL INPUT
AS $$
SELECT array_to_string(trim_array(string_to_array(k, '||'),1), '||');
$$;
CREATE INDEX %[2]s_prefix_idx ON %[2]s (%[1]s("key")) WHERE %[1]s("key") <> '';
`,
keyPrefixFunction, stateTable,
),
)
if err != nil {
return err
}
return nil
},
})
}
// Features returns the features available in this state store.
func (p *PostgreSQL) Features() []state.Feature {
return []state.Feature{
state.FeatureETag,
state.FeatureTransactional,
state.FeatureTTL,
}
}
// Features returns the features available in this state store.
func (p *PostgreSQLDeleteWithPrefix) Features() []state.Feature {
return []state.Feature{
state.FeatureETag,
state.FeatureTransactional,
state.FeatureTTL,
state.FeatureDeleteWithPrefix,
}
}
func (p *PostgreSQL) GetDB() *pgxpool.Pool {
// We can safely cast to *pgxpool.Pool because this method is never used in unit tests where we mock the DB
return p.db.(*pgxpool.Pool)
}
// Set makes an insert or update to the database.
func (p *PostgreSQL) Set(ctx context.Context, req *state.SetRequest) error {
if req == nil {
return errors.New("request object is nil")
}
return p.doSet(ctx, p.db, *req)
}
func (p *PostgreSQL) doSet(parentCtx context.Context, db pginterfaces.DBQuerier, req state.SetRequest) error {
if req.Key == "" {
return errors.New("missing key in set operation")
}
err := state.CheckRequestOptions(req.Options)
if err != nil {
return err
}
// If the value is a byte slice, accept it as-is; otherwise, encode to JSON
var value []byte
switch x := req.Value.(type) {
case []byte:
value = x
default:
value, err = json.Marshal(x)
if err != nil {
return fmt.Errorf("failed to marshal to JSON: %w", err)
}
}
// TTL
var ttlSeconds int
ttl, ttlerr := stateutils.ParseTTL(req.Metadata)
if ttlerr != nil {
return fmt.Errorf("error parsing TTL: %w", ttlerr)
}
if ttl != nil {
ttlSeconds = *ttl
}
var (
queryExpiresAt string
params []any
)
if req.HasETag() {
// Check if the etag is valid
var etag uuid.UUID
etag, err = uuid.Parse(*req.ETag)
if err != nil {
// Return an etag mismatch error right away if the etag is invalid
return state.NewETagError(state.ETagMismatch, err)
}
params = []any{req.Key, value, etag.String()}
} else {
params = []any{req.Key, value}
}
if ttlSeconds > 0 {
queryExpiresAt = "now() + interval '" + strconv.Itoa(ttlSeconds) + " seconds'"
} else {
queryExpiresAt = "NULL"
}
// Sprintf is required for table name because the driver does not substitute parameters for table names.
var query string
if !req.HasETag() {
// We do an upsert in both cases, even when concurrency is first-write, because the row may exist but be expired (and not yet garbage collected)
// The difference is that with concurrency as first-write, we'll update the row only if it's expired
var whereClause string
if req.Options.Concurrency == state.FirstWrite {
whereClause = " WHERE (t.expires_at IS NOT NULL AND t.expires_at < now())"
}
query = `
INSERT INTO ` + p.metadata.TableName(pgTableState) + ` AS t
(key, value, etag, expires_at)
VALUES
($1, $2, gen_random_uuid(),` + queryExpiresAt + `)
ON CONFLICT (key)
DO UPDATE SET
value = $2,
updated_at = now(),
etag = gen_random_uuid(),
expires_at = ` + queryExpiresAt + whereClause
} else {
// When an etag is provided do an update - no insert.
query = `
UPDATE ` + p.metadata.TableName(pgTableState) + `
SET
value = $2,
updated_at = now(),
etag = gen_random_uuid(),
expires_at = ` + queryExpiresAt + `
WHERE
key = $1
AND etag = $3
AND (expires_at IS NULL OR expires_at >= now());`
}
result, err := db.Exec(parentCtx, query, params...)
if err != nil {
return err
}
if result.RowsAffected() != 1 {
if req.HasETag() {
return state.NewETagError(state.ETagMismatch, nil)
}
return errors.New("no item was updated")
}
return nil
}
// Get returns data from the database. If data does not exist for the key an empty state.GetResponse will be returned.
func (p *PostgreSQL) Get(parentCtx context.Context, req *state.GetRequest) (*state.GetResponse, error) {
if req.Key == "" {
return nil, errors.New("missing key in get operation")
}
var (
value []byte
etag *string
expireTime *time.Time
)
query := `
SELECT
value, etag, expires_at
FROM ` + p.metadata.TableName(pgTableState) + `
WHERE
key = $1
AND (expires_at IS NULL OR expires_at >= now())`
ctx, cancel := context.WithTimeout(parentCtx, p.metadata.Timeout)
defer cancel()
row := p.db.QueryRow(ctx, query, req.Key)
err := row.Scan(&value, &etag, &expireTime)
if err != nil {
// If no rows exist, return an empty response, otherwise return the error.
if errors.Is(err, pgx.ErrNoRows) {
return &state.GetResponse{}, nil
}
return nil, err
}
resp := &state.GetResponse{
Data: value,
ETag: etag,
}
if expireTime != nil {
resp.Metadata = map[string]string{
state.GetRespMetaKeyTTLExpireTime: expireTime.UTC().Format(time.RFC3339),
}
}
return resp, nil
}
func (p *PostgreSQL) BulkGet(parentCtx context.Context, req []state.GetRequest, _ state.BulkGetOpts) ([]state.BulkGetResponse, error) {
if len(req) == 0 {
return []state.BulkGetResponse{}, nil
}
// Get all keys
keys := make([]string, len(req))
for i, r := range req {
keys[i] = r.Key
}
// Execute the query
query := `
SELECT
key, value, etag, expires_at
FROM ` + p.metadata.TableName(pgTableState) + `
WHERE
key = ANY($1)
AND (expires_at IS NULL OR expires_at >= now())`
ctx, cancel := context.WithTimeout(parentCtx, p.metadata.Timeout)
defer cancel()
rows, err := p.db.Query(ctx, query, keys)
if err != nil {
return nil, err
}
// Scan all rows
var n int
res := make([]state.BulkGetResponse, len(req))
foundKeys := make(map[string]struct{}, len(req))
for rows.Next() {
if n >= len(req) {
// Sanity check to prevent panics, which should never happen
return nil, fmt.Errorf("query returned more records than expected (expected %d)", len(req))
}
r := state.BulkGetResponse{}
var expireTime *time.Time
err = rows.Scan(&r.Key, &r.Data, &r.ETag, &expireTime)
if err != nil {
r.Error = err.Error()
}
if expireTime != nil {
r.Metadata = map[string]string{
state.GetRespMetaKeyTTLExpireTime: expireTime.UTC().Format(time.RFC3339),
}
}
res[n] = r
foundKeys[r.Key] = struct{}{}
n++
}
// Populate missing keys with empty values
// This is to ensure consistency with the other state stores that implement BulkGet as a loop over Get, and with the Get method
if len(foundKeys) < len(req) {
var ok bool
for _, r := range req {
_, ok = foundKeys[r.Key]
if !ok {
if n >= len(req) {
// Sanity check to prevent panics, which should never happen
return nil, fmt.Errorf("query returned more records than expected (expected %d)", len(req))
}
res[n] = state.BulkGetResponse{
Key: r.Key,
}
n++
}
}
}
return res[:n], nil
}
// Delete removes an item from the state store.
func (p *PostgreSQL) Delete(ctx context.Context, req *state.DeleteRequest) error {
if req == nil {
return errors.New("request object is nil")
}
return p.doDelete(ctx, p.db, *req)
}
func (p *PostgreSQL) doDelete(parentCtx context.Context, db pginterfaces.DBQuerier, req state.DeleteRequest) (err error) {
if req.Key == "" {
return errors.New("missing key in delete operation")
}
ctx, cancel := context.WithTimeout(parentCtx, p.metadata.Timeout)
defer cancel()
var result pgconn.CommandTag
if req.HasETag() {
// Check if the etag is valid
var etag uuid.UUID
etag, err = uuid.Parse(*req.ETag)
if err != nil {
// Return an etag mismatch error right away if the etag is invalid
return state.NewETagError(state.ETagMismatch, err)
}
result, err = db.Exec(ctx, "DELETE FROM "+p.metadata.TableName(pgTableState)+" WHERE key = $1 AND etag = $2", req.Key, etag)
} else {
result, err = db.Exec(ctx, "DELETE FROM "+p.metadata.TableName(pgTableState)+" WHERE key = $1", req.Key)
}
if err != nil {
return err
}
rows := result.RowsAffected()
if rows != 1 && req.HasETag() {
return state.NewETagError(state.ETagMismatch, nil)
}
return nil
}
func (p *PostgreSQL) Multi(parentCtx context.Context, request *state.TransactionalStateRequest) error {
if request == nil {
return nil
}
// If there's only 1 operation, skip starting a transaction
switch len(request.Operations) {
case 0:
return nil
case 1:
return p.execMultiOperation(parentCtx, request.Operations[0], p.db)
default:
_, err := pgtransactions.ExecuteInTransaction[struct{}](parentCtx, p.logger, p.db, p.metadata.Timeout, func(ctx context.Context, tx pgx.Tx) (res struct{}, err error) {
for _, op := range request.Operations {
err = p.execMultiOperation(ctx, op, tx)
if err != nil {
return res, err
}
}
return res, nil
})
return err
}
}
func (p *PostgreSQL) execMultiOperation(ctx context.Context, op state.TransactionalStateOperation, db pginterfaces.DBQuerier) error {
switch x := op.(type) {
case state.SetRequest:
return p.doSet(ctx, db, x)
case state.DeleteRequest:
return p.doDelete(ctx, db, x)
default:
return fmt.Errorf("unsupported operation: %s", op.Operation())
}
}
func (p *PostgreSQL) CleanupExpired() error {
if p.gc != nil {
return p.gc.CleanupExpired()
}
return nil
}
// Close implements io.Close.
func (p *PostgreSQL) Close() error {
if p.db != nil {
p.db.Close()
p.db = nil
}
if p.gc != nil {
return p.gc.Close()
}
return nil
}
// GetCleanupInterval returns the cleanupInterval property.
// This is primarily used for tests.
func (p *PostgreSQL) GetCleanupInterval() *time.Duration {
return p.metadata.CleanupInterval
}
func (p *PostgreSQL) GetComponentMetadata() (metadataInfo metadata.MetadataMap) {
metadataStruct := pgMetadata{}
metadata.GetMetadataInfoFromStructType(reflect.TypeOf(metadataStruct), &metadataInfo, metadata.StateStoreType)
return
}
func (p *PostgreSQLDeleteWithPrefix) DeleteWithPrefix(ctx context.Context, req state.DeleteWithPrefixRequest) (state.DeleteWithPrefixResponse, error) {
err := req.Validate()
if err != nil {
return state.DeleteWithPrefixResponse{}, err
}
ctx, cancel := context.WithTimeout(ctx, p.metadata.Timeout)
defer cancel()
// Trim the trailing "||" from the prefix
result, err := p.db.Exec(ctx, "DELETE FROM "+p.metadata.TableName(pgTableState)+" WHERE "+p.metadata.FunctionName(pgFunctionKeyPrefix)+`("key") = $1`, strings.TrimSuffix(req.Prefix, "||"))
if err != nil {
return state.DeleteWithPrefixResponse{}, err
}
return state.DeleteWithPrefixResponse{
Count: result.RowsAffected(),
}, nil
}
// Compile-time interface assertions
var (
_ state.Store = (*PostgreSQL)(nil)
_ state.TransactionalStore = (*PostgreSQL)(nil)
_ state.BulkStore = (*PostgreSQL)(nil)
_ state.Store = (*PostgreSQLDeleteWithPrefix)(nil)
_ state.TransactionalStore = (*PostgreSQLDeleteWithPrefix)(nil)
_ state.BulkStore = (*PostgreSQLDeleteWithPrefix)(nil)
_ state.DeleteWithPrefix = (*PostgreSQLDeleteWithPrefix)(nil)
)