You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by GitBox <gi...@apache.org> on 2019/12/05 06:37:41 UTC

[GitHub] [incubator-shardingsphere] ssxlulu edited a comment on issue #3256: Provider Scaling out Interface

ssxlulu edited a comment on issue #3256: Provider Scaling out Interface
URL: https://github.com/apache/incubator-shardingsphere/issues/3256#issuecomment-561922665
 
 
   Talk about the response body:
   1. Start action's reponse body: 
   ```
   {
       "message":"Start job success!",
       "content":{
           "id":"0"
       }
   }
   ```
   2. Query progress's response body:
   ```
   {
     "message": "Get progress of the job success!",
     "content": {
       "id": "0",
       "job_name": "",
       "data_node_progress": [
         {
           "id": "{host}-{port}-{schema}",
           "stage": "prepare/history_data/realtime_data/stopped",
           "history_data_progress": [
             {
               "id": "{schema}-{table}-split#0",
               "expected_rows": 0,
               "sycned_rows": 0
             }
           ],
           "realtime_data_progress": {
             "id": "{schema}-realtime",
             "log_positon": 0,
             "delay_second": 0
           }
         }
       ]
     }
   }
   ```
   3. Stop action's response body:
   ```
   {
       "message":"Stop job success!",
       "content":""
   }
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services