miller/internal/pkg/output
John Kerl f233923351
Performance improvement: record-batching (#779)
* Rename inputChannel,outputChannel to readerChannel,writerChannel

* Rename inputChannel,outputChannel to readerChannel,writerChannel (#772)

* Start batched-reader API mods

* Singleton-list step for reader-batching at input

* CLI options for records-per-batch and hash-records

* Push channelized-reader logic into DKVP reader

* Push batching logic into chain-transformer, transformers, and channel-writer

* foo

* cmd/mprof and cmd/mprof2

* cmd/mprof3 and cmd/mprof4

* narrowed in on regexp-splitting on IFS/IPS as perf-hit

* neaten

* channelize nidx

* cmd/mprof5

* channelize CSV reader

* channelize NIDX reader

* Dedupe DKVP-reader and NIDX-reader source files

* channelize CSV-lite reader

* channelize XTAB reader

* batchify JSON reader

* channelize GEN pseudo-reader

* scripts for perf-testing on larger files

* merge with main for #776

* Fix record-batching for join and repl

* Fix comment-handling in channelized XTAB reader

* Fix bug found in positional-rename
2021-12-13 00:57:52 -05:00
..
channel_writer.go Performance improvement: record-batching (#779) 2021-12-13 00:57:52 -05:00
doc.go Standardize Go-package structure (#746) 2021-11-11 14:15:13 -05:00
file-output-handlers.go Performance improvement: record-batching (#779) 2021-12-13 00:57:52 -05:00
README.md Standardize Go-package structure (#746) 2021-11-11 14:15:13 -05:00
record_writer.go Performance improvement: buffered output (#765) 2021-12-01 20:12:31 -05:00
record_writer_csv.go Performance improvement: buffered output (#765) 2021-12-01 20:12:31 -05:00
record_writer_csvlite.go Performance improvement: buffered output (#765) 2021-12-01 20:12:31 -05:00
record_writer_dkvp.go Performance improvement: buffered output (#765) 2021-12-01 20:12:31 -05:00
record_writer_factory.go More Go-package restructuring (#748) 2021-11-12 12:49:55 -05:00
record_writer_json.go Performance improvement: buffered output (#765) 2021-12-01 20:12:31 -05:00
record_writer_markdown.go Performance improvement: buffered output (#765) 2021-12-01 20:12:31 -05:00
record_writer_nidx.go Performance improvement: buffered output (#765) 2021-12-01 20:12:31 -05:00
record_writer_pprint.go Performance improvement: buffered output (#765) 2021-12-01 20:12:31 -05:00
record_writer_xtab.go Performance improvement: buffered output (#765) 2021-12-01 20:12:31 -05:00

Logic for formatting output records as strings to standard output.

There is one record-writer type per supported output file format, and a factory method.