You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2020/08/10 23:28:18 UTC

[skywalking] branch oal/filter-expression updated (7776beb -> 891dcc5)

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

wusheng pushed a change to branch oal/filter-expression
in repository https://gitbox.apache.org/repos/asf/skywalking.git.


    from 7776beb  Remove unused codes
     add 7f7e96b  [IMPORTANT] Query traces with tags as condition (#5270)
     add 891dcc5  Merge branch 'master' into oal/filter-expression

No new revisions were added by this update.

Summary of changes:
 docs/en/setup/backend/configuration-vocabulary.md  |   9 +-
 .../parser/listener/SegmentAnalysisListener.java   |  30 ++++-
 .../src/main/resources/application.yml             |   8 +-
 .../apache/skywalking/oap/server/core/Const.java   |   1 +
 .../oap/server/core/CoreModuleConfig.java          |  24 ++++
 .../analysis/manual/segment/SegmentDispatcher.java |   2 +
 .../analysis/manual/segment/SegmentRecord.java     |  15 +++
 .../manual/segment/SpanTag.java}                   |  29 +++-
 .../oap/server/core/config/ConfigService.java      |   2 +
 .../oap/server/core/query/TraceQueryService.java   |   7 +-
 .../core/query/input/TraceQueryCondition.java      |   3 +
 .../skywalking/oap/server/core/source/Segment.java |   6 +
 .../server/core/storage/model/DataTypeMapping.java |   8 +-
 .../oap/server/core/storage/model/ModelColumn.java |  15 +--
 .../server/core/storage/model/StorageModels.java   |   4 +-
 .../server/core/storage/query/ITraceQueryDAO.java  |  18 ++-
 .../server/core/storage/model/ModelColumnTest.java |  10 +-
 .../oap/query/graphql/resolver/TraceQuery.java     |   2 +-
 .../src/main/resources/query-protocol              |   2 +-
 .../server/receiver/trace/mock/ServiceAMock.java   |   6 +-
 .../elasticsearch/base/ColumnTypeEsMapping.java    |   8 +-
 .../elasticsearch/base/StorageEsInstaller.java     |   4 +-
 .../elasticsearch/query/TraceQueryEsDAO.java       |  20 ++-
 .../ElasticSearchColumnTypeMappingTestCase.java    |  22 +--
 .../elasticsearch7/query/TraceQueryEs7DAO.java     |  19 ++-
 .../storage/plugin/influxdb/TableMetaInfo.java     |   5 +
 .../plugin/influxdb/base/InfluxInsertRequest.java  |   9 ++
 .../storage/plugin/influxdb/base/RecordDAO.java    |  21 +++
 .../storage/plugin/influxdb/query/TraceQuery.java  |  13 +-
 .../elasticsearch/JaegerTraceQueryEsDAO.java       |   4 +-
 .../storage/plugin/jdbc/h2/H2StorageConfig.java    |  29 ++++
 .../storage/plugin/jdbc/h2/H2StorageProvider.java  |  47 +++++--
 .../storage/plugin/jdbc/h2/dao/H2RecordDAO.java    |  41 +++++-
 .../storage/plugin/jdbc/h2/dao/H2SQLExecutor.java  |  33 +++--
 .../plugin/jdbc/h2/dao/H2SegmentRecordBuilder.java | 149 +++++++++++++++++++++
 .../storage/plugin/jdbc/h2/dao/H2StorageDAO.java   |  15 ++-
 .../plugin/jdbc/h2/dao/H2TableInstaller.java       |  50 +++++--
 .../plugin/jdbc/h2/dao/H2TraceQueryDAO.java        |  54 +++++++-
 .../plugin/jdbc/mysql/MySQLStorageConfig.java      |  16 ++-
 .../plugin/jdbc/mysql/MySQLStorageProvider.java    |  43 ++++--
 .../plugin/jdbc/mysql/MySQLTableInstaller.java     |  58 +++++---
 .../plugin/jdbc/mysql/MySQLTraceQueryDAO.java      |   8 +-
 .../elasticsearch/ZipkinTraceQueryEsDAO.java       |   4 +-
 .../profile/exporter/test/ProfileTraceDAO.java     |   4 +-
 44 files changed, 739 insertions(+), 138 deletions(-)
 copy oap-server/server-core/src/main/java/org/apache/skywalking/oap/server/core/{query/type/KeyValue.java => analysis/manual/segment/SpanTag.java} (55%)
 create mode 100644 oap-server/server-storage-plugin/storage-jdbc-hikaricp-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/jdbc/h2/dao/H2SegmentRecordBuilder.java