You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by GitBox <gi...@apache.org> on 2020/03/09 15:10:07 UTC

[GitHub] [incubator-dolphinscheduler] Hackeruncle commented on issue #2129: [BUG] Data truncation: Data too long for column 'app_link' at row 1

Hackeruncle commented on issue #2129: [BUG] Data truncation: Data too long for column 'app_link' at row 1
URL: https://github.com/apache/incubator-dolphinscheduler/issues/2129#issuecomment-596589763
 
 
   ```
   mysql> desc t_ds_task_instance
       -> ;
   +------------------------+--------------+------+-----+---------+----------------+
   | Field                  | Type         | Null | Key | Default | Extra          |
   +------------------------+--------------+------+-----+---------+----------------+
   | id                     | int(11)      | NO   | PRI | NULL    | auto_increment |
   | name                   | varchar(255) | YES  |     | NULL    |                |
   | task_type              | varchar(64)  | YES  |     | NULL    |                |
   | process_definition_id  | int(11)      | YES  | MUL | NULL    |                |
   | process_instance_id    | int(11)      | YES  | MUL | NULL    |                |
   | task_json              | longtext     | YES  |     | NULL    |                |
   | state                  | tinyint(4)   | YES  |     | NULL    |                |
   | submit_time            | datetime     | YES  |     | NULL    |                |
   | start_time             | datetime     | YES  |     | NULL    |                |
   | end_time               | datetime     | YES  |     | NULL    |                |
   | host                   | varchar(45)  | YES  |     | NULL    |                |
   | execute_path           | varchar(200) | YES  |     | NULL    |                |
   | log_path               | varchar(200) | YES  |     | NULL    |                |
   | alert_flag             | tinyint(4)   | YES  |     | NULL    |                |
   | retry_times            | int(4)       | YES  |     | 0       |                |
   | pid                    | int(4)       | YES  |     | NULL    |                |
   | app_link               | varchar(255) | YES  |     | NULL    |                |
   | flag                   | tinyint(4)   | YES  |     | 1       |                |
   | retry_interval         | int(4)       | YES  |     | NULL    |                |
   | max_retry_times        | int(2)       | YES  |     | NULL    |                |
   | task_instance_priority | int(11)      | YES  |     | NULL    |                |
   | worker_group_id        | int(11)      | YES  |     | -1      |                |
   +------------------------+--------------+------+-----+---------+----------------+
   22 rows in set (0.00 sec)
   
   mysql> alter table t_ds_task_instance modify app_link varchar(1024);
   Query OK, 0 rows affected (0.01 sec)
   Records: 0  Duplicates: 0  Warnings: 0
   ```

----------------------------------------------------------------
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