You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by ba...@apache.org on 2019/11/12 15:30:06 UTC

[nifi-minifi-cpp] branch master updated (945b312 -> e10e595)

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

bakaid pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git.


    from 945b312  MINIFICPP-1065 - Fix linter
     new 03dd45e  MINIFICPP-1062 - Decrease memory and CPU usage of serialize operations
     new dde9879  MINIFICPP-1062 - Improve FlowFile repository performance by leveraging batching
     new e10e595  Merge pull request #664 from arpadboda/MINIFICPP-1062

The 653 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:
 extensions/rocksdb-repos/FlowFileRepository.cpp |  40 +++++--
 extensions/rocksdb-repos/FlowFileRepository.h   |  34 +++---
 extensions/rocksdb-repos/ProvenanceRepository.h |  56 +++++-----
 libminifi/include/Connection.h                  |   4 +
 libminifi/include/FlowFileRecord.h              |   2 +
 libminifi/include/core/Repository.h             |   9 ++
 libminifi/include/io/Serializable.h             | 135 +++++++++++-------------
 libminifi/include/provenance/Provenance.h       |   9 ++
 libminifi/src/Connection.cpp                    |  50 ++++++++-
 libminifi/src/FlowFileRecord.cpp                |  20 +++-
 libminifi/src/core/ProcessSession.cpp           |  30 ++++--
 libminifi/src/io/Serializable.cpp               | 103 +++---------------
 libminifi/src/provenance/Provenance.cpp         |  43 +++++---
 libminifi/test/unit/ProvenanceTestHelper.h      |  13 +++
 14 files changed, 312 insertions(+), 236 deletions(-)