You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ri...@apache.org on 2021/05/11 07:27:12 UTC

[incubator-streampipes] branch STREAMPIPES-319 updated (6a569a9 -> 0d8ae17)

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

riemer pushed a change to branch STREAMPIPES-319
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git.


    from 6a569a9  [STREAMPIPES-319] Add config extraction feature to onInvocation method
     add 1096688  [STREAMPIPES-180] Changed file's names to follow proper naming conventions
     add c1426b8  [STREAMPIPES-180] Added empty line at the end of file
     add af1a6ff  Merge pull request #41 from anushkrishnav/anushkrishnav
     add ade3c68  [STREAMPIPES-340] Support of offset clause in Siddhi wrapper/processors
     add 6557658  Merge pull request #39 from sndp2693/STREAMPIPES-340
     add 3e444d3  [STREAMPIPES-323] Added equals to SchemaInfo
     add f4dfc23  Added equals to SchemaInfo
     add 341eb8a  Used list1.equals.list2
     add 7c8eaa4  Spacing fixed
     add 67ddf91  Spacing fixed
     add e93e4d5  Used ListUtils.isEqualList
     add 2e4b2fe  Used single imports instead of import *
     add 7bfb1c9  [STREAMPIPES-323] Added equals to Schemainfo
     add 735c08c  Merge branch 'dev' of https://github.com/Samarth08/incubator-streampipes into dev
     add 32223d1  [STREAMPIPES-323] Added equals to schemainfo
     add e21a592  Merge pull request #34 from Samarth08/dev
     add df3cf9b  Remove invalid dependency entry
     add 22e98b2  Merge pull request #42 from mohanvive/dev
     new 0d8ae17  Merge branch 'dev' into STREAMPIPES-319

The 1 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:
 docker-compose.yml                                 |  1 -
 streampipes-model/pom.xml                          |  4 ++
 .../model/base/AbstractStreamPipesEntity.java      |  9 +++++
 .../quality/EventPropertyQualityRequirement.java   | 10 +++++
 .../streampipes/model/runtime/SchemaInfo.java      |  9 +++++
 .../streampipes/model/schema/EventProperty.java    | 21 +++++++++++
 .../streampipes/model/schema/EventSchema.java      |  8 ++++
 streampipes-wrapper-python/streampipes/__init__.py |  2 +-
 streampipes-wrapper-python/streampipes/declarer.py |  2 -
 .../streampipes/instances.py                       |  2 +-
 streampipes-wrapper-python/streampipes/manager.py  |  2 +-
 .../streampipes/model/__init__.py                  |  2 +-
 .../streampipes/{ => model}/base/__init__.py       |  1 +
 .../base/abstract_streampipes_entity.py}           |  4 ++
 .../model/base/consumable_streampipes_entity.py    | 10 +++--
 .../base/named_streampipes_entity.py}              | 13 ++++---
 .../base/unnamed_streampipes_entity.py}            | 15 +++++---
 .../streampipes/model/config_item.py               |  2 +-
 .../streampipes/{base => model/graph}/__init__.py  |  0
 .../model/graph/data_processor_description.py      | 43 ++++++++++++++++++++++
 .../{base => model/staticproperty}/__init__.py     |  1 +
 .../staticproperty/free_text_StaticProperty.py     | 12 ++++--
 .../static_property.py}                            | 28 +++++++-------
 .../staticproperty/static_property_visitor.py}     |  0
 .../streampipes/submitter.py                       |  2 +-
 .../wrapper/siddhi/SiddhiQueryBuilder.java         |  9 +++++
 .../wrapper/siddhi/constants/SiddhiConstants.java  |  1 +
 .../query/{LimitClause.java => OffsetClause.java}  | 14 +++----
 .../wrapper/siddhi/query/SiddhiQuery.java          | 15 ++++++++
 29 files changed, 193 insertions(+), 49 deletions(-)
 copy streampipes-wrapper-python/streampipes/{ => model}/base/__init__.py (96%)
 copy streampipes-wrapper-python/streampipes/{base/__init__.py => model/base/abstract_streampipes_entity.py} (91%)
 copy streampipes-backend/src/main/resources/application.properties => streampipes-wrapper-python/streampipes/model/base/consumable_streampipes_entity.py (77%)
 copy streampipes-wrapper-python/streampipes/{__init__.py => model/base/named_streampipes_entity.py} (69%)
 copy streampipes-wrapper-python/streampipes/{__init__.py => model/base/unnamed_streampipes_entity.py} (67%)
 copy streampipes-wrapper-python/streampipes/{base => model/graph}/__init__.py (100%)
 create mode 100644 streampipes-wrapper-python/streampipes/model/graph/data_processor_description.py
 copy streampipes-wrapper-python/streampipes/{base => model/staticproperty}/__init__.py (94%)
 copy streampipes-backend/src/main/resources/application.properties => streampipes-wrapper-python/streampipes/model/staticproperty/free_text_StaticProperty.py (76%)
 copy streampipes-wrapper-python/streampipes/model/{config_item.py => staticproperty/static_property.py} (60%)
 copy streampipes-wrapper-python/streampipes/{base/__init__.py => model/staticproperty/static_property_visitor.py} (100%)
 copy streampipes-wrapper-siddhi/src/main/java/org/apache/streampipes/wrapper/siddhi/query/{LimitClause.java => OffsetClause.java} (75%)

