Browse Source

热点数据bug修复

tags/v1.0.1-410
wangyi15124 2 years ago
parent
commit
043bcfc845
4 changed files with 41 additions and 8 deletions
  1. +39
    -6
      initialize_db_cache.sh
  2. BIN
      lastest_version/stonedt-yuqing.jar
  3. +1
    -1
      src/main/java/com/stonedt/intelligence/quartz/SynthesizeSchedule.java
  4. +1
    -1
      src/main/resources/mapper/SynthesizeMapper.xml

+ 39
- 6
initialize_db_cache.sh View File

@@ -1,17 +1,17 @@
/*
Navicat Premium Data Transfer

Source Server : 192.168.71.73
Source Server : 192.168.71.91
Source Server Type : MySQL
Source Server Version : 50733
Source Host : s1.stonedt.com
Source Host : 192.168.71.91
Source Database : stonedt_portal

Target Server Type : MySQL
Target Server Version : 50733
File Encoding : utf-8

Date: 02/14/2022 17:33:00 PM
Date: 03/15/2022 18:41:36 PM
*/

SET NAMES utf8mb4;
@@ -37,6 +37,32 @@ CREATE TABLE `data_favorite` (
UNIQUE KEY `article_public_id` (`article_public_id`,`user_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=108 DEFAULT CHARSET=utf8mb4 COMMENT='文章收藏表';

-- ----------------------------
-- Table structure for `flyway_schema_history`
-- ----------------------------
DROP TABLE IF EXISTS `flyway_schema_history`;
CREATE TABLE `flyway_schema_history` (
`installed_rank` int(11) NOT NULL,
`version` varchar(50) DEFAULT NULL,
`description` varchar(200) NOT NULL,
`type` varchar(20) NOT NULL,
`script` varchar(1000) NOT NULL,
`checksum` int(11) DEFAULT NULL,
`installed_by` varchar(100) NOT NULL,
`installed_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`execution_time` int(11) NOT NULL,
`success` tinyint(1) NOT NULL,
PRIMARY KEY (`installed_rank`),
KEY `flyway_schema_history_s_idx` (`success`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

-- ----------------------------
-- Records of `flyway_schema_history`
-- ----------------------------
BEGIN;
INSERT INTO `flyway_schema_history` VALUES ('1', '1.0', 'InitTableAndData', 'SQL', 'V1.0__InitTableAndData.sql', '-764204393', 'root', '2022-03-15 18:40:07', '4131', '1');
COMMIT;

-- ----------------------------
-- Table structure for `full_menu`
-- ----------------------------
@@ -522,7 +548,14 @@ CREATE TABLE `synthesize` (
`hot_policydata` longtext,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `user_id` (`user_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=64 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='综合看板表';
) ENGINE=InnoDB AUTO_INCREMENT=65 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='综合看板表';

-- ----------------------------
-- Records of `synthesize`
-- ----------------------------
BEGIN;
INSERT INTO `synthesize` VALUES ('64', '1', null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
COMMIT;

-- ----------------------------
-- Table structure for `systemlog`
@@ -580,7 +613,7 @@ CREATE TABLE `user` (
-- Records of `user`
-- ----------------------------
BEGIN;
INSERT INTO `user` VALUES ('97', '2022-02-14 17:22:13', '13900000000', '13900000000', '1ed91049c7697d6aaf7d1959e588e735', '13900000000@qq.com', '2022-02-14 17:30:25', '1', null, null, null, '2', null, null, null, null, null, '1');
INSERT INTO `user` VALUES ('97', '2022-02-14 17:22:13', '13900000000', '13900000000', '1ed91049c7697d6aaf7d1959e588e735', '13900000000@qq.com', '2022-02-14 17:30:25', '1', null, null, null, '2', null, null, '3', null, null, '2');
COMMIT;

-- ----------------------------
@@ -721,4 +754,4 @@ CREATE TABLE `wechatqrcode` (
UNIQUE KEY `uniquestr` (`telephone`)
) ENGINE=InnoDB AUTO_INCREMENT=32124 DEFAULT CHARSET=utf8mb4;

SET FOREIGN_KEY_CHECKS = 1;
SET FOREIGN_KEY_CHECKS = 1;

BIN
lastest_version/stonedt-yuqing.jar View File


+ 1
- 1
src/main/java/com/stonedt/intelligence/quartz/SynthesizeSchedule.java View File

@@ -99,8 +99,8 @@ public class SynthesizeSchedule {
//@Scheduled(fixedDelay = 1000*60*2)
//
//@Scheduled(cron = "0 0/2 * * * ?")
@Scheduled(cron = "0 0/30 * * * ?")
//@Scheduled(cron = "0 0 0/2 * * ?")
public void popularInformation() {
if(schedule_synthesize_open==1) {
//获取accesstoken


+ 1
- 1
src/main/resources/mapper/SynthesizeMapper.xml View File

@@ -58,7 +58,7 @@
<if test="count==0">
INSERT INTO `synthesize`
(`cteate_time`,`update_time`,`hot_wechat`,`hot_weibo`,`hot_all`,`hot_search_terms`,`hot_douyin`,`hot_bilibili`,`hot_tecentvedio`,hot_policydata,hot_finaceData,hot_36kr) VALUES (
#{now(),now(),#{map.hot_wechat},#{map.hot_weibo},#{map.hot_all},#{map.hot_search_terms},#{map.hot_douyin},#{map.hot_bilibili},#{map.hot_tecentvedio,#{map.hot_policydata},#{map.hot_finaceData},#{map.hot_36kr}}
now(),now(),#{map.hot_wechat},#{map.hot_weibo},#{map.hot_all},#{map.hot_search_terms},#{map.hot_douyin},#{map.hot_bilibili},#{map.hot_tecentvedio},#{map.hot_policydata},#{map.hot_finaceData},#{map.hot_36kr}
)
</if>
</insert>


Loading…
Cancel
Save