You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2021/02/20 13:14:54 UTC

[skywalking] branch enhance/log updated (5cb86f1 -> 2a53c1e)

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

kezhenxu94 pushed a change to branch enhance/log
in repository https://gitbox.apache.org/repos/asf/skywalking.git.


    from 5cb86f1  Merge branch 'master' into enhance/log
     add c45bb36  Storage plugin supports PostgreSQL (#6345)
     add 24e02ed  Merge remote-tracking branch 'origin/master' into enhance/log
     add 2a53c1e  Replace test pom SW version with real-time version

No new revisions were added by this update.

Summary of changes:
 .github/actions/e2e-test/action.yml                |   3 +-
 .github/workflows/e2e.istio.yaml                   |   8 +-
 .github/workflows/e2e.storages.yaml                |   2 +-
 .github/workflows/e2e.ttl.yaml                     |   2 +-
 CHANGES.md                                         |   1 +
 dist-material/release-docs/LICENSE                 |   1 +
 .../{LICENSE-asm.txt => LICENSE-postgresql.txt}    |  23 ++--
 docs/en/setup/backend/backend-storage.md           |  24 ++++
 docs/en/setup/backend/configuration-vocabulary.md  |   5 +
 oap-server/pom.xml                                 |   7 ++
 .../src/main/resources/application.yml             |  12 ++
 .../storage-jdbc-hikaricp-plugin/pom.xml           |   4 +
 .../plugin/jdbc/h2/dao/H2AggregationQueryDAO.java  |  21 ++--
 .../plugin/jdbc/h2/dao/H2MetricsQueryDAO.java      |   8 +-
 .../plugin/jdbc/mysql/MySQLAlarmQueryDAO.java      |   8 +-
 .../jdbc/postgresql/PostgreSQLStorageConfig.java}  |   5 +-
 .../postgresql/PostgreSQLStorageProvider.java}     | 126 ++++++++++-----------
 .../jdbc/postgresql/PostgreSQLTableInstaller.java  |  87 ++++++++++++++
 .../dao/PostgreSQLAggregationQueryDAO.java}        |  24 +++-
 .../dao/PostgreSQLAlarmQueryDAO.java}              |  27 +++--
 .../dao/PostgreSQLBrowserLogQueryDAO.java}         |  17 ++-
 .../dao/PostgreSQLLogQueryDAO.java}                |  21 ++--
 .../dao/PostgreSQLMetricsQueryDAO.java}            |  19 +++-
 .../dao/PostgreSQLTraceQueryDAO.java}              |  22 ++--
 ...alking.oap.server.library.module.ModuleProvider |   3 +-
 test/e2e/e2e-service-provider/pom.xml              |   1 -
 .../docker-compose.postgresql.yml}                 |  19 ++--
 .../docker-compose.postgresql.yml}                 |  19 ++--
 test/e2e/pom.xml                                   |   2 +
 .../known-oap-backend-dependencies-es7.txt         |   1 +
 .../known-oap-backend-dependencies.txt             |   1 +
 31 files changed, 349 insertions(+), 174 deletions(-)
 copy dist-material/release-docs/licenses/{LICENSE-asm.txt => LICENSE-postgresql.txt} (66%)
 copy oap-server/server-storage-plugin/{storage-tidb-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/jdbc/tidb/TiDBStorageConfig.java => storage-jdbc-hikaricp-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/jdbc/postgresql/PostgreSQLStorageConfig.java} (87%)
 copy oap-server/server-storage-plugin/{storage-tidb-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/jdbc/tidb/TiDBStorageProvider.java => storage-jdbc-hikaricp-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/jdbc/postgresql/PostgreSQLStorageProvider.java} (65%)
 create mode 100644 oap-server/server-storage-plugin/storage-jdbc-hikaricp-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/jdbc/postgresql/PostgreSQLTableInstaller.java
 copy oap-server/server-storage-plugin/storage-jdbc-hikaricp-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/jdbc/{mysql/MySQLAggregationQueryDAO.java => postgresql/dao/PostgreSQLAggregationQueryDAO.java} (55%)
 copy oap-server/server-storage-plugin/storage-jdbc-hikaricp-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/jdbc/{mysql/MysqlBrowserLogQueryDAO.java => postgresql/dao/PostgreSQLAlarmQueryDAO.java} (64%)
 copy oap-server/server-storage-plugin/storage-jdbc-hikaricp-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/jdbc/{mysql/MySQLAggregationQueryDAO.java => postgresql/dao/PostgreSQLBrowserLogQueryDAO.java} (68%)
 copy oap-server/server-storage-plugin/storage-jdbc-hikaricp-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/jdbc/{mysql/MySQLLogQueryDAO.java => postgresql/dao/PostgreSQLLogQueryDAO.java} (68%)
 copy oap-server/server-storage-plugin/storage-jdbc-hikaricp-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/jdbc/{mysql/MySQLAggregationQueryDAO.java => postgresql/dao/PostgreSQLMetricsQueryDAO.java} (60%)
 copy oap-server/server-storage-plugin/storage-jdbc-hikaricp-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/jdbc/{mysql/MySQLTraceQueryDAO.java => postgresql/dao/PostgreSQLTraceQueryDAO.java} (67%)
 copy test/e2e/e2e-test/docker/{event/docker-compose.es6.yml => storage/docker-compose.postgresql.yml} (83%)
 copy test/e2e/e2e-test/docker/{event/docker-compose.es6.yml => ttl/docker-compose.postgresql.yml} (83%)