[incubator-streampipes] 01/01: Merge branch 'dev' into STREAMPIPES-319

Posted by ri...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

riemer pushed a commit to branch STREAMPIPES-319
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git

commit 0d8ae17411257e7af1e291f57fe2ed9918b9b709
Merge: 6a569a9 22e98b2
Author: Dominik Riemer <ri...@fzi.de>
AuthorDate: Tue May 11 09:26:56 2021 +0200

    Merge branch 'dev' into STREAMPIPES-319

 docker-compose.yml                                 |  1 -
 streampipes-model/pom.xml                          |  4 ++
 .../model/base/AbstractStreamPipesEntity.java      |  9 +++++
 .../quality/EventPropertyQualityRequirement.java   | 10 +++++
 .../streampipes/model/runtime/SchemaInfo.java      |  9 +++++
 .../streampipes/model/schema/EventProperty.java    | 21 +++++++++++
 .../streampipes/model/schema/EventSchema.java      |  8 ++++
 streampipes-wrapper-python/streampipes/__init__.py |  2 +-
 streampipes-wrapper-python/streampipes/declarer.py |  2 -
 .../streampipes/instances.py                       |  2 +-
 streampipes-wrapper-python/streampipes/manager.py  |  2 +-
 .../streampipes/model/__init__.py                  |  2 +-
 .../streampipes/model/{ => base}/__init__.py       |  3 +-
 .../abstract_streampipes_entity.py}                |  6 ++-
 .../consumable_streampipes_entity.py}              |  9 ++++-
 .../base/named_streampipes_entity.py}              | 13 ++++---
 .../base/unnamed_streampipes_entity.py}            | 15 +++++---
 .../streampipes/model/config_item.py               |  2 +-
 .../streampipes/model/{ => graph}/__init__.py      |  2 +-
 .../model/graph/data_processor_description.py      | 43 ++++++++++++++++++++++
 .../model/{ => staticproperty}/__init__.py         |  3 +-
 .../free_text_StaticProperty.py}                   | 11 +++++-
 .../static_property.py}                            | 28 +++++++-------
 .../static_property_visitor.py}                    |  2 +-
 .../streampipes/submitter.py                       |  2 +-
 .../wrapper/siddhi/SiddhiQueryBuilder.java         |  9 +++++
 .../wrapper/siddhi/constants/SiddhiConstants.java  |  1 +
 .../wrapper/siddhi/query/OffsetClause.java         | 27 ++++++--------
 .../wrapper/siddhi/query/SiddhiQuery.java          | 15 ++++++++
 29 files changed, 206 insertions(+), 57 deletions(-)