-
Notifications
You must be signed in to change notification settings - Fork 49
/
config.go
856 lines (753 loc) · 27.3 KB
/
config.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
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
package parquet
import (
"fmt"
"math"
"runtime/debug"
"strings"
"sync"
"github.com/parquet-go/parquet-go/compress"
)
// ReadMode is an enum that is used to configure the way that a File reads pages.
type ReadMode int
const (
ReadModeSync ReadMode = iota // ReadModeSync reads pages synchronously on demand (Default).
ReadModeAsync // ReadModeAsync reads pages asynchronously in the background.
)
const (
DefaultColumnIndexSizeLimit = 16
DefaultColumnBufferCapacity = 16 * 1024
DefaultPageBufferSize = 256 * 1024
DefaultWriteBufferSize = 32 * 1024
DefaultDataPageVersion = 2
DefaultDataPageStatistics = false
DefaultSkipPageIndex = false
DefaultSkipBloomFilters = false
DefaultMaxRowsPerRowGroup = math.MaxInt64
DefaultReadMode = ReadModeSync
)
const (
parquetGoModulePath = "github.com/parquet-go/parquet-go"
)
var (
defaultCreatedByInfo string
defaultCreatedByOnce sync.Once
)
func defaultCreatedBy() string {
defaultCreatedByOnce.Do(func() {
createdBy := parquetGoModulePath
build, ok := debug.ReadBuildInfo()
if ok {
for _, mod := range build.Deps {
if mod.Replace == nil && mod.Path == parquetGoModulePath {
semver, _, buildsha := parseModuleVersion(mod.Version)
createdBy = formatCreatedBy(createdBy, semver, buildsha)
break
}
}
}
defaultCreatedByInfo = createdBy
})
return defaultCreatedByInfo
}
func parseModuleVersion(version string) (semver, datetime, buildsha string) {
semver, version = splitModuleVersion(version)
datetime, version = splitModuleVersion(version)
buildsha, _ = splitModuleVersion(version)
semver = strings.TrimPrefix(semver, "v")
return
}
func splitModuleVersion(s string) (head, tail string) {
if i := strings.IndexByte(s, '-'); i < 0 {
head = s
} else {
head, tail = s[:i], s[i+1:]
}
return
}
func formatCreatedBy(application, version, build string) string {
return application + " version " + version + "(build " + build + ")"
}
// The FileConfig type carries configuration options for parquet files.
//
// FileConfig implements the FileOption interface so it can be used directly
// as argument to the OpenFile function when needed, for example:
//
// f, err := parquet.OpenFile(reader, size, &parquet.FileConfig{
// SkipPageIndex: true,
// SkipBloomFilters: true,
// ReadMode: ReadModeAsync,
// })
type FileConfig struct {
SkipPageIndex bool
SkipBloomFilters bool
ReadBufferSize int
ReadMode ReadMode
Schema *Schema
}
// DefaultFileConfig returns a new FileConfig value initialized with the
// default file configuration.
func DefaultFileConfig() *FileConfig {
return &FileConfig{
SkipPageIndex: DefaultSkipPageIndex,
SkipBloomFilters: DefaultSkipBloomFilters,
ReadBufferSize: defaultReadBufferSize,
ReadMode: DefaultReadMode,
Schema: nil,
}
}
// NewFileConfig constructs a new file configuration applying the options passed
// as arguments.
//
// The function returns an non-nil error if some of the options carried invalid
// configuration values.
func NewFileConfig(options ...FileOption) (*FileConfig, error) {
config := DefaultFileConfig()
config.Apply(options...)
return config, config.Validate()
}
// Apply applies the given list of options to c.
func (c *FileConfig) Apply(options ...FileOption) {
for _, opt := range options {
opt.ConfigureFile(c)
}
}
// ConfigureFile applies configuration options from c to config.
func (c *FileConfig) ConfigureFile(config *FileConfig) {
*config = FileConfig{
SkipPageIndex: c.SkipPageIndex,
SkipBloomFilters: c.SkipBloomFilters,
ReadBufferSize: coalesceInt(c.ReadBufferSize, config.ReadBufferSize),
ReadMode: ReadMode(coalesceInt(int(c.ReadMode), int(config.ReadMode))),
Schema: coalesceSchema(c.Schema, config.Schema),
}
}
// Validate returns a non-nil error if the configuration of c is invalid.
func (c *FileConfig) Validate() error {
return nil
}
// The ReaderConfig type carries configuration options for parquet readers.
//
// ReaderConfig implements the ReaderOption interface so it can be used directly
// as argument to the NewReader function when needed, for example:
//
// reader := parquet.NewReader(output, schema, &parquet.ReaderConfig{
// // ...
// })
type ReaderConfig struct {
Schema *Schema
}
// DefaultReaderConfig returns a new ReaderConfig value initialized with the
// default reader configuration.
func DefaultReaderConfig() *ReaderConfig {
return &ReaderConfig{}
}
// NewReaderConfig constructs a new reader configuration applying the options
// passed as arguments.
//
// The function returns an non-nil error if some of the options carried invalid
// configuration values.
func NewReaderConfig(options ...ReaderOption) (*ReaderConfig, error) {
config := DefaultReaderConfig()
config.Apply(options...)
return config, config.Validate()
}
// Apply applies the given list of options to c.
func (c *ReaderConfig) Apply(options ...ReaderOption) {
for _, opt := range options {
opt.ConfigureReader(c)
}
}
// ConfigureReader applies configuration options from c to config.
func (c *ReaderConfig) ConfigureReader(config *ReaderConfig) {
*config = ReaderConfig{
Schema: coalesceSchema(c.Schema, config.Schema),
}
}
// Validate returns a non-nil error if the configuration of c is invalid.
func (c *ReaderConfig) Validate() error {
return nil
}
// The WriterConfig type carries configuration options for parquet writers.
//
// WriterConfig implements the WriterOption interface so it can be used directly
// as argument to the NewWriter function when needed, for example:
//
// writer := parquet.NewWriter(output, schema, &parquet.WriterConfig{
// CreatedBy: "my test program",
// })
type WriterConfig struct {
CreatedBy string
ColumnPageBuffers BufferPool
ColumnIndexSizeLimit int
PageBufferSize int
WriteBufferSize int
DataPageVersion int
DataPageStatistics bool
MaxRowsPerRowGroup int64
KeyValueMetadata map[string]string
Schema *Schema
BloomFilters []BloomFilterColumn
Compression compress.Codec
Sorting SortingConfig
SkipPageBounds [][]string
}
// DefaultWriterConfig returns a new WriterConfig value initialized with the
// default writer configuration.
func DefaultWriterConfig() *WriterConfig {
return &WriterConfig{
CreatedBy: defaultCreatedBy(),
ColumnPageBuffers: &defaultColumnBufferPool,
ColumnIndexSizeLimit: DefaultColumnIndexSizeLimit,
PageBufferSize: DefaultPageBufferSize,
WriteBufferSize: DefaultWriteBufferSize,
DataPageVersion: DefaultDataPageVersion,
DataPageStatistics: DefaultDataPageStatistics,
MaxRowsPerRowGroup: DefaultMaxRowsPerRowGroup,
Sorting: SortingConfig{
SortingBuffers: &defaultSortingBufferPool,
},
}
}
// NewWriterConfig constructs a new writer configuration applying the options
// passed as arguments.
//
// The function returns an non-nil error if some of the options carried invalid
// configuration values.
func NewWriterConfig(options ...WriterOption) (*WriterConfig, error) {
config := DefaultWriterConfig()
config.Apply(options...)
return config, config.Validate()
}
// Apply applies the given list of options to c.
func (c *WriterConfig) Apply(options ...WriterOption) {
for _, opt := range options {
opt.ConfigureWriter(c)
}
}
// ConfigureWriter applies configuration options from c to config.
func (c *WriterConfig) ConfigureWriter(config *WriterConfig) {
keyValueMetadata := config.KeyValueMetadata
if len(c.KeyValueMetadata) > 0 {
if keyValueMetadata == nil {
keyValueMetadata = make(map[string]string, len(c.KeyValueMetadata))
}
for k, v := range c.KeyValueMetadata {
keyValueMetadata[k] = v
}
}
*config = WriterConfig{
CreatedBy: coalesceString(c.CreatedBy, config.CreatedBy),
ColumnPageBuffers: coalesceBufferPool(c.ColumnPageBuffers, config.ColumnPageBuffers),
ColumnIndexSizeLimit: coalesceInt(c.ColumnIndexSizeLimit, config.ColumnIndexSizeLimit),
PageBufferSize: coalesceInt(c.PageBufferSize, config.PageBufferSize),
WriteBufferSize: coalesceInt(c.WriteBufferSize, config.WriteBufferSize),
DataPageVersion: coalesceInt(c.DataPageVersion, config.DataPageVersion),
DataPageStatistics: coalesceBool(c.DataPageStatistics, config.DataPageStatistics),
MaxRowsPerRowGroup: coalesceInt64(c.MaxRowsPerRowGroup, config.MaxRowsPerRowGroup),
KeyValueMetadata: keyValueMetadata,
Schema: coalesceSchema(c.Schema, config.Schema),
BloomFilters: coalesceBloomFilters(c.BloomFilters, config.BloomFilters),
Compression: coalesceCompression(c.Compression, config.Compression),
Sorting: coalesceSortingConfig(c.Sorting, config.Sorting),
}
}
// Validate returns a non-nil error if the configuration of c is invalid.
func (c *WriterConfig) Validate() error {
const baseName = "parquet.(*WriterConfig)."
return errorInvalidConfiguration(
validateNotNil(baseName+"ColumnPageBuffers", c.ColumnPageBuffers),
validatePositiveInt(baseName+"ColumnIndexSizeLimit", c.ColumnIndexSizeLimit),
validatePositiveInt(baseName+"PageBufferSize", c.PageBufferSize),
validateOneOfInt(baseName+"DataPageVersion", c.DataPageVersion, 1, 2),
c.Sorting.Validate(),
)
}
// The RowGroupConfig type carries configuration options for parquet row groups.
//
// RowGroupConfig implements the RowGroupOption interface so it can be used
// directly as argument to the NewBuffer function when needed, for example:
//
// buffer := parquet.NewBuffer(&parquet.RowGroupConfig{
// ColumnBufferCapacity: 10_000,
// })
type RowGroupConfig struct {
ColumnBufferCapacity int
Schema *Schema
Sorting SortingConfig
}
// DefaultRowGroupConfig returns a new RowGroupConfig value initialized with the
// default row group configuration.
func DefaultRowGroupConfig() *RowGroupConfig {
return &RowGroupConfig{
ColumnBufferCapacity: DefaultColumnBufferCapacity,
Sorting: SortingConfig{
SortingBuffers: &defaultSortingBufferPool,
},
}
}
// NewRowGroupConfig constructs a new row group configuration applying the
// options passed as arguments.
//
// The function returns an non-nil error if some of the options carried invalid
// configuration values.
func NewRowGroupConfig(options ...RowGroupOption) (*RowGroupConfig, error) {
config := DefaultRowGroupConfig()
config.Apply(options...)
return config, config.Validate()
}
// Validate returns a non-nil error if the configuration of c is invalid.
func (c *RowGroupConfig) Validate() error {
const baseName = "parquet.(*RowGroupConfig)."
return errorInvalidConfiguration(
validatePositiveInt(baseName+"ColumnBufferCapacity", c.ColumnBufferCapacity),
c.Sorting.Validate(),
)
}
func (c *RowGroupConfig) Apply(options ...RowGroupOption) {
for _, opt := range options {
opt.ConfigureRowGroup(c)
}
}
func (c *RowGroupConfig) ConfigureRowGroup(config *RowGroupConfig) {
*config = RowGroupConfig{
ColumnBufferCapacity: coalesceInt(c.ColumnBufferCapacity, config.ColumnBufferCapacity),
Schema: coalesceSchema(c.Schema, config.Schema),
Sorting: coalesceSortingConfig(c.Sorting, config.Sorting),
}
}
// The SortingConfig type carries configuration options for parquet row groups.
//
// SortingConfig implements the SortingOption interface so it can be used
// directly as argument to the NewSortingWriter function when needed,
// for example:
//
// buffer := parquet.NewSortingWriter[Row](
// parquet.SortingWriterConfig(
// parquet.DropDuplicatedRows(true),
// ),
// })
type SortingConfig struct {
SortingBuffers BufferPool
SortingColumns []SortingColumn
DropDuplicatedRows bool
}
// DefaultSortingConfig returns a new SortingConfig value initialized with the
// default row group configuration.
func DefaultSortingConfig() *SortingConfig {
return &SortingConfig{
SortingBuffers: &defaultSortingBufferPool,
}
}
// NewSortingConfig constructs a new sorting configuration applying the
// options passed as arguments.
//
// The function returns an non-nil error if some of the options carried invalid
// configuration values.
func NewSortingConfig(options ...SortingOption) (*SortingConfig, error) {
config := DefaultSortingConfig()
config.Apply(options...)
return config, config.Validate()
}
func (c *SortingConfig) Validate() error {
const baseName = "parquet.(*SortingConfig)."
return errorInvalidConfiguration(
validateNotNil(baseName+"SortingBuffers", c.SortingBuffers),
)
}
func (c *SortingConfig) Apply(options ...SortingOption) {
for _, opt := range options {
opt.ConfigureSorting(c)
}
}
func (c *SortingConfig) ConfigureSorting(config *SortingConfig) {
*config = coalesceSortingConfig(*c, *config)
}
// FileOption is an interface implemented by types that carry configuration
// options for parquet files.
type FileOption interface {
ConfigureFile(*FileConfig)
}
// ReaderOption is an interface implemented by types that carry configuration
// options for parquet readers.
type ReaderOption interface {
ConfigureReader(*ReaderConfig)
}
// WriterOption is an interface implemented by types that carry configuration
// options for parquet writers.
type WriterOption interface {
ConfigureWriter(*WriterConfig)
}
// RowGroupOption is an interface implemented by types that carry configuration
// options for parquet row groups.
type RowGroupOption interface {
ConfigureRowGroup(*RowGroupConfig)
}
// SortingOption is an interface implemented by types that carry configuration
// options for parquet sorting writers.
type SortingOption interface {
ConfigureSorting(*SortingConfig)
}
// SkipPageIndex is a file configuration option which prevents automatically
// reading the page index when opening a parquet file, when set to true. This is
// useful as an optimization when programs know that they will not need to
// consume the page index.
//
// Defaults to false.
func SkipPageIndex(skip bool) FileOption {
return fileOption(func(config *FileConfig) { config.SkipPageIndex = skip })
}
// SkipBloomFilters is a file configuration option which prevents automatically
// reading the bloom filters when opening a parquet file, when set to true.
// This is useful as an optimization when programs know that they will not need
// to consume the bloom filters.
//
// Defaults to false.
func SkipBloomFilters(skip bool) FileOption {
return fileOption(func(config *FileConfig) { config.SkipBloomFilters = skip })
}
// FileReadMode is a file configuration option which controls the way pages
// are read. Currently the only two options are ReadModeAsync and ReadModeSync
// which control whether or not pages are loaded asynchronously. It can be
// advantageous to use ReadModeAsync if your reader is backed by network
// storage.
//
// Defaults to ReadModeSync.
func FileReadMode(mode ReadMode) FileOption {
return fileOption(func(config *FileConfig) { config.ReadMode = mode })
}
// ReadBufferSize is a file configuration option which controls the default
// buffer sizes for reads made to the provided io.Reader. The default of 4096
// is appropriate for disk based access but if your reader is backed by network
// storage it can be advantageous to increase this value to something more like
// 4 MiB.
//
// Defaults to 4096.
func ReadBufferSize(size int) FileOption {
return fileOption(func(config *FileConfig) { config.ReadBufferSize = size })
}
// FileSchema is used to pass a known schema in while opening a Parquet file.
// This optimization is only useful if your application is currently opening
// an extremely large number of parquet files with the same, known schema.
//
// Defaults to nil.
func FileSchema(schema *Schema) FileOption {
return fileOption(func(config *FileConfig) { config.Schema = schema })
}
// PageBufferSize configures the size of column page buffers on parquet writers.
//
// Note that the page buffer size refers to the in-memory buffers where pages
// are generated, not the size of pages after encoding and compression.
// This design choice was made to help control the amount of memory needed to
// read and write pages rather than controlling the space used by the encoded
// representation on disk.
//
// Defaults to 256KiB.
func PageBufferSize(size int) WriterOption {
return writerOption(func(config *WriterConfig) { config.PageBufferSize = size })
}
// WriteBufferSize configures the size of the write buffer.
//
// Setting the writer buffer size to zero deactivates buffering, all writes are
// immediately sent to the output io.Writer.
//
// Defaults to 32KiB.
func WriteBufferSize(size int) WriterOption {
return writerOption(func(config *WriterConfig) { config.WriteBufferSize = size })
}
// MaxRowsPerRowGroup configures the maximum number of rows that a writer will
// produce in each row group.
//
// This limit is useful to control size of row groups in both number of rows and
// byte size. While controlling the byte size of a row group is difficult to
// achieve with parquet due to column encoding and compression, the number of
// rows remains a useful proxy.
//
// Defaults to unlimited.
func MaxRowsPerRowGroup(numRows int64) WriterOption {
if numRows <= 0 {
numRows = DefaultMaxRowsPerRowGroup
}
return writerOption(func(config *WriterConfig) { config.MaxRowsPerRowGroup = numRows })
}
// CreatedBy creates a configuration option which sets the name of the
// application that created a parquet file.
//
// The option formats the "CreatedBy" file metadata according to the convention
// described by the parquet spec:
//
// "<application> version <version> (build <build>)"
//
// By default, the option is set to the parquet-go module name, version, and
// build hash.
func CreatedBy(application, version, build string) WriterOption {
createdBy := formatCreatedBy(application, version, build)
return writerOption(func(config *WriterConfig) { config.CreatedBy = createdBy })
}
// ColumnPageBuffers creates a configuration option to customize the buffer pool
// used when constructing row groups. This can be used to provide on-disk buffers
// as swap space to ensure that the parquet file creation will no be bottlenecked
// on the amount of memory available.
//
// Defaults to using in-memory buffers.
func ColumnPageBuffers(buffers BufferPool) WriterOption {
return writerOption(func(config *WriterConfig) { config.ColumnPageBuffers = buffers })
}
// ColumnIndexSizeLimit creates a configuration option to customize the size
// limit of page boundaries recorded in column indexes.
//
// Defaults to 16.
func ColumnIndexSizeLimit(sizeLimit int) WriterOption {
return writerOption(func(config *WriterConfig) { config.ColumnIndexSizeLimit = sizeLimit })
}
// DataPageVersion creates a configuration option which configures the version of
// data pages used when creating a parquet file.
//
// Defaults to version 2.
func DataPageVersion(version int) WriterOption {
return writerOption(func(config *WriterConfig) { config.DataPageVersion = version })
}
// DataPageStatistics creates a configuration option which defines whether data
// page statistics are emitted. This option is useful when generating parquet
// files that intend to be backward compatible with older readers which may not
// have the ability to load page statistics from the column index.
//
// Defaults to false.
func DataPageStatistics(enabled bool) WriterOption {
return writerOption(func(config *WriterConfig) { config.DataPageStatistics = enabled })
}
// KeyValueMetadata creates a configuration option which adds key/value metadata
// to add to the metadata of parquet files.
//
// This option is additive, it may be used multiple times to add more than one
// key/value pair.
//
// Keys are assumed to be unique, if the same key is repeated multiple times the
// last value is retained. While the parquet format does not require unique keys,
// this design decision was made to optimize for the most common use case where
// applications leverage this extension mechanism to associate single values to
// keys. This may create incompatibilities with other parquet libraries, or may
// cause some key/value pairs to be lost when open parquet files written with
// repeated keys. We can revisit this decision if it ever becomes a blocker.
func KeyValueMetadata(key, value string) WriterOption {
return writerOption(func(config *WriterConfig) {
if config.KeyValueMetadata == nil {
config.KeyValueMetadata = map[string]string{key: value}
} else {
config.KeyValueMetadata[key] = value
}
})
}
// BloomFilters creates a configuration option which defines the bloom filters
// that parquet writers should generate.
//
// The compute and memory footprint of generating bloom filters for all columns
// of a parquet schema can be significant, so by default no filters are created
// and applications need to explicitly declare the columns that they want to
// create filters for.
func BloomFilters(filters ...BloomFilterColumn) WriterOption {
filters = append([]BloomFilterColumn{}, filters...)
return writerOption(func(config *WriterConfig) { config.BloomFilters = filters })
}
// Compression creates a configuration option which sets the default compression
// codec used by a writer for columns where none were defined.
func Compression(codec compress.Codec) WriterOption {
return writerOption(func(config *WriterConfig) { config.Compression = codec })
}
// SortingWriterConfig is a writer option which applies configuration specific
// to sorting writers.
func SortingWriterConfig(options ...SortingOption) WriterOption {
options = append([]SortingOption{}, options...)
return writerOption(func(config *WriterConfig) { config.Sorting.Apply(options...) })
}
// SkipPageBounds lists the path to a column that shouldn't have bounds written to the
// footer of the parquet file. This is useful for data blobs, like a raw html file,
// where the bounds are not meaningful.
//
// This option is additive, it may be used multiple times to skip multiple columns.
func SkipPageBounds(path ...string) WriterOption {
return writerOption(func(config *WriterConfig) { config.SkipPageBounds = append(config.SkipPageBounds, path) })
}
// ColumnBufferCapacity creates a configuration option which defines the size of
// row group column buffers.
//
// Defaults to 16384.
func ColumnBufferCapacity(size int) RowGroupOption {
return rowGroupOption(func(config *RowGroupConfig) { config.ColumnBufferCapacity = size })
}
// SortingRowGroupConfig is a row group option which applies configuration
// specific sorting row groups.
func SortingRowGroupConfig(options ...SortingOption) RowGroupOption {
options = append([]SortingOption{}, options...)
return rowGroupOption(func(config *RowGroupConfig) { config.Sorting.Apply(options...) })
}
// SortingColumns creates a configuration option which defines the sorting order
// of columns in a row group.
//
// The order of sorting columns passed as argument defines the ordering
// hierarchy; when elements are equal in the first column, the second column is
// used to order rows, etc...
func SortingColumns(columns ...SortingColumn) SortingOption {
// Make a copy so that we do not retain the input slice generated implicitly
// for the variable argument list, and also avoid having a nil slice when
// the option is passed with no sorting columns, so we can differentiate it
// from it not being passed.
columns = append([]SortingColumn{}, columns...)
return sortingOption(func(config *SortingConfig) { config.SortingColumns = columns })
}
// SortingBuffers creates a configuration option which sets the pool of buffers
// used to hold intermediary state when sorting parquet rows.
//
// Defaults to using in-memory buffers.
func SortingBuffers(buffers BufferPool) SortingOption {
return sortingOption(func(config *SortingConfig) { config.SortingBuffers = buffers })
}
// DropDuplicatedRows configures whether a sorting writer will keep or remove
// duplicated rows.
//
// Two rows are considered duplicates if the values of their all their sorting
// columns are equal.
//
// Defaults to false
func DropDuplicatedRows(drop bool) SortingOption {
return sortingOption(func(config *SortingConfig) { config.DropDuplicatedRows = drop })
}
type fileOption func(*FileConfig)
func (opt fileOption) ConfigureFile(config *FileConfig) { opt(config) }
type readerOption func(*ReaderConfig)
func (opt readerOption) ConfigureReader(config *ReaderConfig) { opt(config) }
type writerOption func(*WriterConfig)
func (opt writerOption) ConfigureWriter(config *WriterConfig) { opt(config) }
type rowGroupOption func(*RowGroupConfig)
func (opt rowGroupOption) ConfigureRowGroup(config *RowGroupConfig) { opt(config) }
type sortingOption func(*SortingConfig)
func (opt sortingOption) ConfigureSorting(config *SortingConfig) { opt(config) }
func coalesceBool(i1, i2 bool) bool {
return i1 || i2
}
func coalesceInt(i1, i2 int) int {
if i1 != 0 {
return i1
}
return i2
}
func coalesceInt64(i1, i2 int64) int64 {
if i1 != 0 {
return i1
}
return i2
}
func coalesceString(s1, s2 string) string {
if s1 != "" {
return s1
}
return s2
}
func coalesceBytes(b1, b2 []byte) []byte {
if b1 != nil {
return b1
}
return b2
}
func coalesceBufferPool(p1, p2 BufferPool) BufferPool {
if p1 != nil {
return p1
}
return p2
}
func coalesceSchema(s1, s2 *Schema) *Schema {
if s1 != nil {
return s1
}
return s2
}
func coalesceSortingColumns(s1, s2 []SortingColumn) []SortingColumn {
if s1 != nil {
return s1
}
return s2
}
func coalesceSortingConfig(c1, c2 SortingConfig) SortingConfig {
return SortingConfig{
SortingBuffers: coalesceBufferPool(c1.SortingBuffers, c2.SortingBuffers),
SortingColumns: coalesceSortingColumns(c1.SortingColumns, c2.SortingColumns),
DropDuplicatedRows: c1.DropDuplicatedRows,
}
}
func coalesceBloomFilters(f1, f2 []BloomFilterColumn) []BloomFilterColumn {
if f1 != nil {
return f1
}
return f2
}
func coalesceCompression(c1, c2 compress.Codec) compress.Codec {
if c1 != nil {
return c1
}
return c2
}
func validatePositiveInt(optionName string, optionValue int) error {
if optionValue > 0 {
return nil
}
return errorInvalidOptionValue(optionName, optionValue)
}
func validatePositiveInt64(optionName string, optionValue int64) error {
if optionValue > 0 {
return nil
}
return errorInvalidOptionValue(optionName, optionValue)
}
func validateOneOfInt(optionName string, optionValue int, supportedValues ...int) error {
for _, value := range supportedValues {
if value == optionValue {
return nil
}
}
return errorInvalidOptionValue(optionName, optionValue)
}
func validateNotNil(optionName string, optionValue interface{}) error {
if optionValue != nil {
return nil
}
return errorInvalidOptionValue(optionName, optionValue)
}
func errorInvalidOptionValue(optionName string, optionValue interface{}) error {
return fmt.Errorf("invalid option value: %s: %v", optionName, optionValue)
}
func errorInvalidConfiguration(reasons ...error) error {
var err *invalidConfiguration
for _, reason := range reasons {
if reason != nil {
if err == nil {
err = new(invalidConfiguration)
}
err.reasons = append(err.reasons, reason)
}
}
if err != nil {
return err
}
return nil
}
type invalidConfiguration struct {
reasons []error
}
func (err *invalidConfiguration) Error() string {
errorMessage := new(strings.Builder)
for _, reason := range err.reasons {
errorMessage.WriteString(reason.Error())
errorMessage.WriteString("\n")
}
errorString := errorMessage.String()
if errorString != "" {
errorString = errorString[:len(errorString)-1]
}
return errorString
}
var (
_ FileOption = (*FileConfig)(nil)
_ ReaderOption = (*ReaderConfig)(nil)
_ WriterOption = (*WriterConfig)(nil)
_ RowGroupOption = (*RowGroupConfig)(nil)
_ SortingOption = (*SortingConfig)(nil)
)