This is an automated email from the ASF dual-hosted git repository.
colinlee pushed a change to branch write_with_parallel
in repository https://gitbox.apache.org/repos/asf/tsfile.git
discard 38b7336e support write parallel.
discard 28c60320 support tag filter.
add 56756d26 Bump actions/github-script from 7.0.1 to 8.0.0 (#594)
add 21d70d65 Support TsfileDataFrame (#765)
add 7d308fe2 support tag filter. (#768)
add 9374f727 Remove timestamps cache to optmize init phase (#769)
add e2fba469 Fix data loss (#771)
add bbcd5276 support tag filter.
add d0cf8a4e support write parallel.
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (38b7336e)
\
N -- N -- N refs/heads/write_with_parallel (d0cf8a4e)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/workflows/unit-test-cpp.yml | 2 +-
.github/workflows/unit-test-java.yml | 2 +-
.github/workflows/unit-test-python.yml | 2 +-
cpp/src/cwrapper/tsfile_cwrapper.cc | 133 +++-
cpp/src/cwrapper/tsfile_cwrapper.h | 19 +-
cpp/src/file/tsfile_io_reader.cc | 53 +-
cpp/src/reader/aligned_chunk_reader.cc | 18 +-
cpp/src/reader/table_query_executor.cc | 5 +-
cpp/src/reader/tsfile_reader.cc | 47 +-
cpp/src/reader/tsfile_reader.h | 6 +-
cpp/test/cwrapper/query_by_row_cwrapper_test.cc | 5 +-
.../reader/table_view/tsfile_reader_table_test.cc | 83 +++
.../table_view/tsfile_table_query_by_row_test.cc | 45 ++
python/lower_case_name.tsfile | Bin 23089 -> 0 bytes
python/setup.py | 2 +-
python/test1.tsfile | Bin 23089 -> 0 bytes
python/tests/bench_batch_arrow_vs_dataframe.py | 2 +-
python/tests/test_batch_arrow.py | 12 +-
python/tests/test_reader_metadata.py | 64 +-
python/tests/test_tag_filter_query.py | 440 +++++++++++
python/tests/test_tsfile_dataset.py | 476 ++++++++++++
python/tests/test_write_arrow.py | 2 +-
python/tsfile/__init__.py | 10 +-
.../.asf.yaml => python/tsfile/dataset/__init__.py | 11 +-
python/tsfile/dataset/dataframe.py | 824 +++++++++++++++++++++
python/tsfile/dataset/formatting.py | 171 +++++
python/tsfile/dataset/merge.py | 154 ++++
python/tsfile/dataset/metadata.py | 225 ++++++
python/tsfile/dataset/reader.py | 400 ++++++++++
python/tsfile/dataset/timeseries.py | 162 ++++
python/tsfile/schema.py | 1 +
python/tsfile/tsfile_cpp.pxd | 9 +-
python/tsfile/tsfile_py_cpp.pxd | 6 +-
python/tsfile/tsfile_py_cpp.pyx | 13 +-
python/tsfile/tsfile_reader.pyx | 17 +-
35 files changed, 3333 insertions(+), 88 deletions(-)
delete mode 100644 python/lower_case_name.tsfile
delete mode 100644 python/test1.tsfile
create mode 100644 python/tests/test_tag_filter_query.py
create mode 100644 python/tests/test_tsfile_dataset.py
copy docs/src/.vuepress/public/.asf.yaml => python/tsfile/dataset/__init__.py
(80%)
create mode 100644 python/tsfile/dataset/dataframe.py
create mode 100644 python/tsfile/dataset/formatting.py
create mode 100644 python/tsfile/dataset/merge.py
create mode 100644 python/tsfile/dataset/metadata.py
create mode 100644 python/tsfile/dataset/reader.py
create mode 100644 python/tsfile/dataset/timeseries.py