Commit ac2f3b279d3f8b459816cba210ca6a38c93fa16d
1 parent
3fa956f1
update
Showing
5 changed files
with
1034 additions
and
45 deletions
src/main/java/com/bsth/entity/schedule/GuideboardInfo.java
| 1 | 1 | package com.bsth.entity.schedule; |
| 2 | 2 | |
| 3 | 3 | import com.bsth.entity.Line; |
| 4 | +import com.bsth.entity.sys.SysUser; | |
| 4 | 5 | |
| 5 | 6 | import javax.persistence.*; |
| 6 | 7 | import javax.persistence.Table; |
| ... | ... | @@ -23,19 +24,30 @@ public class GuideboardInfo { |
| 23 | 24 | private Line xl; |
| 24 | 25 | |
| 25 | 26 | /** 路牌顺序号 */ |
| 26 | - private int lpNo; | |
| 27 | + @Column(nullable = false) | |
| 28 | + private Integer lpNo; | |
| 27 | 29 | /** 路牌名称 */ |
| 30 | + @Column(nullable = false) | |
| 28 | 31 | private String lpName; |
| 29 | 32 | /** 路牌类型(普通路牌/临加路牌) */ |
| 33 | + @Column(nullable = false) | |
| 30 | 34 | private String lpType; |
| 31 | 35 | |
| 32 | - // 创建日期 | |
| 36 | + /** 创建人 */ | |
| 37 | + @ManyToOne(fetch = FetchType.LAZY, cascade = CascadeType.PERSIST) | |
| 38 | + private SysUser createBy; | |
| 39 | + /** 修改人 */ | |
| 40 | + @ManyToOne(fetch = FetchType.LAZY, cascade = CascadeType.PERSIST) | |
| 41 | + private SysUser updateBy; | |
| 42 | + | |
| 43 | + /** 创建日期 */ | |
| 33 | 44 | @Column(updatable = false, name = "create_date", columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP") |
| 34 | 45 | private Date createDate; |
| 35 | - // 修改日期 | |
| 46 | + /** 修改日期 */ | |
| 36 | 47 | @Column(name = "update_date", columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP") |
| 37 | 48 | private Date updateDate; |
| 38 | 49 | |
| 50 | + | |
| 39 | 51 | public Long getId() { |
| 40 | 52 | return id; |
| 41 | 53 | } |
| ... | ... | @@ -52,11 +64,11 @@ public class GuideboardInfo { |
| 52 | 64 | this.xl = xl; |
| 53 | 65 | } |
| 54 | 66 | |
| 55 | - public int getLpNo() { | |
| 67 | + public Integer getLpNo() { | |
| 56 | 68 | return lpNo; |
| 57 | 69 | } |
| 58 | 70 | |
| 59 | - public void setLpNo(int lpNo) { | |
| 71 | + public void setLpNo(Integer lpNo) { | |
| 60 | 72 | this.lpNo = lpNo; |
| 61 | 73 | } |
| 62 | 74 | |
| ... | ... | @@ -76,6 +88,22 @@ public class GuideboardInfo { |
| 76 | 88 | this.lpType = lpType; |
| 77 | 89 | } |
| 78 | 90 | |
| 91 | + public SysUser getCreateBy() { | |
| 92 | + return createBy; | |
| 93 | + } | |
| 94 | + | |
| 95 | + public void setCreateBy(SysUser createBy) { | |
| 96 | + this.createBy = createBy; | |
| 97 | + } | |
| 98 | + | |
| 99 | + public SysUser getUpdateBy() { | |
| 100 | + return updateBy; | |
| 101 | + } | |
| 102 | + | |
| 103 | + public void setUpdateBy(SysUser updateBy) { | |
| 104 | + this.updateBy = updateBy; | |
| 105 | + } | |
| 106 | + | |
| 79 | 107 | public Date getCreateDate() { |
| 80 | 108 | return createDate; |
| 81 | 109 | } | ... | ... |
src/main/java/com/bsth/entity/schedule/TTInfo.java
| ... | ... | @@ -23,15 +23,18 @@ public class TTInfo { |
| 23 | 23 | private Line xl; |
| 24 | 24 | |
| 25 | 25 | /** 时刻表名称 */ |
| 26 | + @Column(nullable = false, unique = true) | |
| 26 | 27 | private String name; |
| 27 | 28 | /** 线路方向(TODO:上下行,上行,下行,这个以后用枚举还是字典再议,现在先用文字) */ |
| 29 | + @Column(nullable = false) | |
| 28 | 30 | private String xlDir; |
| 29 | 31 | /** 启用日期 */ |
| 32 | + @Column(nullable = false) | |
| 30 | 33 | private Date qyrq; |
| 31 | 34 | /** 模版类型(TODO:时刻表,间隔式,这个以后用枚举还是字典再议,现在先用文字) */ |
| 32 | 35 | private String templateType; |
| 33 | 36 | /** 是否启用调度模版 */ |
| 34 | - private boolean isEnableDisTemplate; | |
| 37 | + private Boolean isEnableDisTemplate; | |
| 35 | 38 | /** 路牌数 */ |
| 36 | 39 | private int lpCount; |
| 37 | 40 | /** 圈数 */ |
| ... | ... | @@ -51,11 +54,11 @@ public class TTInfo { |
| 51 | 54 | private boolean isEnable; |
| 52 | 55 | |
| 53 | 56 | /** 操作人员关联 */ |
| 54 | - @ManyToOne(optional = false, cascade = CascadeType.PERSIST, fetch = FetchType.LAZY) | |
| 55 | - private SysUser createUser; | |
| 57 | + @ManyToOne(cascade = CascadeType.PERSIST, fetch = FetchType.LAZY) | |
| 58 | + private SysUser createBy; | |
| 56 | 59 | /** 更新人员关联 */ |
| 57 | - @ManyToOne(optional = false, cascade = CascadeType.PERSIST, fetch = FetchType.LAZY) | |
| 58 | - private SysUser updateUser; | |
| 60 | + @ManyToOne(cascade = CascadeType.PERSIST, fetch = FetchType.LAZY) | |
| 61 | + private SysUser updateBy; | |
| 59 | 62 | // 创建日期 |
| 60 | 63 | @Column(updatable = false, name = "create_date", columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP") |
| 61 | 64 | private Date createDate; |
| ... | ... | @@ -63,6 +66,7 @@ public class TTInfo { |
| 63 | 66 | @Column(name = "update_date", columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP") |
| 64 | 67 | private Date updateDate; |
| 65 | 68 | |
| 69 | + | |
| 66 | 70 | public Long getId() { |
| 67 | 71 | return id; |
| 68 | 72 | } |
| ... | ... | @@ -111,11 +115,11 @@ public class TTInfo { |
| 111 | 115 | this.templateType = templateType; |
| 112 | 116 | } |
| 113 | 117 | |
| 114 | - public boolean isEnableDisTemplate() { | |
| 118 | + public Boolean getIsEnableDisTemplate() { | |
| 115 | 119 | return isEnableDisTemplate; |
| 116 | 120 | } |
| 117 | 121 | |
| 118 | - public void setIsEnableDisTemplate(boolean isEnableDisTemplate) { | |
| 122 | + public void setIsEnableDisTemplate(Boolean isEnableDisTemplate) { | |
| 119 | 123 | this.isEnableDisTemplate = isEnableDisTemplate; |
| 120 | 124 | } |
| 121 | 125 | |
| ... | ... | @@ -159,20 +163,20 @@ public class TTInfo { |
| 159 | 163 | this.isEnable = isEnable; |
| 160 | 164 | } |
| 161 | 165 | |
| 162 | - public SysUser getCreateUser() { | |
| 163 | - return createUser; | |
| 166 | + public SysUser getCreateBy() { | |
| 167 | + return createBy; | |
| 164 | 168 | } |
| 165 | 169 | |
| 166 | - public void setCreateUser(SysUser createUser) { | |
| 167 | - this.createUser = createUser; | |
| 170 | + public void setCreateBy(SysUser createBy) { | |
| 171 | + this.createBy = createBy; | |
| 168 | 172 | } |
| 169 | 173 | |
| 170 | - public SysUser getUpdateUser() { | |
| 171 | - return updateUser; | |
| 174 | + public SysUser getUpdateBy() { | |
| 175 | + return updateBy; | |
| 172 | 176 | } |
| 173 | 177 | |
| 174 | - public void setUpdateUser(SysUser updateUser) { | |
| 175 | - this.updateUser = updateUser; | |
| 178 | + public void setUpdateBy(SysUser updateBy) { | |
| 179 | + this.updateBy = updateBy; | |
| 176 | 180 | } |
| 177 | 181 | |
| 178 | 182 | public Date getCreateDate() { | ... | ... |
src/main/java/com/bsth/entity/schedule/TTInfoDetail.java
| 1 | 1 | package com.bsth.entity.schedule; |
| 2 | 2 | |
| 3 | +import com.bsth.entity.CarPark; | |
| 3 | 4 | import com.bsth.entity.Line; |
| 4 | 5 | import com.bsth.entity.Station; |
| 6 | +import com.bsth.entity.sys.SysUser; | |
| 5 | 7 | |
| 6 | 8 | import javax.persistence.*; |
| 7 | 9 | import java.util.Date; |
| ... | ... | @@ -10,7 +12,7 @@ import java.util.Date; |
| 10 | 12 | * 时刻表明细 |
| 11 | 13 | */ |
| 12 | 14 | @Entity |
| 13 | -@Table(name = "bsth_c_s_ttkinfo_detail") | |
| 15 | +@Table(name = "bsth_c_s_ttinfo_detail") | |
| 14 | 16 | public class TTInfoDetail { |
| 15 | 17 | |
| 16 | 18 | /** 主健Id */ |
| ... | ... | @@ -18,43 +20,54 @@ public class TTInfoDetail { |
| 18 | 20 | @GeneratedValue |
| 19 | 21 | private Long id; |
| 20 | 22 | |
| 21 | - /** 主对象关联 */ | |
| 22 | - @ManyToOne(optional = false, cascade = CascadeType.ALL, fetch = FetchType.LAZY) | |
| 23 | + | |
| 24 | + /** 关联线路 */ | |
| 25 | + @ManyToOne(optional = false, cascade = CascadeType.PERSIST, fetch = FetchType.LAZY) | |
| 26 | + private Line xl; | |
| 27 | + /** 时刻表主对象关联 */ | |
| 28 | + @ManyToOne(optional = false, cascade = CascadeType.PERSIST, fetch = FetchType.LAZY) | |
| 23 | 29 | private TTInfo ttinfo; |
| 24 | 30 | /** 关联的路牌 */ |
| 25 | - @ManyToOne(optional = false, cascade = CascadeType.ALL, fetch = FetchType.LAZY) | |
| 31 | + @ManyToOne(optional = false, cascade = CascadeType.PERSIST, fetch = FetchType.LAZY) | |
| 26 | 32 | private GuideboardInfo lp; |
| 27 | 33 | |
| 28 | 34 | /** 发车顺序号 */ |
| 29 | - private int fcno; | |
| 35 | + @Column(nullable = false) | |
| 36 | + private Integer fcno; | |
| 30 | 37 | /** 线路方向(TODO:上下行,上行,下行,这个以后用枚举还是字典再议,现在先用文字) */ |
| 38 | + @Column(nullable = false) | |
| 31 | 39 | private String xlDir; |
| 32 | 40 | /** 起点站关联 */ |
| 33 | - @ManyToOne(optional = false, cascade = CascadeType.PERSIST, fetch = FetchType.LAZY) | |
| 41 | + @ManyToOne(cascade = CascadeType.PERSIST, fetch = FetchType.LAZY) | |
| 34 | 42 | private Station qdz; |
| 35 | 43 | /** 终点站关联 */ |
| 36 | - @ManyToOne(optional = false, cascade = CascadeType.PERSIST, fetch = FetchType.LAZY) | |
| 44 | + @ManyToOne(cascade = CascadeType.PERSIST, fetch = FetchType.LAZY) | |
| 37 | 45 | private Station zdz; |
| 46 | + /** 停车场关联(出场,进场班次会关联停车场) */ | |
| 47 | + @ManyToOne(cascade = CascadeType.PERSIST, fetch = FetchType.LAZY) | |
| 48 | + private CarPark tcc; | |
| 38 | 49 | |
| 39 | 50 | /** 发车时间(格式 HH:mm) */ |
| 40 | - @Column(length = 5) | |
| 51 | + @Column(nullable = false, length = 5) | |
| 41 | 52 | private String fcsj; |
| 42 | 53 | /** 对应班次数 */ |
| 43 | - private int bcs; | |
| 54 | + private Integer bcs; | |
| 55 | + @Column(nullable = false) | |
| 44 | 56 | /** 计划里程 */ |
| 45 | - private double jhlc; | |
| 57 | + private Double jhlc; | |
| 46 | 58 | /** 班次历时 */ |
| 47 | - private int bcsj; | |
| 59 | + private Integer bcsj; | |
| 48 | 60 | |
| 49 | 61 | /** |
| 50 | 62 | * 班次类型 |
| 51 | 63 | * TODO:正常班次、出场、进场、加油、临加班次、区间班次、放空班次、放大站班次、两点间空驶 |
| 52 | 64 | * TODO:这个以后用枚举还是字典再议,现在先用文字 |
| 53 | 65 | */ |
| 66 | + @Column(nullable = false) | |
| 54 | 67 | private String bcType; |
| 55 | 68 | |
| 56 | 69 | /** 是否切换线路 */ |
| 57 | - private boolean isSwitchXl = false; | |
| 70 | + private Boolean isSwitchXl; | |
| 58 | 71 | /** 切换的线路(isSwitchXl == true) */ |
| 59 | 72 | @ManyToOne(cascade = CascadeType.PERSIST, fetch = FetchType.LAZY) |
| 60 | 73 | private Line switchXl; |
| ... | ... | @@ -63,14 +76,20 @@ public class TTInfoDetail { |
| 63 | 76 | /** 备注 */ |
| 64 | 77 | private String remark; |
| 65 | 78 | |
| 66 | - // 创建日期 | |
| 79 | + /** 创建人 */ | |
| 80 | + @ManyToOne(cascade = CascadeType.PERSIST, fetch = FetchType.LAZY) | |
| 81 | + private SysUser createBy; | |
| 82 | + /** 修改人 */ | |
| 83 | + @ManyToOne(cascade = CascadeType.PERSIST, fetch = FetchType.LAZY) | |
| 84 | + private SysUser updateBy; | |
| 85 | + | |
| 86 | + /** 创建日期 */ | |
| 67 | 87 | @Column(updatable = false, name = "create_date", columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP") |
| 68 | 88 | private Date createDate; |
| 69 | - // 修改日期 | |
| 89 | + /** 修改日期 */ | |
| 70 | 90 | @Column(name = "update_date", columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP") |
| 71 | 91 | private Date updateDate; |
| 72 | 92 | |
| 73 | - | |
| 74 | 93 | public Long getId() { |
| 75 | 94 | return id; |
| 76 | 95 | } |
| ... | ... | @@ -79,6 +98,14 @@ public class TTInfoDetail { |
| 79 | 98 | this.id = id; |
| 80 | 99 | } |
| 81 | 100 | |
| 101 | + public Line getXl() { | |
| 102 | + return xl; | |
| 103 | + } | |
| 104 | + | |
| 105 | + public void setXl(Line xl) { | |
| 106 | + this.xl = xl; | |
| 107 | + } | |
| 108 | + | |
| 82 | 109 | public TTInfo getTtinfo() { |
| 83 | 110 | return ttinfo; |
| 84 | 111 | } |
| ... | ... | @@ -95,11 +122,11 @@ public class TTInfoDetail { |
| 95 | 122 | this.lp = lp; |
| 96 | 123 | } |
| 97 | 124 | |
| 98 | - public int getFcno() { | |
| 125 | + public Integer getFcno() { | |
| 99 | 126 | return fcno; |
| 100 | 127 | } |
| 101 | 128 | |
| 102 | - public void setFcno(int fcno) { | |
| 129 | + public void setFcno(Integer fcno) { | |
| 103 | 130 | this.fcno = fcno; |
| 104 | 131 | } |
| 105 | 132 | |
| ... | ... | @@ -135,27 +162,27 @@ public class TTInfoDetail { |
| 135 | 162 | this.fcsj = fcsj; |
| 136 | 163 | } |
| 137 | 164 | |
| 138 | - public int getBcs() { | |
| 165 | + public Integer getBcs() { | |
| 139 | 166 | return bcs; |
| 140 | 167 | } |
| 141 | 168 | |
| 142 | - public void setBcs(int bcs) { | |
| 169 | + public void setBcs(Integer bcs) { | |
| 143 | 170 | this.bcs = bcs; |
| 144 | 171 | } |
| 145 | 172 | |
| 146 | - public double getJhlc() { | |
| 173 | + public Double getJhlc() { | |
| 147 | 174 | return jhlc; |
| 148 | 175 | } |
| 149 | 176 | |
| 150 | - public void setJhlc(double jhlc) { | |
| 177 | + public void setJhlc(Double jhlc) { | |
| 151 | 178 | this.jhlc = jhlc; |
| 152 | 179 | } |
| 153 | 180 | |
| 154 | - public int getBcsj() { | |
| 181 | + public Integer getBcsj() { | |
| 155 | 182 | return bcsj; |
| 156 | 183 | } |
| 157 | 184 | |
| 158 | - public void setBcsj(int bcsj) { | |
| 185 | + public void setBcsj(Integer bcsj) { | |
| 159 | 186 | this.bcsj = bcsj; |
| 160 | 187 | } |
| 161 | 188 | |
| ... | ... | @@ -167,11 +194,11 @@ public class TTInfoDetail { |
| 167 | 194 | this.bcType = bcType; |
| 168 | 195 | } |
| 169 | 196 | |
| 170 | - public boolean isSwitchXl() { | |
| 197 | + public Boolean getIsSwitchXl() { | |
| 171 | 198 | return isSwitchXl; |
| 172 | 199 | } |
| 173 | 200 | |
| 174 | - public void setIsSwitchXl(boolean isSwitchXl) { | |
| 201 | + public void setIsSwitchXl(Boolean isSwitchXl) { | |
| 175 | 202 | this.isSwitchXl = isSwitchXl; |
| 176 | 203 | } |
| 177 | 204 | |
| ... | ... | @@ -199,6 +226,22 @@ public class TTInfoDetail { |
| 199 | 226 | this.remark = remark; |
| 200 | 227 | } |
| 201 | 228 | |
| 229 | + public SysUser getCreateBy() { | |
| 230 | + return createBy; | |
| 231 | + } | |
| 232 | + | |
| 233 | + public void setCreateBy(SysUser createBy) { | |
| 234 | + this.createBy = createBy; | |
| 235 | + } | |
| 236 | + | |
| 237 | + public SysUser getUpdateBy() { | |
| 238 | + return updateBy; | |
| 239 | + } | |
| 240 | + | |
| 241 | + public void setUpdateBy(SysUser updateBy) { | |
| 242 | + this.updateBy = updateBy; | |
| 243 | + } | |
| 244 | + | |
| 202 | 245 | public Date getCreateDate() { |
| 203 | 246 | return createDate; |
| 204 | 247 | } |
| ... | ... | @@ -214,4 +257,12 @@ public class TTInfoDetail { |
| 214 | 257 | public void setUpdateDate(Date updateDate) { |
| 215 | 258 | this.updateDate = updateDate; |
| 216 | 259 | } |
| 260 | + | |
| 261 | + public CarPark getTcc() { | |
| 262 | + return tcc; | |
| 263 | + } | |
| 264 | + | |
| 265 | + public void setTcc(CarPark tcc) { | |
| 266 | + this.tcc = tcc; | |
| 267 | + } | |
| 217 | 268 | } | ... | ... |
src/main/resources/var2.csv
0 → 100644
| 1 | +auto_increment_increment,1 | |
| 2 | +auto_increment_offset,1 | |
| 3 | +autocommit,ON | |
| 4 | +automatic_sp_privileges,ON | |
| 5 | +avoid_temporal_upgrade,OFF | |
| 6 | +back_log,1024 | |
| 7 | +basedir,/usr/local/mysql | |
| 8 | +big_tables,OFF | |
| 9 | +bind_address,* | |
| 10 | +binlog_cache_size,4194304 | |
| 11 | +binlog_checksum,CRC32 | |
| 12 | +binlog_direct_non_transactional_updates,OFF | |
| 13 | +binlog_error_action,IGNORE_ERROR | |
| 14 | +binlog_format,MIXED | |
| 15 | +binlog_gtid_simple_recovery,OFF | |
| 16 | +binlog_max_flush_queue_time,0 | |
| 17 | +binlog_order_commits,ON | |
| 18 | +binlog_row_image,FULL | |
| 19 | +binlog_rows_query_log_events,OFF | |
| 20 | +binlog_stmt_cache_size,32768 | |
| 21 | +binlogging_impossible_mode,IGNORE_ERROR | |
| 22 | +block_encryption_mode,aes-128-ecb | |
| 23 | +bulk_insert_buffer_size,8388608 | |
| 24 | +character_set_client,utf8 | |
| 25 | +character_set_connection,utf8 | |
| 26 | +character_set_database,utf8 | |
| 27 | +character_set_filesystem,binary | |
| 28 | +character_set_results,utf8 | |
| 29 | +character_set_server,utf8 | |
| 30 | +character_set_system,utf8 | |
| 31 | +character_sets_dir,/usr/local/mysql/share/charsets/ | |
| 32 | +collation_connection,utf8_general_ci | |
| 33 | +collation_database,utf8_general_ci | |
| 34 | +collation_server,utf8_general_ci | |
| 35 | +completion_type,NO_CHAIN | |
| 36 | +concurrent_insert,AUTO | |
| 37 | +connect_timeout,10 | |
| 38 | +core_file,OFF | |
| 39 | +datadir,/data/mysql/mysql_3306/data/ | |
| 40 | +date_format,%Y-%m-%d | |
| 41 | +datetime_format,"%Y-%m-%d %H:%i:%s" | |
| 42 | +default_storage_engine,InnoDB | |
| 43 | +default_tmp_storage_engine,InnoDB | |
| 44 | +default_week_format,0 | |
| 45 | +delay_key_write,ON | |
| 46 | +delayed_insert_limit,100 | |
| 47 | +delayed_insert_timeout,300 | |
| 48 | +delayed_queue_size,1000 | |
| 49 | +disconnect_on_expired_password,ON | |
| 50 | +div_precision_increment,4 | |
| 51 | +end_markers_in_json,OFF | |
| 52 | +enforce_gtid_consistency,OFF | |
| 53 | +eq_range_index_dive_limit,10 | |
| 54 | +error_count,0 | |
| 55 | +event_scheduler,OFF | |
| 56 | +expire_logs_days,7 | |
| 57 | +explicit_defaults_for_timestamp,OFF | |
| 58 | +external_user, | |
| 59 | +flush,OFF | |
| 60 | +flush_time,0 | |
| 61 | +foreign_key_checks,ON | |
| 62 | +ft_boolean_syntax,"+ -><()~*:""""&|" | |
| 63 | +ft_max_word_len,84 | |
| 64 | +ft_min_word_len,4 | |
| 65 | +ft_query_expansion_limit,20 | |
| 66 | +ft_stopword_file,(built-in) | |
| 67 | +general_log,OFF | |
| 68 | +general_log_file,/data/mysql/mysql_3306/data/localhost.log | |
| 69 | +group_concat_max_len,1024 | |
| 70 | +gtid_executed, | |
| 71 | +gtid_mode,OFF | |
| 72 | +gtid_next,AUTOMATIC | |
| 73 | +gtid_owned, | |
| 74 | +gtid_purged, | |
| 75 | +have_compress,YES | |
| 76 | +have_crypt,YES | |
| 77 | +have_dynamic_loading,YES | |
| 78 | +have_geometry,YES | |
| 79 | +have_openssl,DISABLED | |
| 80 | +have_profiling,YES | |
| 81 | +have_query_cache,YES | |
| 82 | +have_rtree_keys,YES | |
| 83 | +have_ssl,DISABLED | |
| 84 | +have_symlink,YES | |
| 85 | +host_cache_size,653 | |
| 86 | +hostname,localhost.localdomain | |
| 87 | +identity,0 | |
| 88 | +ignore_builtin_innodb,OFF | |
| 89 | +ignore_db_dirs, | |
| 90 | +init_connect, | |
| 91 | +init_file, | |
| 92 | +init_slave, | |
| 93 | +innodb_adaptive_flushing,ON | |
| 94 | +innodb_adaptive_flushing_lwm,10 | |
| 95 | +innodb_adaptive_hash_index,ON | |
| 96 | +innodb_adaptive_max_sleep_delay,150000 | |
| 97 | +innodb_additional_mem_pool_size,8388608 | |
| 98 | +innodb_api_bk_commit_interval,5 | |
| 99 | +innodb_api_disable_rowlock,OFF | |
| 100 | +innodb_api_enable_binlog,OFF | |
| 101 | +innodb_api_enable_mdl,OFF | |
| 102 | +innodb_api_trx_level,0 | |
| 103 | +innodb_autoextend_increment,64 | |
| 104 | +innodb_autoinc_lock_mode,1 | |
| 105 | +innodb_buffer_pool_dump_at_shutdown,OFF | |
| 106 | +innodb_buffer_pool_dump_now,OFF | |
| 107 | +innodb_buffer_pool_filename,ib_buffer_pool | |
| 108 | +innodb_buffer_pool_instances,8 | |
| 109 | +innodb_buffer_pool_load_abort,OFF | |
| 110 | +innodb_buffer_pool_load_at_startup,OFF | |
| 111 | +innodb_buffer_pool_load_now,OFF | |
| 112 | +innodb_buffer_pool_size,134217728 | |
| 113 | +innodb_change_buffer_max_size,25 | |
| 114 | +innodb_change_buffering,all | |
| 115 | +innodb_checksum_algorithm,innodb | |
| 116 | +innodb_checksums,ON | |
| 117 | +innodb_cmp_per_index_enabled,OFF | |
| 118 | +innodb_commit_concurrency,0 | |
| 119 | +innodb_compression_failure_threshold_pct,5 | |
| 120 | +innodb_compression_level,6 | |
| 121 | +innodb_compression_pad_pct_max,50 | |
| 122 | +innodb_concurrency_tickets,5000 | |
| 123 | +innodb_data_file_path,ibdata1:12M:autoextend | |
| 124 | +innodb_data_home_dir, | |
| 125 | +innodb_disable_sort_file_cache,OFF | |
| 126 | +innodb_doublewrite,ON | |
| 127 | +innodb_fast_shutdown,1 | |
| 128 | +innodb_file_format,Antelope | |
| 129 | +innodb_file_format_check,ON | |
| 130 | +innodb_file_format_max,Antelope | |
| 131 | +innodb_file_per_table,ON | |
| 132 | +innodb_flush_log_at_timeout,1 | |
| 133 | +innodb_flush_log_at_trx_commit,1 | |
| 134 | +innodb_flush_method, | |
| 135 | +innodb_flush_neighbors,1 | |
| 136 | +innodb_flushing_avg_loops,30 | |
| 137 | +innodb_force_load_corrupted,OFF | |
| 138 | +innodb_force_recovery,0 | |
| 139 | +innodb_ft_aux_table, | |
| 140 | +innodb_ft_cache_size,8000000 | |
| 141 | +innodb_ft_enable_diag_print,OFF | |
| 142 | +innodb_ft_enable_stopword,ON | |
| 143 | +innodb_ft_max_token_size,84 | |
| 144 | +innodb_ft_min_token_size,3 | |
| 145 | +innodb_ft_num_word_optimize,2000 | |
| 146 | +innodb_ft_result_cache_limit,2000000000 | |
| 147 | +innodb_ft_server_stopword_table, | |
| 148 | +innodb_ft_sort_pll_degree,2 | |
| 149 | +innodb_ft_total_cache_size,640000000 | |
| 150 | +innodb_ft_user_stopword_table, | |
| 151 | +innodb_io_capacity,200 | |
| 152 | +innodb_io_capacity_max,2000 | |
| 153 | +innodb_large_prefix,OFF | |
| 154 | +innodb_lock_wait_timeout,50 | |
| 155 | +innodb_locks_unsafe_for_binlog,OFF | |
| 156 | +innodb_log_buffer_size,8388608 | |
| 157 | +innodb_log_compressed_pages,ON | |
| 158 | +innodb_log_file_size,50331648 | |
| 159 | +innodb_log_files_in_group,2 | |
| 160 | +innodb_log_group_home_dir,./ | |
| 161 | +innodb_lru_scan_depth,1024 | |
| 162 | +innodb_max_dirty_pages_pct,75 | |
| 163 | +innodb_max_dirty_pages_pct_lwm,0 | |
| 164 | +innodb_max_purge_lag,0 | |
| 165 | +innodb_max_purge_lag_delay,0 | |
| 166 | +innodb_mirrored_log_groups,1 | |
| 167 | +innodb_monitor_disable, | |
| 168 | +innodb_monitor_enable, | |
| 169 | +innodb_monitor_reset, | |
| 170 | +innodb_monitor_reset_all, | |
| 171 | +innodb_old_blocks_pct,37 | |
| 172 | +innodb_old_blocks_time,1000 | |
| 173 | +innodb_online_alter_log_max_size,134217728 | |
| 174 | +innodb_open_files,2000 | |
| 175 | +innodb_optimize_fulltext_only,OFF | |
| 176 | +innodb_page_size,16384 | |
| 177 | +innodb_print_all_deadlocks,OFF | |
| 178 | +innodb_purge_batch_size,300 | |
| 179 | +innodb_purge_threads,1 | |
| 180 | +innodb_random_read_ahead,OFF | |
| 181 | +innodb_read_ahead_threshold,56 | |
| 182 | +innodb_read_io_threads,4 | |
| 183 | +innodb_read_only,OFF | |
| 184 | +innodb_replication_delay,0 | |
| 185 | +innodb_rollback_on_timeout,OFF | |
| 186 | +innodb_rollback_segments,128 | |
| 187 | +innodb_sort_buffer_size,1048576 | |
| 188 | +innodb_spin_wait_delay,6 | |
| 189 | +innodb_stats_auto_recalc,ON | |
| 190 | +innodb_stats_method,nulls_equal | |
| 191 | +innodb_stats_on_metadata,OFF | |
| 192 | +innodb_stats_persistent,ON | |
| 193 | +innodb_stats_persistent_sample_pages,20 | |
| 194 | +innodb_stats_sample_pages,8 | |
| 195 | +innodb_stats_transient_sample_pages,8 | |
| 196 | +innodb_status_output,OFF | |
| 197 | +innodb_status_output_locks,OFF | |
| 198 | +innodb_strict_mode,OFF | |
| 199 | +innodb_support_xa,OFF | |
| 200 | +innodb_sync_array_size,1 | |
| 201 | +innodb_sync_spin_loops,30 | |
| 202 | +innodb_table_locks,ON | |
| 203 | +innodb_thread_concurrency,0 | |
| 204 | +innodb_thread_sleep_delay,10000 | |
| 205 | +innodb_tmpdir, | |
| 206 | +innodb_undo_directory,. | |
| 207 | +innodb_undo_logs,128 | |
| 208 | +innodb_undo_tablespaces,0 | |
| 209 | +innodb_use_native_aio,ON | |
| 210 | +innodb_use_sys_malloc,ON | |
| 211 | +innodb_version,5.6.29 | |
| 212 | +innodb_write_io_threads,4 | |
| 213 | +insert_id,0 | |
| 214 | +interactive_timeout,28800 | |
| 215 | +join_buffer_size,262144 | |
| 216 | +keep_files_on_create,OFF | |
| 217 | +key_buffer_size,8388608 | |
| 218 | +key_cache_age_threshold,300 | |
| 219 | +key_cache_block_size,1024 | |
| 220 | +key_cache_division_limit,100 | |
| 221 | +large_files_support,ON | |
| 222 | +large_page_size,0 | |
| 223 | +large_pages,OFF | |
| 224 | +last_insert_id,0 | |
| 225 | +lc_messages,en_US | |
| 226 | +lc_messages_dir,/usr/local/mysql/share/ | |
| 227 | +lc_time_names,en_US | |
| 228 | +license,GPL | |
| 229 | +local_infile,ON | |
| 230 | +lock_wait_timeout,31536000 | |
| 231 | +locked_in_memory,OFF | |
| 232 | +log_bin,ON | |
| 233 | +log_bin_basename,/data/mysql/mysql_3306/data/mysql-bin | |
| 234 | +log_bin_index,/data/mysql/mysql_3306/data/mysql-bin.index | |
| 235 | +log_bin_trust_function_creators,OFF | |
| 236 | +log_bin_use_v1_row_events,OFF | |
| 237 | +log_error,/data/mysql/mysql_3306/logs/error.log | |
| 238 | +log_output,FILE | |
| 239 | +log_queries_not_using_indexes,OFF | |
| 240 | +log_slave_updates,ON | |
| 241 | +log_slow_admin_statements,OFF | |
| 242 | +log_slow_slave_statements,OFF | |
| 243 | +log_throttle_queries_not_using_indexes,0 | |
| 244 | +log_warnings,2 | |
| 245 | +long_query_time,1.000000 | |
| 246 | +low_priority_updates,OFF | |
| 247 | +lower_case_file_system,OFF | |
| 248 | +lower_case_table_names,0 | |
| 249 | +master_info_repository,FILE | |
| 250 | +master_verify_checksum,OFF | |
| 251 | +max_allowed_packet,33554432 | |
| 252 | +max_binlog_cache_size,18446744073709547520 | |
| 253 | +max_binlog_size,1073741824 | |
| 254 | +max_binlog_stmt_cache_size,18446744073709547520 | |
| 255 | +max_connect_errors,100000 | |
| 256 | +max_connections,1000 | |
| 257 | +max_delayed_threads,20 | |
| 258 | +max_digest_length,1024 | |
| 259 | +max_error_count,64 | |
| 260 | +max_heap_table_size,16777216 | |
| 261 | +max_insert_delayed_threads,20 | |
| 262 | +max_join_size,18446744073709551615 | |
| 263 | +max_length_for_sort_data,1024 | |
| 264 | +max_prepared_stmt_count,16382 | |
| 265 | +max_relay_log_size,0 | |
| 266 | +max_seeks_for_key,18446744073709551615 | |
| 267 | +max_sort_length,1024 | |
| 268 | +max_sp_recursion_depth,0 | |
| 269 | +max_tmp_tables,32 | |
| 270 | +max_user_connections,0 | |
| 271 | +max_write_lock_count,18446744073709551615 | |
| 272 | +metadata_locks_cache_size,1024 | |
| 273 | +metadata_locks_hash_instances,8 | |
| 274 | +min_examined_row_limit,0 | |
| 275 | +multi_range_count,256 | |
| 276 | +myisam_data_pointer_size,6 | |
| 277 | +myisam_max_sort_file_size,9223372036853727232 | |
| 278 | +myisam_mmap_size,18446744073709551615 | |
| 279 | +myisam_recover_options,OFF | |
| 280 | +myisam_repair_threads,1 | |
| 281 | +myisam_sort_buffer_size,8388608 | |
| 282 | +myisam_stats_method,nulls_unequal | |
| 283 | +myisam_use_mmap,OFF | |
| 284 | +net_buffer_length,16384 | |
| 285 | +net_read_timeout,60 | |
| 286 | +net_retry_count,4294967295 | |
| 287 | +net_write_timeout,60 | |
| 288 | +new,OFF | |
| 289 | +old,OFF | |
| 290 | +old_alter_table,OFF | |
| 291 | +old_passwords,0 | |
| 292 | +open_files_limit,8192 | |
| 293 | +optimizer_prune_level,1 | |
| 294 | +optimizer_search_depth,62 | |
| 295 | +optimizer_switch,"index_merge=on,index_merge_union=on,index_merge_sort_union=on,index_merge_intersection=on,engine_condition_pushdown=on,index_condition_pushdown=on,mrr=on,mrr_cost_based=on,block_nested_loop=on,batched_key_access=off,materialization=on,semijoin=on,loosescan=on,firstmatch=on,subquery_materialization_cost_based=on,use_index_extensions=on" | |
| 296 | +optimizer_trace,"enabled=off,one_line=off" | |
| 297 | +optimizer_trace_features,"greedy_search=on,range_optimizer=on,dynamic_range=on,repeated_subselect=on" | |
| 298 | +optimizer_trace_limit,1 | |
| 299 | +optimizer_trace_max_mem_size,16384 | |
| 300 | +optimizer_trace_offset,-1 | |
| 301 | +performance_schema,ON | |
| 302 | +performance_schema_accounts_size,100 | |
| 303 | +performance_schema_digests_size,10000 | |
| 304 | +performance_schema_events_stages_history_long_size,10000 | |
| 305 | +performance_schema_events_stages_history_size,10 | |
| 306 | +performance_schema_events_statements_history_long_size,10000 | |
| 307 | +performance_schema_events_statements_history_size,10 | |
| 308 | +performance_schema_events_waits_history_long_size,10000 | |
| 309 | +performance_schema_events_waits_history_size,10 | |
| 310 | +performance_schema_hosts_size,100 | |
| 311 | +performance_schema_max_cond_classes,80 | |
| 312 | +performance_schema_max_cond_instances,6900 | |
| 313 | +performance_schema_max_digest_length,1024 | |
| 314 | +performance_schema_max_file_classes,50 | |
| 315 | +performance_schema_max_file_handles,32768 | |
| 316 | +performance_schema_max_file_instances,12604 | |
| 317 | +performance_schema_max_mutex_classes,200 | |
| 318 | +performance_schema_max_mutex_instances,21000 | |
| 319 | +performance_schema_max_rwlock_classes,40 | |
| 320 | +performance_schema_max_rwlock_instances,10800 | |
| 321 | +performance_schema_max_socket_classes,10 | |
| 322 | +performance_schema_max_socket_instances,2020 | |
| 323 | +performance_schema_max_stage_classes,150 | |
| 324 | +performance_schema_max_statement_classes,168 | |
| 325 | +performance_schema_max_table_handles,4000 | |
| 326 | +performance_schema_max_table_instances,12500 | |
| 327 | +performance_schema_max_thread_classes,50 | |
| 328 | +performance_schema_max_thread_instances,2100 | |
| 329 | +performance_schema_session_connect_attrs_size,512 | |
| 330 | +performance_schema_setup_actors_size,100 | |
| 331 | +performance_schema_setup_objects_size,100 | |
| 332 | +performance_schema_users_size,100 | |
| 333 | +pid_file,/data/mysql/mysql_3306/data/mysql.pid | |
| 334 | +plugin_dir,/usr/local/mysql/lib/plugin/ | |
| 335 | +port,3306 | |
| 336 | +preload_buffer_size,32768 | |
| 337 | +profiling,OFF | |
| 338 | +profiling_history_size,15 | |
| 339 | +protocol_version,10 | |
| 340 | +proxy_user, | |
| 341 | +pseudo_slave_mode,OFF | |
| 342 | +pseudo_thread_id,16 | |
| 343 | +query_alloc_block_size,8192 | |
| 344 | +query_cache_limit,1048576 | |
| 345 | +query_cache_min_res_unit,4096 | |
| 346 | +query_cache_size,1048576 | |
| 347 | +query_cache_type,OFF | |
| 348 | +query_cache_wlock_invalidate,OFF | |
| 349 | +query_prealloc_size,8192 | |
| 350 | +rand_seed1,0 | |
| 351 | +rand_seed2,0 | |
| 352 | +range_alloc_block_size,4096 | |
| 353 | +read_buffer_size,131072 | |
| 354 | +read_only,OFF | |
| 355 | +read_rnd_buffer_size,262144 | |
| 356 | +relay_log, | |
| 357 | +relay_log_basename, | |
| 358 | +relay_log_index, | |
| 359 | +relay_log_info_file,relay-log.info | |
| 360 | +relay_log_info_repository,FILE | |
| 361 | +relay_log_purge,ON | |
| 362 | +relay_log_recovery,OFF | |
| 363 | +relay_log_space_limit,0 | |
| 364 | +report_host, | |
| 365 | +report_password, | |
| 366 | +report_port,3306 | |
| 367 | +report_user, | |
| 368 | +rpl_stop_slave_timeout,31536000 | |
| 369 | +secure_auth,ON | |
| 370 | +secure_file_priv, | |
| 371 | +server_id,1 | |
| 372 | +server_id_bits,32 | |
| 373 | +server_uuid,25d20977-ffe8-11e5-9240-305a3a09108d | |
| 374 | +show_old_temporals,OFF | |
| 375 | +simplified_binlog_gtid_recovery,OFF | |
| 376 | +skip_external_locking,ON | |
| 377 | +skip_name_resolve,ON | |
| 378 | +skip_networking,OFF | |
| 379 | +skip_show_database,OFF | |
| 380 | +slave_allow_batching,OFF | |
| 381 | +slave_checkpoint_group,512 | |
| 382 | +slave_checkpoint_period,300 | |
| 383 | +slave_compressed_protocol,ON | |
| 384 | +slave_exec_mode,STRICT | |
| 385 | +slave_load_tmpdir,/data/mysql/mysql_3306/tmp | |
| 386 | +slave_max_allowed_packet,1073741824 | |
| 387 | +slave_net_timeout,5 | |
| 388 | +slave_parallel_workers,0 | |
| 389 | +slave_pending_jobs_size_max,16777216 | |
| 390 | +slave_rows_search_algorithms,"TABLE_SCAN,INDEX_SCAN" | |
| 391 | +slave_skip_errors,OFF | |
| 392 | +slave_sql_verify_checksum,ON | |
| 393 | +slave_transaction_retries,4294967295 | |
| 394 | +slave_type_conversions, | |
| 395 | +slow_launch_time,2 | |
| 396 | +slow_query_log,ON | |
| 397 | +slow_query_log_file,/data/mysql/mysql_3306/logs/slow.log | |
| 398 | +socket,/tmp/mysql.sock | |
| 399 | +sort_buffer_size,262144 | |
| 400 | +sql_auto_is_null,OFF | |
| 401 | +sql_big_selects,ON | |
| 402 | +sql_buffer_result,OFF | |
| 403 | +sql_log_bin,ON | |
| 404 | +sql_log_off,OFF | |
| 405 | +sql_mode,NO_ENGINE_SUBSTITUTION | |
| 406 | +sql_notes,ON | |
| 407 | +sql_quote_show_create,ON | |
| 408 | +sql_safe_updates,ON | |
| 409 | +sql_select_limit,18446744073709551615 | |
| 410 | +sql_slave_skip_counter,0 | |
| 411 | +sql_warnings,OFF | |
| 412 | +ssl_ca, | |
| 413 | +ssl_capath, | |
| 414 | +ssl_cert, | |
| 415 | +ssl_cipher, | |
| 416 | +ssl_crl, | |
| 417 | +ssl_crlpath, | |
| 418 | +ssl_key, | |
| 419 | +storage_engine,InnoDB | |
| 420 | +stored_program_cache,256 | |
| 421 | +sync_binlog,1 | |
| 422 | +sync_frm,ON | |
| 423 | +sync_master_info,10000 | |
| 424 | +sync_relay_log,10000 | |
| 425 | +sync_relay_log_info,10000 | |
| 426 | +system_time_zone,EDT | |
| 427 | +table_definition_cache,1400 | |
| 428 | +table_open_cache,2000 | |
| 429 | +table_open_cache_instances,1 | |
| 430 | +thread_cache_size,18 | |
| 431 | +thread_concurrency,10 | |
| 432 | +thread_handling,one-thread-per-connection | |
| 433 | +thread_stack,262144 | |
| 434 | +time_format,%H:%i:%s | |
| 435 | +time_zone,SYSTEM | |
| 436 | +timed_mutexes,OFF | |
| 437 | +timestamp,1464877298.862454 | |
| 438 | +tmp_table_size,16777216 | |
| 439 | +tmpdir,/data/mysql/mysql_3306/tmp | |
| 440 | +transaction_alloc_block_size,8192 | |
| 441 | +transaction_allow_batching,OFF | |
| 442 | +transaction_prealloc_size,4096 | |
| 443 | +tx_isolation,REPEATABLE-READ | |
| 444 | +tx_read_only,OFF | |
| 445 | +unique_checks,ON | |
| 446 | +updatable_views_with_limit,YES | |
| 447 | +version,5.6.29-log | |
| 448 | +version_comment,"MySQL Community Server (GPL)" | |
| 449 | +version_compile_machine,x86_64 | |
| 450 | +version_compile_os,linux-glibc2.5 | |
| 451 | +wait_timeout,28800 | |
| 452 | +warning_count,0 | ... | ... |
src/main/resources/vars.txt
0 → 100644
| 1 | +auto_increment_increment 1 | |
| 2 | +auto_increment_offset 1 | |
| 3 | +autocommit ON | |
| 4 | +automatic_sp_privileges ON | |
| 5 | +avoid_temporal_upgrade OFF | |
| 6 | +back_log 80 | |
| 7 | +basedir D:\mysql | |
| 8 | +big_tables OFF | |
| 9 | +bind_address * | |
| 10 | +binlog_cache_size 32768 | |
| 11 | +binlog_checksum CRC32 | |
| 12 | +binlog_direct_non_transactional_updates OFF | |
| 13 | +binlog_error_action IGNORE_ERROR | |
| 14 | +binlog_format STATEMENT | |
| 15 | +binlog_gtid_simple_recovery OFF | |
| 16 | +binlog_max_flush_queue_time 0 | |
| 17 | +binlog_order_commits ON | |
| 18 | +binlog_row_image FULL | |
| 19 | +binlog_rows_query_log_events OFF | |
| 20 | +binlog_stmt_cache_size 32768 | |
| 21 | +binlogging_impossible_mode IGNORE_ERROR | |
| 22 | +block_encryption_mode aes-128-ecb | |
| 23 | +bulk_insert_buffer_size 8388608 | |
| 24 | +character_set_client utf8 | |
| 25 | +character_set_connection utf8 | |
| 26 | +character_set_database utf8 | |
| 27 | +character_set_filesystem binary | |
| 28 | +character_set_results utf8 | |
| 29 | +character_set_server latin1 | |
| 30 | +character_set_system utf8 | |
| 31 | +character_sets_dir D:\mysql\share\charsets\ | |
| 32 | +collation_connection utf8_general_ci | |
| 33 | +collation_database utf8_general_ci | |
| 34 | +collation_server latin1_swedish_ci | |
| 35 | +completion_type NO_CHAIN | |
| 36 | +concurrent_insert AUTO | |
| 37 | +connect_timeout 10 | |
| 38 | +core_file OFF | |
| 39 | +datadir D:\mysql\data\ | |
| 40 | +date_format %Y-%m-%d | |
| 41 | +datetime_format %Y-%m-%d %H:%i:%s | |
| 42 | +default_storage_engine InnoDB | |
| 43 | +default_tmp_storage_engine InnoDB | |
| 44 | +default_week_format 0 | |
| 45 | +delay_key_write ON | |
| 46 | +delayed_insert_limit 100 | |
| 47 | +delayed_insert_timeout 300 | |
| 48 | +delayed_queue_size 1000 | |
| 49 | +disconnect_on_expired_password ON | |
| 50 | +div_precision_increment 4 | |
| 51 | +end_markers_in_json OFF | |
| 52 | +enforce_gtid_consistency OFF | |
| 53 | +eq_range_index_dive_limit 10 | |
| 54 | +error_count 0 | |
| 55 | +event_scheduler OFF | |
| 56 | +expire_logs_days 0 | |
| 57 | +explicit_defaults_for_timestamp OFF | |
| 58 | +external_user | |
| 59 | +flush OFF | |
| 60 | +flush_time 0 | |
| 61 | +foreign_key_checks ON | |
| 62 | +ft_boolean_syntax + -><()~*:""&| | |
| 63 | +ft_max_word_len 84 | |
| 64 | +ft_min_word_len 4 | |
| 65 | +ft_query_expansion_limit 20 | |
| 66 | +ft_stopword_file (built-in) | |
| 67 | +general_log OFF | |
| 68 | +general_log_file D:\mysql\data\WIN-V8OEMDLE2LV.log | |
| 69 | +group_concat_max_len 1024 | |
| 70 | +gtid_executed | |
| 71 | +gtid_mode OFF | |
| 72 | +gtid_next AUTOMATIC | |
| 73 | +gtid_owned | |
| 74 | +gtid_purged | |
| 75 | +have_compress YES | |
| 76 | +have_crypt NO | |
| 77 | +have_dynamic_loading YES | |
| 78 | +have_geometry YES | |
| 79 | +have_openssl DISABLED | |
| 80 | +have_profiling YES | |
| 81 | +have_query_cache YES | |
| 82 | +have_rtree_keys YES | |
| 83 | +have_ssl DISABLED | |
| 84 | +have_symlink YES | |
| 85 | +host_cache_size 279 | |
| 86 | +hostname WIN-V8OEMDLE2LV | |
| 87 | +identity 0 | |
| 88 | +ignore_builtin_innodb OFF | |
| 89 | +ignore_db_dirs | |
| 90 | +init_connect | |
| 91 | +init_file | |
| 92 | +init_slave | |
| 93 | +innodb_adaptive_flushing ON | |
| 94 | +innodb_adaptive_flushing_lwm 10 | |
| 95 | +innodb_adaptive_hash_index ON | |
| 96 | +innodb_adaptive_max_sleep_delay 150000 | |
| 97 | +innodb_additional_mem_pool_size 8388608 | |
| 98 | +innodb_api_bk_commit_interval 5 | |
| 99 | +innodb_api_disable_rowlock OFF | |
| 100 | +innodb_api_enable_binlog OFF | |
| 101 | +innodb_api_enable_mdl OFF | |
| 102 | +innodb_api_trx_level 0 | |
| 103 | +innodb_autoextend_increment 64 | |
| 104 | +innodb_autoinc_lock_mode 1 | |
| 105 | +innodb_buffer_pool_dump_at_shutdown OFF | |
| 106 | +innodb_buffer_pool_dump_now OFF | |
| 107 | +innodb_buffer_pool_filename ib_buffer_pool | |
| 108 | +innodb_buffer_pool_instances 8 | |
| 109 | +innodb_buffer_pool_load_abort OFF | |
| 110 | +innodb_buffer_pool_load_at_startup OFF | |
| 111 | +innodb_buffer_pool_load_now OFF | |
| 112 | +innodb_buffer_pool_size 134217728 | |
| 113 | +innodb_change_buffer_max_size 25 | |
| 114 | +innodb_change_buffering all | |
| 115 | +innodb_checksum_algorithm innodb | |
| 116 | +innodb_checksums ON | |
| 117 | +innodb_cmp_per_index_enabled OFF | |
| 118 | +innodb_commit_concurrency 0 | |
| 119 | +innodb_compression_failure_threshold_pct 5 | |
| 120 | +innodb_compression_level 6 | |
| 121 | +innodb_compression_pad_pct_max 50 | |
| 122 | +innodb_concurrency_tickets 5000 | |
| 123 | +innodb_data_file_path ibdata1:12M:autoextend | |
| 124 | +innodb_data_home_dir | |
| 125 | +innodb_disable_sort_file_cache OFF | |
| 126 | +innodb_doublewrite ON | |
| 127 | +innodb_fast_shutdown 1 | |
| 128 | +innodb_file_format Antelope | |
| 129 | +innodb_file_format_check ON | |
| 130 | +innodb_file_format_max Antelope | |
| 131 | +innodb_file_per_table ON | |
| 132 | +innodb_flush_log_at_timeout 1 | |
| 133 | +innodb_flush_log_at_trx_commit 1 | |
| 134 | +innodb_flush_method | |
| 135 | +innodb_flush_neighbors 1 | |
| 136 | +innodb_flushing_avg_loops 30 | |
| 137 | +innodb_force_load_corrupted OFF | |
| 138 | +innodb_force_recovery 0 | |
| 139 | +innodb_ft_aux_table | |
| 140 | +innodb_ft_cache_size 8000000 | |
| 141 | +innodb_ft_enable_diag_print OFF | |
| 142 | +innodb_ft_enable_stopword ON | |
| 143 | +innodb_ft_max_token_size 84 | |
| 144 | +innodb_ft_min_token_size 3 | |
| 145 | +innodb_ft_num_word_optimize 2000 | |
| 146 | +innodb_ft_result_cache_limit 2000000000 | |
| 147 | +innodb_ft_server_stopword_table | |
| 148 | +innodb_ft_sort_pll_degree 2 | |
| 149 | +innodb_ft_total_cache_size 640000000 | |
| 150 | +innodb_ft_user_stopword_table | |
| 151 | +innodb_io_capacity 200 | |
| 152 | +innodb_io_capacity_max 2000 | |
| 153 | +innodb_large_prefix OFF | |
| 154 | +innodb_lock_wait_timeout 50 | |
| 155 | +innodb_locks_unsafe_for_binlog OFF | |
| 156 | +innodb_log_buffer_size 8388608 | |
| 157 | +innodb_log_compressed_pages ON | |
| 158 | +innodb_log_file_size 50331648 | |
| 159 | +innodb_log_files_in_group 2 | |
| 160 | +innodb_log_group_home_dir .\ | |
| 161 | +innodb_lru_scan_depth 1024 | |
| 162 | +innodb_max_dirty_pages_pct 75 | |
| 163 | +innodb_max_dirty_pages_pct_lwm 0 | |
| 164 | +innodb_max_purge_lag 0 | |
| 165 | +innodb_max_purge_lag_delay 0 | |
| 166 | +innodb_mirrored_log_groups 1 | |
| 167 | +innodb_monitor_disable | |
| 168 | +innodb_monitor_enable | |
| 169 | +innodb_monitor_reset | |
| 170 | +innodb_monitor_reset_all | |
| 171 | +innodb_old_blocks_pct 37 | |
| 172 | +innodb_old_blocks_time 1000 | |
| 173 | +innodb_online_alter_log_max_size 134217728 | |
| 174 | +innodb_open_files 2000 | |
| 175 | +innodb_optimize_fulltext_only OFF | |
| 176 | +innodb_page_size 16384 | |
| 177 | +innodb_print_all_deadlocks OFF | |
| 178 | +innodb_purge_batch_size 300 | |
| 179 | +innodb_purge_threads 1 | |
| 180 | +innodb_random_read_ahead OFF | |
| 181 | +innodb_read_ahead_threshold 56 | |
| 182 | +innodb_read_io_threads 4 | |
| 183 | +innodb_read_only OFF | |
| 184 | +innodb_replication_delay 0 | |
| 185 | +innodb_rollback_on_timeout OFF | |
| 186 | +innodb_rollback_segments 128 | |
| 187 | +innodb_sort_buffer_size 1048576 | |
| 188 | +innodb_spin_wait_delay 6 | |
| 189 | +innodb_stats_auto_recalc ON | |
| 190 | +innodb_stats_method nulls_equal | |
| 191 | +innodb_stats_on_metadata OFF | |
| 192 | +innodb_stats_persistent ON | |
| 193 | +innodb_stats_persistent_sample_pages 20 | |
| 194 | +innodb_stats_sample_pages 8 | |
| 195 | +innodb_stats_transient_sample_pages 8 | |
| 196 | +innodb_status_output OFF | |
| 197 | +innodb_status_output_locks OFF | |
| 198 | +innodb_strict_mode OFF | |
| 199 | +innodb_support_xa ON | |
| 200 | +innodb_sync_array_size 1 | |
| 201 | +innodb_sync_spin_loops 30 | |
| 202 | +innodb_table_locks ON | |
| 203 | +innodb_thread_concurrency 0 | |
| 204 | +innodb_thread_sleep_delay 10000 | |
| 205 | +innodb_tmpdir | |
| 206 | +innodb_undo_directory . | |
| 207 | +innodb_undo_logs 128 | |
| 208 | +innodb_undo_tablespaces 0 | |
| 209 | +innodb_use_native_aio ON | |
| 210 | +innodb_use_sys_malloc ON | |
| 211 | +innodb_version 5.6.29 | |
| 212 | +innodb_write_io_threads 4 | |
| 213 | +insert_id 0 | |
| 214 | +interactive_timeout 28800 | |
| 215 | +join_buffer_size 262144 | |
| 216 | +keep_files_on_create OFF | |
| 217 | +key_buffer_size 8388608 | |
| 218 | +key_cache_age_threshold 300 | |
| 219 | +key_cache_block_size 1024 | |
| 220 | +key_cache_division_limit 100 | |
| 221 | +large_files_support ON | |
| 222 | +large_page_size 0 | |
| 223 | +large_pages OFF | |
| 224 | +last_insert_id 0 | |
| 225 | +lc_messages en_US | |
| 226 | +lc_messages_dir D:\mysql\share\ | |
| 227 | +lc_time_names en_US | |
| 228 | +license GPL | |
| 229 | +local_infile ON | |
| 230 | +lock_wait_timeout 31536000 | |
| 231 | +log_bin ON | |
| 232 | +log_bin_basename D:\mysql\data\master-bin | |
| 233 | +log_bin_index D:\mysql\data\master-bin.index | |
| 234 | +log_bin_trust_function_creators OFF | |
| 235 | +log_bin_use_v1_row_events OFF | |
| 236 | +log_error D:\mysql\data\WIN-V8OEMDLE2LV.err | |
| 237 | +log_output FILE | |
| 238 | +log_queries_not_using_indexes OFF | |
| 239 | +log_slave_updates OFF | |
| 240 | +log_slow_admin_statements OFF | |
| 241 | +log_slow_slave_statements OFF | |
| 242 | +log_throttle_queries_not_using_indexes 0 | |
| 243 | +log_warnings 1 | |
| 244 | +long_query_time 10.000000 | |
| 245 | +low_priority_updates OFF | |
| 246 | +lower_case_file_system ON | |
| 247 | +lower_case_table_names 1 | |
| 248 | +master_info_repository FILE | |
| 249 | +master_verify_checksum OFF | |
| 250 | +max_allowed_packet 4194304 | |
| 251 | +max_binlog_cache_size 18446744073709547520 | |
| 252 | +max_binlog_size 1073741824 | |
| 253 | +max_binlog_stmt_cache_size 18446744073709547520 | |
| 254 | +max_connect_errors 100 | |
| 255 | +max_connections 151 | |
| 256 | +max_delayed_threads 20 | |
| 257 | +max_digest_length 1024 | |
| 258 | +max_error_count 64 | |
| 259 | +max_heap_table_size 16777216 | |
| 260 | +max_insert_delayed_threads 20 | |
| 261 | +max_join_size 18446744073709551615 | |
| 262 | +max_length_for_sort_data 1024 | |
| 263 | +max_prepared_stmt_count 16382 | |
| 264 | +max_relay_log_size 0 | |
| 265 | +max_seeks_for_key 4294967295 | |
| 266 | +max_sort_length 1024 | |
| 267 | +max_sp_recursion_depth 0 | |
| 268 | +max_tmp_tables 32 | |
| 269 | +max_user_connections 0 | |
| 270 | +max_write_lock_count 4294967295 | |
| 271 | +metadata_locks_cache_size 1024 | |
| 272 | +metadata_locks_hash_instances 8 | |
| 273 | +min_examined_row_limit 0 | |
| 274 | +multi_range_count 256 | |
| 275 | +myisam_data_pointer_size 6 | |
| 276 | +myisam_max_sort_file_size 2146435072 | |
| 277 | +myisam_mmap_size 18446744073709551615 | |
| 278 | +myisam_recover_options OFF | |
| 279 | +myisam_repair_threads 1 | |
| 280 | +myisam_sort_buffer_size 8388608 | |
| 281 | +myisam_stats_method nulls_unequal | |
| 282 | +myisam_use_mmap OFF | |
| 283 | +named_pipe OFF | |
| 284 | +net_buffer_length 16384 | |
| 285 | +net_read_timeout 30 | |
| 286 | +net_retry_count 10 | |
| 287 | +net_write_timeout 60 | |
| 288 | +new OFF | |
| 289 | +old OFF | |
| 290 | +old_alter_table OFF | |
| 291 | +old_passwords 0 | |
| 292 | +open_files_limit 7048 | |
| 293 | +optimizer_prune_level 1 | |
| 294 | +optimizer_search_depth 62 | |
| 295 | +optimizer_switch index_merge=on,index_merge_union=on,index_merge_sort_union=on,index_merge_intersection=on,engine_condition_pushdown=on,index_condition_pushdown=on,mrr=on,mrr_cost_based=on,block_nested_loop=on,batched_key_access=off,materialization=on,semijoin=on,loosescan=on,firstmatch=on,subquery_materialization_cost_based=on,use_index_extensions=on | |
| 296 | +optimizer_trace enabled=off,one_line=off | |
| 297 | +optimizer_trace_features greedy_search=on,range_optimizer=on,dynamic_range=on,repeated_subselect=on | |
| 298 | +optimizer_trace_limit 1 | |
| 299 | +optimizer_trace_max_mem_size 16384 | |
| 300 | +optimizer_trace_offset -1 | |
| 301 | +performance_schema ON | |
| 302 | +performance_schema_accounts_size 100 | |
| 303 | +performance_schema_digests_size 10000 | |
| 304 | +performance_schema_events_stages_history_long_size 10000 | |
| 305 | +performance_schema_events_stages_history_size 10 | |
| 306 | +performance_schema_events_statements_history_long_size 10000 | |
| 307 | +performance_schema_events_statements_history_size 10 | |
| 308 | +performance_schema_events_waits_history_long_size 10000 | |
| 309 | +performance_schema_events_waits_history_size 10 | |
| 310 | +performance_schema_hosts_size 100 | |
| 311 | +performance_schema_max_cond_classes 80 | |
| 312 | +performance_schema_max_cond_instances 3504 | |
| 313 | +performance_schema_max_digest_length 1024 | |
| 314 | +performance_schema_max_file_classes 50 | |
| 315 | +performance_schema_max_file_handles 32768 | |
| 316 | +performance_schema_max_file_instances 7693 | |
| 317 | +performance_schema_max_mutex_classes 200 | |
| 318 | +performance_schema_max_mutex_instances 15906 | |
| 319 | +performance_schema_max_rwlock_classes 40 | |
| 320 | +performance_schema_max_rwlock_instances 9102 | |
| 321 | +performance_schema_max_socket_classes 10 | |
| 322 | +performance_schema_max_socket_instances 322 | |
| 323 | +performance_schema_max_stage_classes 150 | |
| 324 | +performance_schema_max_statement_classes 168 | |
| 325 | +performance_schema_max_table_handles 4000 | |
| 326 | +performance_schema_max_table_instances 12500 | |
| 327 | +performance_schema_max_thread_classes 50 | |
| 328 | +performance_schema_max_thread_instances 402 | |
| 329 | +performance_schema_session_connect_attrs_size 512 | |
| 330 | +performance_schema_setup_actors_size 100 | |
| 331 | +performance_schema_setup_objects_size 100 | |
| 332 | +performance_schema_users_size 100 | |
| 333 | +pid_file D:\mysql\data\WIN-V8OEMDLE2LV.pid | |
| 334 | +plugin_dir D:\mysql\lib\plugin\ | |
| 335 | +port 3306 | |
| 336 | +preload_buffer_size 32768 | |
| 337 | +profiling ON | |
| 338 | +profiling_history_size 15 | |
| 339 | +protocol_version 10 | |
| 340 | +proxy_user | |
| 341 | +pseudo_slave_mode OFF | |
| 342 | +pseudo_thread_id 64183 | |
| 343 | +query_alloc_block_size 8192 | |
| 344 | +query_cache_limit 1048576 | |
| 345 | +query_cache_min_res_unit 4096 | |
| 346 | +query_cache_size 1048576 | |
| 347 | +query_cache_type OFF | |
| 348 | +query_cache_wlock_invalidate OFF | |
| 349 | +query_prealloc_size 8192 | |
| 350 | +rand_seed1 0 | |
| 351 | +rand_seed2 0 | |
| 352 | +range_alloc_block_size 4096 | |
| 353 | +read_buffer_size 131072 | |
| 354 | +read_only OFF | |
| 355 | +read_rnd_buffer_size 262144 | |
| 356 | +relay_log | |
| 357 | +relay_log_basename | |
| 358 | +relay_log_index | |
| 359 | +relay_log_info_file relay-log.info | |
| 360 | +relay_log_info_repository FILE | |
| 361 | +relay_log_purge ON | |
| 362 | +relay_log_recovery OFF | |
| 363 | +relay_log_space_limit 0 | |
| 364 | +report_host | |
| 365 | +report_password | |
| 366 | +report_port 3306 | |
| 367 | +report_user | |
| 368 | +rpl_stop_slave_timeout 31536000 | |
| 369 | +secure_auth ON | |
| 370 | +secure_file_priv | |
| 371 | +server_id 1 | |
| 372 | +server_id_bits 32 | |
| 373 | +server_uuid 50180b22-f3eb-11e5-8415-48452005bd5a | |
| 374 | +shared_memory OFF | |
| 375 | +shared_memory_base_name MYSQL | |
| 376 | +show_old_temporals OFF | |
| 377 | +simplified_binlog_gtid_recovery OFF | |
| 378 | +skip_external_locking ON | |
| 379 | +skip_name_resolve OFF | |
| 380 | +skip_networking OFF | |
| 381 | +skip_show_database OFF | |
| 382 | +slave_allow_batching OFF | |
| 383 | +slave_checkpoint_group 512 | |
| 384 | +slave_checkpoint_period 300 | |
| 385 | +slave_compressed_protocol OFF | |
| 386 | +slave_exec_mode STRICT | |
| 387 | +slave_load_tmpdir C:\Windows\TEMP | |
| 388 | +slave_max_allowed_packet 1073741824 | |
| 389 | +slave_net_timeout 3600 | |
| 390 | +slave_parallel_workers 0 | |
| 391 | +slave_pending_jobs_size_max 16777216 | |
| 392 | +slave_rows_search_algorithms TABLE_SCAN,INDEX_SCAN | |
| 393 | +slave_skip_errors OFF | |
| 394 | +slave_sql_verify_checksum ON | |
| 395 | +slave_transaction_retries 10 | |
| 396 | +slave_type_conversions | |
| 397 | +slow_launch_time 2 | |
| 398 | +slow_query_log OFF | |
| 399 | +slow_query_log_file D:\mysql\data\WIN-V8OEMDLE2LV-slow.log | |
| 400 | +socket MySQL | |
| 401 | +sort_buffer_size 262144 | |
| 402 | +sql_auto_is_null OFF | |
| 403 | +sql_big_selects ON | |
| 404 | +sql_buffer_result OFF | |
| 405 | +sql_log_bin ON | |
| 406 | +sql_log_off OFF | |
| 407 | +sql_mode STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION | |
| 408 | +sql_notes ON | |
| 409 | +sql_quote_show_create ON | |
| 410 | +sql_safe_updates OFF | |
| 411 | +sql_select_limit 18446744073709551615 | |
| 412 | +sql_slave_skip_counter 0 | |
| 413 | +sql_warnings OFF | |
| 414 | +ssl_ca | |
| 415 | +ssl_capath | |
| 416 | +ssl_cert | |
| 417 | +ssl_cipher | |
| 418 | +ssl_crl | |
| 419 | +ssl_crlpath | |
| 420 | +ssl_key | |
| 421 | +storage_engine InnoDB | |
| 422 | +stored_program_cache 256 | |
| 423 | +sync_binlog 0 | |
| 424 | +sync_frm ON | |
| 425 | +sync_master_info 10000 | |
| 426 | +sync_relay_log 10000 | |
| 427 | +sync_relay_log_info 10000 | |
| 428 | +system_time_zone | |
| 429 | +table_definition_cache 1400 | |
| 430 | +table_open_cache 2000 | |
| 431 | +table_open_cache_instances 1 | |
| 432 | +thread_cache_size 9 | |
| 433 | +thread_concurrency 10 | |
| 434 | +thread_handling one-thread-per-connection | |
| 435 | +thread_stack 262144 | |
| 436 | +time_format %H:%i:%s | |
| 437 | +time_zone SYSTEM | |
| 438 | +timed_mutexes OFF | |
| 439 | +timestamp 1464833842.538890 | |
| 440 | +tmp_table_size 16777216 | |
| 441 | +tmpdir C:\Windows\TEMP | |
| 442 | +transaction_alloc_block_size 8192 | |
| 443 | +transaction_allow_batching OFF | |
| 444 | +transaction_prealloc_size 4096 | |
| 445 | +tx_isolation REPEATABLE-READ | |
| 446 | +tx_read_only OFF | |
| 447 | +unique_checks ON | |
| 448 | +updatable_views_with_limit YES | |
| 449 | +version 5.6.29-log | |
| 450 | +version_comment MySQL Community Server (GPL) | |
| 451 | +version_compile_machine x86_64 | |
| 452 | +version_compile_os Win64 | |
| 453 | +wait_timeout 28800 | |
| 454 | +warning_count 1 | ... | ... |