Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Faster JSON dumps in format_message with msgspec #1784

Closed
Changes from 1 commit
Commits
Show all changes
142 commits
Select commit Hold shift + click to select a range
4d7da5e
add msgspec via poetry
BuzzCutNorman Jun 19, 2023
df7db19
change json to mspec.json
BuzzCutNorman Jun 19, 2023
85d94aa
add .decode() to convert returned byte to string
BuzzCutNorman Jun 19, 2023
75024dd
added msgspec json formatting
BuzzCutNorman Jun 21, 2023
dd8930e
add post_process to sql stream and convert keys to str
BuzzCutNorman Jun 21, 2023
58f0df3
Merge branch 'main' of https://github.com/BuzzCutNorman/sdk into 1046…
BuzzCutNorman Jun 22, 2023
2bfc072
updated lock file
BuzzCutNorman Jun 22, 2023
e74956d
removed json.format step in format message
BuzzCutNorman Jun 26, 2023
b3dbf45
removed post_process from sql stream that converted keys to str
BuzzCutNorman Jun 26, 2023
b970b2f
Merge branch 'main' into 1046-feat-faster-json-dumps-with-msgspec
BuzzCutNorman Jun 27, 2023
d4c0eef
send msgspec bytes output to stdout.buffer
BuzzCutNorman Jun 28, 2023
848a944
Merge branch 'main' of https://github.com/BuzzCutNorman/sdk into 1046…
BuzzCutNorman Jul 7, 2023
6d8b3a5
Merge branch 'main' of https://github.com/meltano/sdk into 1046-feat-…
BuzzCutNorman Jul 11, 2023
ec6a337
ran poetry update
BuzzCutNorman Jul 11, 2023
e839d64
Merge branch 'main' into 1046-feat-faster-json-dumps-with-msgspec
BuzzCutNorman Jul 13, 2023
597d49a
use msgspec 0.17.0
BuzzCutNorman Jul 13, 2023
a475213
ran poetry update
BuzzCutNorman Jul 13, 2023
7816ec0
revert to decoding binary string and write to stdout
BuzzCutNorman Jul 13, 2023
538fc74
updated and validated test_format_messages
BuzzCutNorman Jul 13, 2023
a65cbab
verified and updated test_write_message
BuzzCutNorman Jul 13, 2023
9ea4568
removed all spaces in no_map.jsonl
BuzzCutNorman Jul 13, 2023
df933dd
removed all spaces in keep_all_fields.jsonl
BuzzCutNorman Jul 13, 2023
edc091f
removed all spaces in only_mapped_fields_null_string.jsonl
BuzzCutNorman Jul 13, 2023
3660eb8
removed all spaces in only_mapped_fields.jsonl
BuzzCutNorman Jul 13, 2023
684abdb
removed all spaces in changed_key_properties.jsonl
BuzzCutNorman Jul 13, 2023
4cef269
removed all spaces in sourced_stream_1.jsonl
BuzzCutNorman Jul 13, 2023
e79f099
removed all spaces in sourced_stream_1_null_string.jsonl
BuzzCutNorman Jul 13, 2023
0e6c92c
removed all spaces in sourced_stream_2.jsonl
BuzzCutNorman Jul 13, 2023
cc1c1fe
removed all spaces in aliased_stream.jsonl
BuzzCutNorman Jul 13, 2023
a1e69d9
removed all spaces in flatten_depth_1.jsonl
BuzzCutNorman Jul 13, 2023
23a4ca4
updated flattening to use msgspec
BuzzCutNorman Jul 13, 2023
de9c93c
removed all spaces in flatten_all.jsonl
BuzzCutNorman Jul 13, 2023
2b0b429
removed all spaces in map_and_flatten.jsonl
BuzzCutNorman Jul 13, 2023
363e2d3
removed all spaces in drop_property.jsonl
BuzzCutNorman Jul 13, 2023
35ef7d7
removed all spaces in drop_property_null_string.jsonl
BuzzCutNorman Jul 13, 2023
f936a16
removed all spaces in non_pk_passthrough.jsonl
BuzzCutNorman Jul 13, 2023
3618542
removed all spaces in countries_write_schemas
BuzzCutNorman Jul 13, 2023
d4775b7
revert format_message to say it returns str
BuzzCutNorman Jul 14, 2023
5dff2fb
msgspec setup to use decimal_format="number"
BuzzCutNorman Jul 14, 2023
19f4c8b
update test_format_message to assert \n is present at the end
BuzzCutNorman Jul 14, 2023
dc849a6
refactor format_message to utilize msgspec perfomace tips
BuzzCutNorman Jul 14, 2023
2f6d5bf
Merge branch 'main' of https://github.com/meltano/sdk into 1046-feat-…
BuzzCutNorman Jul 15, 2023
1a0fcfb
Merge branch 'main' into 1046-feat-faster-json-dumps-with-msgspec
BuzzCutNorman Jul 17, 2023
60e2e36
Merge branch 'main' of https://github.com/meltano/sdk into 1046-feat-…
BuzzCutNorman Jul 24, 2023
24ee6cd
Merge branch 'main' into 1046-feat-faster-json-dumps-with-msgspec
BuzzCutNorman Jul 26, 2023
5dae548
Merge branch 'main' into 1046-feat-faster-json-dumps-with-msgspec
BuzzCutNorman Jul 27, 2023
16cd1e1
switch to json returned in native bytes string
BuzzCutNorman Jul 28, 2023
9eb887a
updated test_message tests
BuzzCutNorman Jul 28, 2023
049c164
updated test_mapper tests
BuzzCutNorman Jul 28, 2023
ced88b6
update test_parent_child tests
BuzzCutNorman Jul 28, 2023
bd2d530
update test_tap_countries tests
BuzzCutNorman Jul 28, 2023
07ab43d
updated testing runners _execute_sync
BuzzCutNorman Jul 28, 2023
056b79c
update testing legacy sync functions
BuzzCutNorman Jul 28, 2023
66ba043
conform to stdout_buf
BuzzCutNorman Jul 28, 2023
d5aa718
Merge branch 'main' into 1046-feat-faster-json-dumps-with-msgspec
BuzzCutNorman Jul 28, 2023
f0600e6
Merge branch 'main' into 1046-feat-faster-json-dumps-with-msgspec
BuzzCutNorman Jul 31, 2023
9339099
update deserialize_json to utilize msgspec
BuzzCutNorman Jul 31, 2023
b2c2d5a
updated test_io tests to utlize msgspec.DecodeError
BuzzCutNorman Jul 31, 2023
3429427
Merge branch 'main' into 1046-feat-faster-json-dumps-with-msgspec
BuzzCutNorman Aug 4, 2023
9f900a0
Create Struct from SCHEMA msg for json decoding
BuzzCutNorman Aug 4, 2023
fa952d7
updated test_io test to handle Struct methods
BuzzCutNorman Aug 4, 2023
663c6a3
added default of None for non present optional fields
BuzzCutNorman Aug 4, 2023
b6d8d44
Merge branch 'main' of https://github.com/meltano/sdk into 1046-feat-…
BuzzCutNorman Aug 4, 2023
9820c33
poerty lock --no-update
BuzzCutNorman Aug 4, 2023
489143d
Merge branch 'main' into 1046-feat-faster-json-dumps-with-msgspec
BuzzCutNorman Aug 8, 2023
b8828d1
Merge branch 'main' into 1046-feat-faster-json-dumps-with-msgspec
BuzzCutNorman Aug 15, 2023
f9713a3
Merge branch 'main' of https://github.com/BuzzCutNorman/sdk into 1046…
BuzzCutNorman Oct 6, 2023
2677a6f
update msgspec to 0.18.4 and poetry update
BuzzCutNorman Oct 6, 2023
cb1d32e
Merge branch 'main' of https://github.com/BuzzCutNorman/sdk into 1046…
BuzzCutNorman Oct 17, 2023
e8e34b9
updated pytest snapshot mapped_stream jsonl files
BuzzCutNorman Oct 17, 2023
b3535be
Merge branch 'main' into 1046-feat-faster-json-dumps-with-msgspec
BuzzCutNorman Oct 18, 2023
27dce2c
removed a Python 3.7 from classifers, update ruff target-version to py38
BuzzCutNorman Oct 18, 2023
dde28c2
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 18, 2023
77236d9
added the changes in drop support for python 3.7 from v1
BuzzCutNorman Oct 19, 2023
f437c48
updated register_stream_stuct and deserialize_record
BuzzCutNorman Oct 19, 2023
c5ef558
added float_hook=decimal.Decimal to decoder
BuzzCutNorman Oct 19, 2023
50fe1ff
added conform_name and used it in register_stream_struct and deserial…
BuzzCutNorman Oct 19, 2023
f15cb35
utilizing float_hook=decimal.Decimal in Decoder and code cleanup to m…
BuzzCutNorman Oct 23, 2023
8e813e8
Merge branch 'main' into 1046-feat-faster-json-dumps-with-msgspec
BuzzCutNorman Oct 23, 2023
5cf4e76
Merge branch 'main' into 1046-feat-faster-json-dumps-with-msgspec
BuzzCutNorman Oct 30, 2023
b723dad
Merge branch 'main' of https://github.com/BuzzCutNorman/sdk into 1046…
BuzzCutNorman Nov 16, 2023
a035da0
fix pyarrow dependency walk issue
BuzzCutNorman Nov 16, 2023
3368448
fix ruff issues
BuzzCutNorman Nov 16, 2023
9c4bd90
Add SingerWriter to io_base
BuzzCutNorman Nov 16, 2023
ffd0d17
cleanup singer_lib.messages
BuzzCutNorman Nov 16, 2023
83fcafa
Add SingerWriter as a Tap parent class
BuzzCutNorman Nov 16, 2023
b6bd2e5
Update Sink class to use self_tap.write_message
BuzzCutNorman Nov 16, 2023
fc7be94
Add SingerWriter to InlineMapper as a parent class
BuzzCutNorman Nov 16, 2023
6f2c39a
Removed wirte_message from singerlib init
BuzzCutNorman Nov 16, 2023
af90f6c
update test to utilize SingerWriter class
BuzzCutNorman Nov 16, 2023
20a53f2
Merge branch 'main' of https://github.com/BuzzCutNorman/sdk into 1046…
BuzzCutNorman Nov 28, 2023
04c3338
Merge branch 'main' of https://github.com/BuzzCutNorman/sdk into 1046…
BuzzCutNorman Nov 28, 2023
1be25c1
attempt to resolve dependency walk issue
BuzzCutNorman Nov 28, 2023
b41c6a3
attempt to resolve e2e test failures
BuzzCutNorman Nov 29, 2023
0429fbb
Merge branch 'main' of https://github.com/BuzzCutNorman/sdk into 1046…
BuzzCutNorman Nov 30, 2023
5c5d173
reduce mypy issue
BuzzCutNorman Dec 1, 2023
6b68391
Merge branch 'main' into 1046-feat-faster-json-dumps-with-msgspec
BuzzCutNorman Dec 4, 2023
14f8b78
Merge branch 'main' of https://github.com/BuzzCutNorman/sdk into 1046…
BuzzCutNorman Dec 5, 2023
55cbc5f
Merge branch 'main' of https://github.com/BuzzCutNorman/sdk into 1046…
BuzzCutNorman Dec 5, 2023
4dc2fe1
Merge branch 'main' into 1046-feat-faster-json-dumps-with-msgspec
BuzzCutNorman Dec 6, 2023
792277b
updated tests to utlize RunnerStandardOutErr
BuzzCutNorman Dec 6, 2023
21fbc60
added dec_hook to appease mypy and enc_hook to match PR2090
BuzzCutNorman Dec 6, 2023
257f312
Merge branch 'main' of https://github.com/BuzzCutNorman/sdk into 1046…
BuzzCutNorman Dec 6, 2023
93b4488
added xfail to test_sync_sqlite_to_sqlite
BuzzCutNorman Dec 7, 2023
25ca6e8
added xfail to test_hostile_to_sqlite
BuzzCutNorman Dec 7, 2023
e616df4
added xfail to test_sqlite_state
BuzzCutNorman Dec 7, 2023
4876246
Merge branch 'main' into 1046-feat-faster-json-dumps-with-msgspec
BuzzCutNorman Dec 7, 2023
e484602
added enc_hook and dec_hook tests to test_io
BuzzCutNorman Dec 7, 2023
b0ac8aa
cleanup of unused code
BuzzCutNorman Dec 7, 2023
719652d
paramaterized test_dec_hook and test_enc_hook
BuzzCutNorman Dec 7, 2023
5eefa0e
add test_listen_file_input to test_io
BuzzCutNorman Dec 8, 2023
418d42f
Merge branch 'main' of https://github.com/BuzzCutNorman/sdk into 1046…
BuzzCutNorman Dec 8, 2023
643ee6d
Merge branch 'main' of https://github.com/BuzzCutNorman/sdk into 1046…
BuzzCutNorman Dec 11, 2023
35d8063
Merge branch 'main' of https://github.com/BuzzCutNorman/sdk into 1046…
BuzzCutNorman Jan 10, 2024
517f6f1
bump msgspec to 0.18.5
BuzzCutNorman Jan 10, 2024
3a8eb0f
Merge branch 'main' of https://github.com/BuzzCutNorman/sdk into 1046…
BuzzCutNorman Jan 11, 2024
a9023f8
Merge branch 'main' of https://github.com/BuzzCutNorman/sdk into 1046…
BuzzCutNorman Jan 22, 2024
98f17e5
Merge branch 'main' into 1046-feat-faster-json-dumps-with-msgspec
BuzzCutNorman Jan 22, 2024
3caf6c1
Merge branch 'main' of https://github.com/BuzzCutNorman/sdk into 1046…
BuzzCutNorman Jan 23, 2024
efea905
Apply suggestions from code review
BuzzCutNorman Jan 23, 2024
6ce9202
ran poetry lock --no-update
BuzzCutNorman Jan 23, 2024
ed523e7
removed importlib metadata and typing final
BuzzCutNorman Jan 23, 2024
e12dc58
switch to using t.Final to decorate listen in SingerReader
BuzzCutNorman Jan 23, 2024
187a347
Merge branch 'main' into 1046-feat-faster-json-dumps-with-msgspec
edgarrmondragon Jan 26, 2024
e35d2b0
fix: Reduce amount of unnecessary whitespace in Singer output (#2184)
edgarrmondragon Jan 26, 2024
ad73b78
docs: Call out minimum recommended `cookiecutter` version (#2186)
edgarrmondragon Jan 26, 2024
3913955
Merge branch 'main' into 1046-feat-faster-json-dumps-with-msgspec
edgarrmondragon Jan 26, 2024
60e591e
Merge branch 'main' into 1046-feat-faster-json-dumps-with-msgspec
edgarrmondragon Jan 27, 2024
2f7d05b
Merge branch 'main' of https://github.com/BuzzCutNorman/sdk into 1046…
BuzzCutNorman Jan 29, 2024
3967985
Merge branch 'main' of https://github.com/BuzzCutNorman/sdk into 1046…
BuzzCutNorman Feb 15, 2024
039fd8c
updated flattening record test - removed white space
BuzzCutNorman Feb 16, 2024
32be3a9
updated snapshot files to work with msgpec output
BuzzCutNorman Feb 16, 2024
e08d7ca
Merge branch 'main' into 1046-feat-faster-json-dumps-with-msgspec
BuzzCutNorman Feb 19, 2024
9526e31
update flattening to use encoder similar to io_base
BuzzCutNorman Feb 19, 2024
718a640
updated flattening snapshots
BuzzCutNorman Feb 19, 2024
9a172d8
Merge branch 'main' into 1046-feat-faster-json-dumps-with-msgspec
BuzzCutNorman Feb 23, 2024
c331bb3
Merge branch 'main' into 1046-feat-faster-json-dumps-with-msgspec
BuzzCutNorman Mar 1, 2024
559d352
Merge branch 'main' into 1046-feat-faster-json-dumps-with-msgspec
BuzzCutNorman Mar 4, 2024
6c9760c
Merge branch 'main' of https://github.com/BuzzCutNorman/sdk into 1046…
BuzzCutNorman Mar 5, 2024
dc4b35d
Merge branch 'main' of https://github.com/BuzzCutNorman/sdk into 1046…
BuzzCutNorman Mar 28, 2024
2fb541c
Merge branch 'main' of https://github.com/BuzzCutNorman/sdk into 1046…
BuzzCutNorman Jun 24, 2024
1c7de71
Merge branch 'main' into 1046-feat-faster-json-dumps-with-msgspec
edgarrmondragon Jul 12, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'main' into 1046-feat-faster-json-dumps-with-msgspec
  • Loading branch information
BuzzCutNorman authored Jun 27, 2023
commit b970b2f3b04513c59f9affd108f829bbaff58de1

This merge commit was added into this branch cleanly.

There are no new changes to show, but you can still view the diff.