forked from apache/cassandra-gocql-driver
-
Notifications
You must be signed in to change notification settings - Fork 59
/
metadata_scylla.go
829 lines (710 loc) · 23.5 KB
/
metadata_scylla.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
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
//go:build !cassandra || scylla
// +build !cassandra scylla
// Copyright (c) 2015 The gocql Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package gocql
import (
"fmt"
"strings"
"sync"
)
// schema metadata for a keyspace
type KeyspaceMetadata struct {
Name string
DurableWrites bool
StrategyClass string
StrategyOptions map[string]interface{}
Tables map[string]*TableMetadata
Functions map[string]*FunctionMetadata
Aggregates map[string]*AggregateMetadata
Types map[string]*TypeMetadata
Indexes map[string]*IndexMetadata
Views map[string]*ViewMetadata
CreateStmts string
}
// schema metadata for a table (a.k.a. column family)
type TableMetadata struct {
Keyspace string
Name string
PartitionKey []*ColumnMetadata
ClusteringColumns []*ColumnMetadata
Columns map[string]*ColumnMetadata
OrderedColumns []string
Options TableMetadataOptions
Flags []string
Extensions map[string]interface{}
}
type TableMetadataOptions struct {
BloomFilterFpChance float64
Caching map[string]string
Comment string
Compaction map[string]string
Compression map[string]string
CrcCheckChance float64
DcLocalReadRepairChance float64
DefaultTimeToLive int
GcGraceSeconds int
MaxIndexInterval int
MemtableFlushPeriodInMs int
MinIndexInterval int
ReadRepairChance float64
SpeculativeRetry string
CDC map[string]string
InMemory bool
Partitioner string
Version string
}
type ViewMetadata struct {
KeyspaceName string
ViewName string
BaseTableID string
BaseTableName string
ID string
IncludeAllColumns bool
Columns map[string]*ColumnMetadata
OrderedColumns []string
PartitionKey []*ColumnMetadata
ClusteringColumns []*ColumnMetadata
WhereClause string
Options TableMetadataOptions
Extensions map[string]interface{}
}
// schema metadata for a column
type ColumnMetadata struct {
Keyspace string
Table string
Name string
ComponentIndex int
Kind ColumnKind
Type string
ClusteringOrder string
Order ColumnOrder
Index ColumnIndexMetadata
}
// FunctionMetadata holds metadata for function constructs
type FunctionMetadata struct {
Keyspace string
Name string
ArgumentTypes []string
ArgumentNames []string
Body string
CalledOnNullInput bool
Language string
ReturnType string
}
// AggregateMetadata holds metadata for aggregate constructs
type AggregateMetadata struct {
Keyspace string
Name string
ArgumentTypes []string
FinalFunc FunctionMetadata
InitCond string
ReturnType string
StateFunc FunctionMetadata
StateType string
stateFunc string
finalFunc string
}
// TypeMetadata holds the metadata for views.
type TypeMetadata struct {
Keyspace string
Name string
FieldNames []string
FieldTypes []string
}
type IndexMetadata struct {
Name string
KeyspaceName string
TableName string
Kind string
Options map[string]string
}
// TabletsMetadata holds metadata for tablet list
// Experimental, this interface and use may change
type TabletsMetadata struct {
Tablets []*TabletMetadata
}
// TabletMetadata holds metadata for single tablet
// Experimental, this interface and use may change
type TabletMetadata struct {
KeyspaceName string
TableName string
FirstToken int64
LastToken int64
Replicas []ReplicaMetadata
}
// TabletMetadata holds metadata for single replica
// Experimental, this interface and use may change
type ReplicaMetadata struct {
HostId UUID
ShardId int
}
const (
IndexKindCustom = "CUSTOM"
)
const (
TableFlagDense = "dense"
TableFlagSuper = "super"
TableFlagCompound = "compound"
)
// the ordering of the column with regard to its comparator
type ColumnOrder bool
const (
ASC ColumnOrder = false
DESC = true
)
type ColumnIndexMetadata struct {
Name string
Type string
Options map[string]interface{}
}
type ColumnKind int
const (
ColumnUnkownKind ColumnKind = iota
ColumnPartitionKey
ColumnClusteringKey
ColumnRegular
ColumnCompact
ColumnStatic
)
func (c ColumnKind) String() string {
switch c {
case ColumnPartitionKey:
return "partition_key"
case ColumnClusteringKey:
return "clustering_key"
case ColumnRegular:
return "regular"
case ColumnCompact:
return "compact"
case ColumnStatic:
return "static"
default:
return fmt.Sprintf("unknown_column_%d", c)
}
}
func (c *ColumnKind) UnmarshalCQL(typ TypeInfo, p []byte) error {
if typ.Type() != TypeVarchar {
return unmarshalErrorf("unable to marshall %s into ColumnKind, expected Varchar", typ)
}
kind, err := columnKindFromSchema(string(p))
if err != nil {
return err
}
*c = kind
return nil
}
func columnKindFromSchema(kind string) (ColumnKind, error) {
switch kind {
case "partition_key":
return ColumnPartitionKey, nil
case "clustering_key", "clustering":
return ColumnClusteringKey, nil
case "regular":
return ColumnRegular, nil
case "compact_value":
return ColumnCompact, nil
case "static":
return ColumnStatic, nil
default:
return -1, fmt.Errorf("unknown column kind: %q", kind)
}
}
// queries the cluster for schema information for a specific keyspace and for tablets
type schemaDescriber struct {
session *Session
mu sync.Mutex
cache map[string]*KeyspaceMetadata
// Experimental, this interface and use may change
tabletsCache *TabletsMetadata
}
// creates a session bound schema describer which will query and cache
// keyspace metadata and tablets metadata
func newSchemaDescriber(session *Session) *schemaDescriber {
return &schemaDescriber{
session: session,
cache: map[string]*KeyspaceMetadata{},
tabletsCache: &TabletsMetadata{},
}
}
// returns the cached KeyspaceMetadata held by the describer for the named
// keyspace.
func (s *schemaDescriber) getSchema(keyspaceName string) (*KeyspaceMetadata, error) {
s.mu.Lock()
defer s.mu.Unlock()
metadata, found := s.cache[keyspaceName]
if !found {
// refresh the cache for this keyspace
err := s.refreshSchema(keyspaceName)
if err != nil {
return nil, err
}
metadata = s.cache[keyspaceName]
}
return metadata, nil
}
// Experimental, this interface and use may change
func (s *schemaDescriber) getTabletsSchema() *TabletsMetadata {
s.mu.Lock()
defer s.mu.Unlock()
metadata := s.tabletsCache
return metadata
}
// Experimental, this interface and use may change
func (s *schemaDescriber) refreshTabletsSchema() {
tablets := s.session.getTablets()
s.tabletsCache.Tablets = []*TabletMetadata{}
for _, tablet := range tablets {
t := &TabletMetadata{}
t.KeyspaceName = tablet.KeyspaceName()
t.TableName = tablet.TableName()
t.FirstToken = tablet.FirstToken()
t.LastToken = tablet.LastToken()
t.Replicas = []ReplicaMetadata{}
for _, replica := range tablet.Replicas() {
t.Replicas = append(t.Replicas, ReplicaMetadata{replica.hostId, replica.shardId})
}
s.tabletsCache.Tablets = append(s.tabletsCache.Tablets, t)
}
}
// clears the already cached keyspace metadata
func (s *schemaDescriber) clearSchema(keyspaceName string) {
s.mu.Lock()
defer s.mu.Unlock()
delete(s.cache, keyspaceName)
}
// forcibly updates the current KeyspaceMetadata held by the schema describer
// for a given named keyspace.
func (s *schemaDescriber) refreshSchema(keyspaceName string) error {
var err error
// query the system keyspace for schema data
// TODO retrieve concurrently
keyspace, err := getKeyspaceMetadata(s.session, keyspaceName)
if err != nil {
return err
}
tables, err := getTableMetadata(s.session, keyspaceName)
if err != nil {
return err
}
columns, err := getColumnMetadata(s.session, keyspaceName)
if err != nil {
return err
}
functions, err := getFunctionsMetadata(s.session, keyspaceName)
if err != nil {
return err
}
aggregates, err := getAggregatesMetadata(s.session, keyspaceName)
if err != nil {
return err
}
types, err := getTypeMetadata(s.session, keyspaceName)
if err != nil {
return err
}
indexes, err := getIndexMetadata(s.session, keyspaceName)
if err != nil {
return err
}
views, err := getViewMetadata(s.session, keyspaceName)
if err != nil {
return err
}
createStmts, err := getCreateStatements(s.session, keyspaceName)
if err != nil {
return err
}
// organize the schema data
compileMetadata(keyspace, tables, columns, functions, aggregates, types, indexes, views, createStmts)
// update the cache
s.cache[keyspaceName] = keyspace
return nil
}
// "compiles" derived information about keyspace, table, and column metadata
// for a keyspace from the basic queried metadata objects returned by
// getKeyspaceMetadata, getTableMetadata, and getColumnMetadata respectively;
// Links the metadata objects together and derives the column composition of
// the partition key and clustering key for a table.
func compileMetadata(
keyspace *KeyspaceMetadata,
tables []TableMetadata,
columns []ColumnMetadata,
functions []FunctionMetadata,
aggregates []AggregateMetadata,
types []TypeMetadata,
indexes []IndexMetadata,
views []ViewMetadata,
createStmts []byte,
) {
keyspace.Tables = make(map[string]*TableMetadata)
for i := range tables {
tables[i].Columns = make(map[string]*ColumnMetadata)
keyspace.Tables[tables[i].Name] = &tables[i]
}
keyspace.Functions = make(map[string]*FunctionMetadata, len(functions))
for i := range functions {
keyspace.Functions[functions[i].Name] = &functions[i]
}
keyspace.Aggregates = make(map[string]*AggregateMetadata, len(aggregates))
for _, aggregate := range aggregates {
aggregate.FinalFunc = *keyspace.Functions[aggregate.finalFunc]
aggregate.StateFunc = *keyspace.Functions[aggregate.stateFunc]
keyspace.Aggregates[aggregate.Name] = &aggregate
}
keyspace.Types = make(map[string]*TypeMetadata, len(types))
for i := range types {
keyspace.Types[types[i].Name] = &types[i]
}
keyspace.Indexes = make(map[string]*IndexMetadata, len(indexes))
for i := range indexes {
keyspace.Indexes[indexes[i].Name] = &indexes[i]
}
keyspace.Views = make(map[string]*ViewMetadata, len(views))
for i := range views {
v := &views[i]
if _, ok := keyspace.Indexes[strings.TrimSuffix(v.ViewName, "_index")]; ok {
continue
}
v.Columns = make(map[string]*ColumnMetadata)
keyspace.Views[v.ViewName] = v
}
// add columns from the schema data
for i := range columns {
col := &columns[i]
col.Order = ASC
if col.ClusteringOrder == "desc" {
col.Order = DESC
}
table, ok := keyspace.Tables[col.Table]
if !ok {
view, ok := keyspace.Views[col.Table]
if !ok {
// if the schema is being updated we will race between seeing
// the metadata be complete. Potentially we should check for
// schema versions before and after reading the metadata and
// if they dont match try again.
continue
}
view.Columns[col.Name] = col
view.OrderedColumns = append(view.OrderedColumns, col.Name)
continue
}
table.Columns[col.Name] = col
table.OrderedColumns = append(table.OrderedColumns, col.Name)
}
for i := range tables {
t := &tables[i]
t.PartitionKey, t.ClusteringColumns, t.OrderedColumns = compileColumns(t.Columns, t.OrderedColumns)
}
for i := range views {
v := &views[i]
v.PartitionKey, v.ClusteringColumns, v.OrderedColumns = compileColumns(v.Columns, v.OrderedColumns)
}
keyspace.CreateStmts = string(createStmts)
}
func compileColumns(columns map[string]*ColumnMetadata, orderedColumns []string) (
partitionKey, clusteringColumns []*ColumnMetadata, sortedColumns []string) {
clusteringColumnCount := componentColumnCountOfType(columns, ColumnClusteringKey)
clusteringColumns = make([]*ColumnMetadata, clusteringColumnCount)
partitionKeyCount := componentColumnCountOfType(columns, ColumnPartitionKey)
partitionKey = make([]*ColumnMetadata, partitionKeyCount)
var otherColumns []string
for _, columnName := range orderedColumns {
column := columns[columnName]
if column.Kind == ColumnPartitionKey {
partitionKey[column.ComponentIndex] = column
} else if column.Kind == ColumnClusteringKey {
clusteringColumns[column.ComponentIndex] = column
} else {
otherColumns = append(otherColumns, columnName)
}
}
sortedColumns = orderedColumns[:0]
for _, pk := range partitionKey {
sortedColumns = append(sortedColumns, pk.Name)
}
for _, ck := range clusteringColumns {
sortedColumns = append(sortedColumns, ck.Name)
}
for _, oc := range otherColumns {
sortedColumns = append(sortedColumns, oc)
}
return
}
// returns the count of coluns with the given "kind" value.
func componentColumnCountOfType(columns map[string]*ColumnMetadata, kind ColumnKind) int {
maxComponentIndex := -1
for _, column := range columns {
if column.Kind == kind && column.ComponentIndex > maxComponentIndex {
maxComponentIndex = column.ComponentIndex
}
}
return maxComponentIndex + 1
}
// query for keyspace metadata in the system_schema.keyspaces
func getKeyspaceMetadata(session *Session, keyspaceName string) (*KeyspaceMetadata, error) {
if !session.useSystemSchema {
return nil, ErrKeyspaceDoesNotExist
}
keyspace := &KeyspaceMetadata{Name: keyspaceName}
const stmt = `
SELECT durable_writes, replication
FROM system_schema.keyspaces
WHERE keyspace_name = ?`
var replication map[string]string
iter := session.control.query(stmt+session.usingTimeoutClause, keyspaceName)
if iter.NumRows() == 0 {
return nil, ErrKeyspaceDoesNotExist
}
iter.Scan(&keyspace.DurableWrites, &replication)
err := iter.Close()
if err != nil {
return nil, fmt.Errorf("error querying keyspace schema: %v", err)
}
keyspace.StrategyClass = replication["class"]
delete(replication, "class")
keyspace.StrategyOptions = make(map[string]interface{}, len(replication))
for k, v := range replication {
keyspace.StrategyOptions[k] = v
}
return keyspace, nil
}
// query for table metadata in the system_schema.tables and system_schema.scylla_tables
func getTableMetadata(session *Session, keyspaceName string) ([]TableMetadata, error) {
if !session.useSystemSchema {
return nil, nil
}
stmt := `SELECT * FROM system_schema.tables WHERE keyspace_name = ?`
iter := session.control.query(stmt+session.usingTimeoutClause, keyspaceName)
var tables []TableMetadata
table := TableMetadata{Keyspace: keyspaceName}
for iter.MapScan(map[string]interface{}{
"table_name": &table.Name,
"bloom_filter_fp_chance": &table.Options.BloomFilterFpChance,
"caching": &table.Options.Caching,
"comment": &table.Options.Comment,
"compaction": &table.Options.Compaction,
"compression": &table.Options.Compression,
"crc_check_chance": &table.Options.CrcCheckChance,
"default_time_to_live": &table.Options.DefaultTimeToLive,
"gc_grace_seconds": &table.Options.GcGraceSeconds,
"max_index_interval": &table.Options.MaxIndexInterval,
"memtable_flush_period_in_ms": &table.Options.MemtableFlushPeriodInMs,
"min_index_interval": &table.Options.MinIndexInterval,
"speculative_retry": &table.Options.SpeculativeRetry,
"flags": &table.Flags,
"extensions": &table.Extensions,
}) {
tables = append(tables, table)
table = TableMetadata{Keyspace: keyspaceName}
}
err := iter.Close()
if err != nil && err != ErrNotFound {
return nil, fmt.Errorf("error querying table schema: %v", err)
}
stmt = `SELECT * FROM system_schema.scylla_tables WHERE keyspace_name = ? AND table_name = ?`
for i, t := range tables {
iter := session.control.query(stmt+session.usingTimeoutClause, keyspaceName, t.Name)
table := TableMetadata{}
if iter.MapScan(map[string]interface{}{
"cdc": &table.Options.CDC,
"in_memory": &table.Options.InMemory,
"partitioner": &table.Options.Partitioner,
"version": &table.Options.Version,
}) {
tables[i].Options.CDC = table.Options.CDC
tables[i].Options.Version = table.Options.Version
tables[i].Options.Partitioner = table.Options.Partitioner
tables[i].Options.InMemory = table.Options.InMemory
}
if err := iter.Close(); err != nil && err != ErrNotFound {
return nil, fmt.Errorf("error querying scylla table schema: %v", err)
}
}
return tables, nil
}
// query for column metadata in the system_schema.columns
func getColumnMetadata(session *Session, keyspaceName string) ([]ColumnMetadata, error) {
const stmt = `SELECT * FROM system_schema.columns WHERE keyspace_name = ?`
var columns []ColumnMetadata
iter := session.control.query(stmt+session.usingTimeoutClause, keyspaceName)
column := ColumnMetadata{Keyspace: keyspaceName}
for iter.MapScan(map[string]interface{}{
"table_name": &column.Table,
"column_name": &column.Name,
"clustering_order": &column.ClusteringOrder,
"type": &column.Type,
"kind": &column.Kind,
"position": &column.ComponentIndex,
}) {
columns = append(columns, column)
column = ColumnMetadata{Keyspace: keyspaceName}
}
if err := iter.Close(); err != nil && err != ErrNotFound {
return nil, fmt.Errorf("error querying column schema: %v", err)
}
return columns, nil
}
// query for type metadata in the system_schema.types
func getTypeMetadata(session *Session, keyspaceName string) ([]TypeMetadata, error) {
if !session.useSystemSchema {
return nil, nil
}
stmt := `SELECT * FROM system_schema.types WHERE keyspace_name = ?`
iter := session.control.query(stmt+session.usingTimeoutClause, keyspaceName)
var types []TypeMetadata
tm := TypeMetadata{Keyspace: keyspaceName}
for iter.MapScan(map[string]interface{}{
"type_name": &tm.Name,
"field_names": &tm.FieldNames,
"field_types": &tm.FieldTypes,
}) {
types = append(types, tm)
tm = TypeMetadata{Keyspace: keyspaceName}
}
if err := iter.Close(); err != nil {
return nil, err
}
return types, nil
}
// query for function metadata in the system_schema.functions
func getFunctionsMetadata(session *Session, keyspaceName string) ([]FunctionMetadata, error) {
if !session.hasAggregatesAndFunctions || !session.useSystemSchema {
return nil, nil
}
stmt := `SELECT * FROM system_schema.functions WHERE keyspace_name = ?`
var functions []FunctionMetadata
function := FunctionMetadata{Keyspace: keyspaceName}
iter := session.control.query(stmt+session.usingTimeoutClause, keyspaceName)
for iter.MapScan(map[string]interface{}{
"function_name": &function.Name,
"argument_types": &function.ArgumentTypes,
"argument_names": &function.ArgumentNames,
"body": &function.Body,
"called_on_null_input": &function.CalledOnNullInput,
"language": &function.Language,
"return_type": &function.ReturnType,
}) {
functions = append(functions, function)
function = FunctionMetadata{Keyspace: keyspaceName}
}
if err := iter.Close(); err != nil {
return nil, err
}
return functions, nil
}
// query for aggregate metadata in the system_schema.aggregates
func getAggregatesMetadata(session *Session, keyspaceName string) ([]AggregateMetadata, error) {
if !session.hasAggregatesAndFunctions || !session.useSystemSchema {
return nil, nil
}
const stmt = `SELECT * FROM system_schema.aggregates WHERE keyspace_name = ?`
var aggregates []AggregateMetadata
aggregate := AggregateMetadata{Keyspace: keyspaceName}
iter := session.control.query(stmt+session.usingTimeoutClause, keyspaceName)
for iter.MapScan(map[string]interface{}{
"aggregate_name": &aggregate.Name,
"argument_types": &aggregate.ArgumentTypes,
"final_func": &aggregate.finalFunc,
"initcond": &aggregate.InitCond,
"return_type": &aggregate.ReturnType,
"state_func": &aggregate.stateFunc,
"state_type": &aggregate.StateType,
}) {
aggregates = append(aggregates, aggregate)
aggregate = AggregateMetadata{Keyspace: keyspaceName}
}
if err := iter.Close(); err != nil {
return nil, err
}
return aggregates, nil
}
// query for index metadata in the system_schema.indexes
func getIndexMetadata(session *Session, keyspaceName string) ([]IndexMetadata, error) {
if !session.useSystemSchema {
return nil, nil
}
const stmt = `SELECT * FROM system_schema.indexes WHERE keyspace_name = ?`
var indexes []IndexMetadata
index := IndexMetadata{}
iter := session.control.query(stmt+session.usingTimeoutClause, keyspaceName)
for iter.MapScan(map[string]interface{}{
"index_name": &index.Name,
"keyspace_name": &index.KeyspaceName,
"table_name": &index.TableName,
"kind": &index.Kind,
"options": &index.Options,
}) {
indexes = append(indexes, index)
index = IndexMetadata{}
}
if err := iter.Close(); err != nil {
return nil, err
}
return indexes, nil
}
// get create statements for the keyspace
func getCreateStatements(session *Session, keyspaceName string) ([]byte, error) {
if !session.useSystemSchema {
return nil, nil
}
iter := session.control.query(fmt.Sprintf(`DESCRIBE KEYSPACE %s WITH INTERNALS`, keyspaceName))
var createStatements []string
var stmt string
for iter.Scan(nil, nil, nil, &stmt) {
if stmt == "" {
continue
}
createStatements = append(createStatements, stmt)
}
if err := iter.Close(); err != nil {
if errFrame, ok := err.(errorFrame); ok && errFrame.code == ErrCodeSyntax {
// DESCRIBE KEYSPACE is not supported on older versions of Cassandra and Scylla
// For such case schema statement is going to be recreated on the client side
return nil, nil
}
return nil, fmt.Errorf("error querying keyspace schema: %v", err)
}
return []byte(strings.Join(createStatements, "\n")), nil
}
// query for view metadata in the system_schema.views
func getViewMetadata(session *Session, keyspaceName string) ([]ViewMetadata, error) {
if !session.useSystemSchema {
return nil, nil
}
stmt := `SELECT * FROM system_schema.views WHERE keyspace_name = ?`
iter := session.control.query(stmt+session.usingTimeoutClause, keyspaceName)
var views []ViewMetadata
view := ViewMetadata{KeyspaceName: keyspaceName}
for iter.MapScan(map[string]interface{}{
"id": &view.ID,
"view_name": &view.ViewName,
"base_table_id": &view.BaseTableID,
"base_table_name": &view.BaseTableName,
"include_all_columns": &view.IncludeAllColumns,
"where_clause": &view.WhereClause,
"bloom_filter_fp_chance": &view.Options.BloomFilterFpChance,
"caching": &view.Options.Caching,
"comment": &view.Options.Comment,
"compaction": &view.Options.Compaction,
"compression": &view.Options.Compression,
"crc_check_chance": &view.Options.CrcCheckChance,
"default_time_to_live": &view.Options.DefaultTimeToLive,
"gc_grace_seconds": &view.Options.GcGraceSeconds,
"max_index_interval": &view.Options.MaxIndexInterval,
"memtable_flush_period_in_ms": &view.Options.MemtableFlushPeriodInMs,
"min_index_interval": &view.Options.MinIndexInterval,
"speculative_retry": &view.Options.SpeculativeRetry,
"extensions": &view.Extensions,
}) {
views = append(views, view)
view = ViewMetadata{KeyspaceName: keyspaceName}
}
err := iter.Close()
if err != nil && err != ErrNotFound {
return nil, fmt.Errorf("error querying view schema: %v", err)
}
return views, nil
}