You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by me...@apache.org on 2022/01/14 06:08:19 UTC

[shardingsphere] branch master updated (8f31e32 -> 4747d3a)

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

menghaoran pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git.


    from 8f31e32  Rename package of config.props (#14762)
     add 4747d3a  Separate RuleAlteredJobAPI from PipelineJobAPI; Simplify SPI loading (#14759)

No new revisions were added by this update.

Summary of changes:
 .../distsql/handler/ApplyScalingUpdater.java       |   2 +-
 .../handler/CheckScalingQueryResultSet.java        |   4 +-
 .../distsql/handler/DropScalingUpdater.java        |   2 +-
 .../distsql/handler/ResetScalingUpdater.java       |   2 +-
 .../ShowScalingCheckAlgorithmsQueryResultSet.java  |   2 +-
 .../ShowScalingJobStatusQueryResultSet.java        |   2 +-
 .../handler/ShowScalingListQueryResultSet.java     |   2 +-
 .../distsql/handler/StartScalingUpdater.java       |   2 +-
 .../handler/StopScalingSourceWritingUpdater.java   |   2 +-
 .../distsql/handler/StopScalingUpdater.java        |   2 +-
 .../core/api/impl/AbstractPipelineJobAPIImpl.java  |  66 +++++++++++
 ...eJobAPIImpl.java => RuleAlteredJobAPIImpl.java} |  44 ++------
 .../data/pipeline/core/job/FinishedCheckJob.java   |  18 +--
 .../scenario/rulealtered/RuleAlteredJobWorker.java |   2 +-
 ...shardingsphere.data.pipeline.api.PipelineJobAPI |  18 ---
 ...rdingsphere.data.pipeline.api.RuleAlteredJobAPI |   2 +-
 .../data/pipeline/api/PipelineJobAPI.java          | 124 +--------------------
 .../data/pipeline/api/PipelineJobAPIFactory.java   |  19 +---
 ...{PipelineJobAPI.java => RuleAlteredJobAPI.java} |  27 +----
 .../consistency/DataConsistencyCheckAlgorithm.java |   3 +-
 ...mplTest.java => RuleAlteredJobAPIImplTest.java} |  62 +++++------
 .../pipeline/core/job/FinishedCheckJobTest.java    |  18 +--
 22 files changed, 152 insertions(+), 273 deletions(-)
 create mode 100644 shardingsphere-kernel/shardingsphere-data-pipeline/shardingsphere-data-pipeline-core/src/main/java/org/apache/shardingsphere/data/pipeline/core/api/impl/AbstractPipelineJobAPIImpl.java
 rename shardingsphere-kernel/shardingsphere-data-pipeline/shardingsphere-data-pipeline-core/src/main/java/org/apache/shardingsphere/data/pipeline/core/api/impl/{PipelineJobAPIImpl.java => RuleAlteredJobAPIImpl.java} (91%)
 delete mode 100644 shardingsphere-kernel/shardingsphere-data-pipeline/shardingsphere-data-pipeline-core/src/main/resources/META-INF/services/org.apache.shardingsphere.data.pipeline.api.PipelineJobAPI
 copy shardingsphere-features/shardingsphere-db-discovery/shardingsphere-db-discovery-core/src/main/resources/META-INF/services/org.apache.shardingsphere.infra.route.SQLRouter => shardingsphere-kernel/shardingsphere-data-pipeline/shardingsphere-data-pipeline-core/src/main/resources/META-INF/services/org.apache.shardingsphere.data.pipeline.api.RuleAlteredJobAPI (91%)
 copy shardingsphere-kernel/shardingsphere-data-pipeline/shardingsphere-data-pipeline-spi/src/main/java/org/apache/shardingsphere/data/pipeline/api/{PipelineJobAPI.java => RuleAlteredJobAPI.java} (89%)
 rename shardingsphere-test/shardingsphere-pipeline-test/src/test/java/org/apache/shardingsphere/data/pipeline/api/impl/{PipelineJobAPIImplTest.java => RuleAlteredJobAPIImplTest.java} (77%)