This is an automated email from the ASF dual-hosted git repository.

colinlee pushed a change to branch bench_mark
in repository https://gitbox.apache.org/repos/asf/tsfile.git


 discard 968c4285 add benchmark.
 discard bdcb76b4 tmp benchmark.
     add 37dcffbc add getter for encryptParam (#447)
     add e2557e54 fix lower case in python.
     add 94f1e9ce fix compile on clang 17. (#454)
     add 2ce0ed4a fix segv when flush data. (#455)
     add c7d21f3a Add branch protection for develop branches (#457)
     add c9db8d1e Fix python check isnull. (#458)
     new c9965ba8 tmp benchmark.
     new 26abc918 add benchmark.
     new d035064e benchMark tmp.
     new a1521362 tmp code.
     new 84abd93a add write bench mark.
     new 9481b4f3 add tsfile writing bench mark.

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   (968c4285)
            \
             N -- N -- N   refs/heads/bench_mark (9481b4f3)

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.

The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .asf.yaml                                          |   3 +
 .gitignore                                         |   2 +-
 cpp/bench_mark/CMakeLists.txt                      |  10 +-
 cpp/bench_mark/build.sh                            |  29 +--
 cpp/bench_mark/src/bench_conf.h                    |   6 +-
 .../src/bench_mark.cc}                             |  11 +-
 cpp/bench_mark/src/bench_mark.h                    |  48 -----
 cpp/bench_mark/src/bench_mark_c.cc                 | 203 ++++++++++++++++++++-
 .../src/bench_mark_c_cpp.h}                        |  11 +-
 cpp/bench_mark/src/bench_mark_cpp.cc               | 178 +++++++++---------
 cpp/bench_mark/src/bench_mark_utils.cc             |  66 +++++++
 .../src/{bench_conf.h => bench_mark_utils.h}       |  23 ++-
 cpp/src/writer/time_chunk_writer.cc                |  10 +-
 cpp/src/writer/value_chunk_writer.cc               |  11 +-
 .../writer/table_view/tsfile_writer_table_test.cc  |  18 +-
 cpp/third_party/zlib-1.2.13/zutil.c                |   3 +-
 java/{examples => bench_mark}/pom.xml              |   4 +-
 .../src/main/java/org/apache/tsfile/BenchMark.java | 169 +++++++++++++++++
 .../main/java/org/apache/tsfile/BenchMarkConf.java |  82 +++++++++
 java/pom.xml                                       |   1 +
 .../apache/tsfile/common/conf/TSFileConfig.java    |   2 -
 .../org/apache/tsfile/encrypt/EncryptUtils.java    | 120 ++++++------
 .../apache/tsfile/read/TsFileSequenceReader.java   |   2 +-
 .../apache/tsfile/read/UnClosedTsFileReader.java   |   2 +-
 .../java/org/apache/tsfile/read/common/Chunk.java  |   4 +-
 .../tsfile/read/reader/page/LazyLoadPageData.java  |   2 +-
 .../java/org/apache/tsfile/write/TsFileWriter.java |  20 +-
 .../write/chunk/AlignedChunkGroupWriterImpl.java   |   2 +-
 .../tsfile/write/chunk/AlignedChunkWriterImpl.java |   6 +-
 .../apache/tsfile/write/chunk/ChunkWriterImpl.java |   2 +-
 .../chunk/NonAlignedChunkGroupWriterImpl.java      |   2 +-
 .../apache/tsfile/write/chunk/TimeChunkWriter.java |   2 +-
 .../tsfile/write/chunk/ValueChunkWriter.java       |   2 +-
 .../org/apache/tsfile/write/page/PageWriter.java   |   4 +-
 .../apache/tsfile/write/page/TimePageWriter.java   |   2 +-
 .../apache/tsfile/write/page/ValuePageWriter.java  |   2 +-
 .../write/v4/AbstractTableModelTsFileWriter.java   |  21 ++-
 .../apache/tsfile/write/writer/TsFileIOWriter.java |   6 +-
 python/bench_mark/bench_mark.py                    | 140 ++++++++++++++
 python/requirements.txt                            |   2 +-
 python/setup.py                                    |   2 +-
 python/tests/test_write_and_read.py                |  33 ++++
 python/tsfile/schema.py                            |   4 +-
 python/tsfile/tablet.py                            |  11 +-
 python/tsfile/tsfile_reader.pyx                    |  27 ++-
 45 files changed, 967 insertions(+), 343 deletions(-)
 copy cpp/{src/parser/generated/PathParserBaseListener.cpp => 
bench_mark/src/bench_mark.cc} (82%)
 delete mode 100644 cpp/bench_mark/src/bench_mark.h
 copy cpp/{src/parser/generated/PathParserListener.cpp => 
bench_mark/src/bench_mark_c_cpp.h} (74%)
 create mode 100644 cpp/bench_mark/src/bench_mark_utils.cc
 copy cpp/bench_mark/src/{bench_conf.h => bench_mark_utils.h} (61%)
 copy java/{examples => bench_mark}/pom.xml (97%)
 create mode 100644 
java/bench_mark/src/main/java/org/apache/tsfile/BenchMark.java
 create mode 100644 
java/bench_mark/src/main/java/org/apache/tsfile/BenchMarkConf.java
 create mode 100644 python/bench_mark/bench_mark.py

Reply via email to