You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2022/11/24 12:20:45 UTC

[iotdb] branch deploy_site_using_github updated (6a67ba3226 -> 931923eb23)

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

haonan pushed a change to branch deploy_site_using_github
in repository https://gitbox.apache.org/repos/asf/iotdb.git


    from 6a67ba3226 Deplopy website using github
     add a92b895eea [IOTDB-4830] Fixed some bugs when removing an unknown node (#8068)
     add 24de040d1f Fix tsfile split tool doc and move Status-Codes to Reference (#8124)
     add 3b2bd8198d Fix typo in user guide (#8127)
     add d9227e79fb [IOTDB-5033] Fix deadlock in memory pool (#8123)
     new 5c35c56f1d Merge branch 'master' of https://github.com/apache/iotdb into deploy_site_using_github
     new 57b03e2d51 add secrets
     new 931923eb23 add master

The 3 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:
 .github/workflows/site-build.yml                   |  5 +-
 .../client/sync/SyncDataNodeClientPool.java        | 14 +---
 .../procedure/env/ConfigNodeProcedureEnv.java      | 36 +++++++---
 .../procedure/env/DataNodeRemoveHandler.java       | 28 ++++++--
 .../impl/node/RemoveDataNodeProcedure.java         |  2 +-
 .../Maintenance-Tools/TsFile-Split-Tool.md         | 25 +++----
 docs/UserGuide/{API => Reference}/Status-Codes.md  |  0
 .../Maintenance-Tools/TsFile-Split-Tool.md         | 20 +++---
 docs/zh/UserGuide/Query-Data/Overview.md           |  9 ++-
 .../UserGuide/{API => Reference}/Status-Codes.md   |  0
 .../apache/iotdb/commons/client/ClientManager.java |  2 +-
 .../iotdb/db/mpp/execution/memory/MemoryPool.java  | 84 ++++++++++++++--------
 .../java/org/apache/iotdb/db/service/DataNode.java |  2 +-
 .../impl/DataNodeInternalRPCServiceImpl.java       |  2 +-
 .../java/org/apache/iotdb/rpc/TSStatusCode.java    |  4 +-
 site/src/main/.vuepress/config.js                  |  6 +-
 16 files changed, 141 insertions(+), 98 deletions(-)
 rename docs/UserGuide/{API => Reference}/Status-Codes.md (100%)
 rename docs/zh/UserGuide/{API => Reference}/Status-Codes.md (100%)


[iotdb] 01/03: Merge branch 'master' of https://github.com/apache/iotdb into deploy_site_using_github

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

haonan pushed a commit to branch deploy_site_using_github
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit 5c35c56f1d3f059a9150a86a9262ee9685de8cf9
Merge: 6a67ba3226 d9227e79fb
Author: HTHou <hh...@outlook.com>
AuthorDate: Thu Nov 24 15:45:38 2022 +0800

    Merge branch 'master' of https://github.com/apache/iotdb into deploy_site_using_github

 .../client/sync/SyncDataNodeClientPool.java        | 14 +---
 .../procedure/env/ConfigNodeProcedureEnv.java      | 36 +++++++---
 .../procedure/env/DataNodeRemoveHandler.java       | 28 ++++++--
 .../impl/node/RemoveDataNodeProcedure.java         |  2 +-
 .../Maintenance-Tools/TsFile-Split-Tool.md         | 25 +++----
 docs/UserGuide/{API => Reference}/Status-Codes.md  |  0
 .../Maintenance-Tools/TsFile-Split-Tool.md         | 20 +++---
 docs/zh/UserGuide/Query-Data/Overview.md           |  9 ++-
 .../UserGuide/{API => Reference}/Status-Codes.md   |  0
 .../apache/iotdb/commons/client/ClientManager.java |  2 +-
 .../iotdb/db/mpp/execution/memory/MemoryPool.java  | 84 ++++++++++++++--------
 .../java/org/apache/iotdb/db/service/DataNode.java |  2 +-
 .../impl/DataNodeInternalRPCServiceImpl.java       |  2 +-
 .../java/org/apache/iotdb/rpc/TSStatusCode.java    |  4 +-
 site/src/main/.vuepress/config.js                  |  6 +-
 15 files changed, 137 insertions(+), 97 deletions(-)


[iotdb] 02/03: add secrets

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

haonan pushed a commit to branch deploy_site_using_github
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit 57b03e2d51bf7ab608e7336d2016b686d5fcff63
Author: HTHou <hh...@outlook.com>
AuthorDate: Thu Nov 24 15:46:00 2022 +0800

    add secrets
---
 .github/workflows/site-build.yml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.github/workflows/site-build.yml b/.github/workflows/site-build.yml
index 01ad612048..7017f10318 100644
--- a/.github/workflows/site-build.yml
+++ b/.github/workflows/site-build.yml
@@ -52,7 +52,10 @@ jobs:
           key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
           restore-keys: ${{ runner.os }}-m2-
       - name: Compile and deploy website
+        env:
+          IOTDB_WEBSITE_BUILD: ${{ secrets.IOTDB_WEBSITE_BUILD }}
         run: |
+          git config --global url."https://asf-ci-deploy:$IOTDB_WEBSITE_BUILD@github.com/".insteadOf "https://github.com/"
           git config --global user.name github-actions
           git config --global user.email github-actions@github.com
           mvn -P site -P compile-site -P compile-site-0.13 -P compile-site-0.12 -P compile-site-0.11 -P compile-site-0.10 -P compile-site-0.9 -P compile-site-0.8 compile scm-publish:publish-scm -pl site
\ No newline at end of file


[iotdb] 03/03: add master

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

haonan pushed a commit to branch deploy_site_using_github
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit 931923eb233bc695de1095c7032e68b138fce092
Author: HTHou <hh...@outlook.com>
AuthorDate: Thu Nov 24 20:20:31 2022 +0800

    add master
---
 .github/workflows/site-build.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/site-build.yml b/.github/workflows/site-build.yml
index 7017f10318..964c2f2d43 100644
--- a/.github/workflows/site-build.yml
+++ b/.github/workflows/site-build.yml
@@ -41,7 +41,7 @@ jobs:
 
   deploy:
     runs-on: ubuntu-latest
-    if: github.event_name == 'workflow_dispatch' || github.event_name == 'push'
+    if: github.event_name == 'workflow_dispatch' && github.ref_name == 'master' || github.event_name == 'push'
 
     steps:
       - uses: actions/checkout@v3