Compare commits

...

16 Commits

Author SHA1 Message Date
9baf7220b9 开始 > 分组 > 聚合 > 决策选项 聚合之后节点不会执行问题bugfix 2025-04-27 14:16:18 +08:00
9ba4c9a98d 决策引擎接口 决策流监控数据写入 2025-03-25 14:29:14 +08:00
90f055b7eb 表结构增量更新sql整理 2025-03-04 16:29:17 +08:00
b629bcb059 新增决策表问题 待确认问题处理 ,不改字段映射 ,新增字段 2025-03-04 16:24:18 +08:00
4646cd6424 新增决策表 待确认问题 2025-03-04 16:11:23 +08:00
f1f84fc4b2 新增决策表bugfix 2025-03-04 16:11:07 +08:00
86f41c849f 修复决策新增因为实体类字段与数据库字段名称映射失败导致的报错 2025-02-19 15:51:52 +08:00
7eaa7de140 修复数字决策平台-引擎管理-引擎列表 点击引擎名称跳转因地址错误出现的403报错 2025-02-18 15:43:46 +08:00
刘通
afcf60ef4b Merge remote-tracking branch 'origin/feature/初版/base' into feature/初版/base 2025-02-18 15:03:36 +08:00
刘通
7cf69bb30c 左侧文件夹之前注释,现在放开 2025-02-18 15:03:24 +08:00
c35000738c 模型取值逻辑修改 ,使用原来的取值逻辑 2025-02-17 18:00:09 +08:00
74103d4663 bugs update ,t_machine_learning_models model_field 字段长度加长 2025-02-17 17:10:10 +08:00
97059278e1 bugs update 2025-02-17 14:43:45 +08:00
25f51b1293 bug列表更新 2025-02-17 14:00:11 +08:00
54da4065db add bugs 2025-02-17 13:56:27 +08:00
034b9c6ed5 /Riskmanage/info/status 免token 访问 2025-02-14 17:38:37 +08:00
11 changed files with 95 additions and 15 deletions

25
bugs/note.txt Normal file
View File

@@ -0,0 +1,25 @@
BUG
基础指标模版下载报错
数据源指标编辑 这些变量值 没有绑定到界面上接口返回是ok的 ,前端需要改一下
引擎列表 点名称 一直加载中
决策复制版本 ,报错
t_machine_learning_models model_field (模型解析字段) 字段长度太小
ALTER TABLE t_machine_learning_models MODIFY COLUMN model_field varchar(4096) NOT NULL DEFAULT '' COMMENT '模型解析字段';
优化点:
数据中心 / 接口源 / 接口新建 修改 查看 请求地址 输入框加长
com.fibo.ddp.common.model.strategyx.decisiontable.DecisionTablesResult
TODO 注意 添加决策表 时 实际对应的字段是 ro 和 colum ,待确认

View File

@@ -1,6 +1,7 @@
package com.fibo.ddp.common.model.strategyx.decisiontable; package com.fibo.ddp.common.model.strategyx.decisiontable;
import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.TableName;
import lombok.AllArgsConstructor; import lombok.AllArgsConstructor;
@@ -29,8 +30,13 @@ public class DecisionTablesResult implements Serializable {
private Long versionId;//决策表版本id private Long versionId;//决策表版本id
// 注意 添加决策表 时 实际对应的字段是 ro 和 colum ,待确认
// 先注释 数据库表加字段 解决
// @TableField(value = "rowss")
private Integer ro;//行数 private Integer ro;//行数
// @TableField(value = "columnss")
private Integer colum;//列数 private Integer colum;//列数
private String resultValue;//结果集二维数组 private String resultValue;//结果集二维数组

View File

@@ -76,6 +76,9 @@ public class PMMLExecutorRFImpl implements PMMLExecutor {
} }
Map<FieldName, ?> results = evaluator.evaluate(arguments); Map<FieldName, ?> results = evaluator.evaluate(arguments);
System.out.println("pmml_predict_results: " + results);
List<TargetField> targetFields = evaluator.getTargetFields(); List<TargetField> targetFields = evaluator.getTargetFields();
TargetField targetField = targetFields.get(0); TargetField targetField = targetFields.get(0);
@@ -92,10 +95,10 @@ public class PMMLExecutorRFImpl implements PMMLExecutor {
value_1 = tmpnum.doubleValue(); value_1 = tmpnum.doubleValue();
} }
// TODO 不知道啥含义 先注释掉 返回结果 // TODO 模型取值逻辑待确认
// if (targetFieldValue instanceof ProbabilityDistribution) { if (targetFieldValue instanceof ProbabilityDistribution) {
// value_1 = ((ProbabilityDistribution) targetFieldValue).getValue("1"); value_1 = ((ProbabilityDistribution) targetFieldValue).getValue("1");
// } }

View File

@@ -13,6 +13,7 @@ public class ServiceFilterConstant {
uriSet.add("/Riskmanage/v2/datamanage/datamanage/downTemplate");// 指标模板下载 uriSet.add("/Riskmanage/v2/datamanage/datamanage/downTemplate");// 指标模板下载
uriSet.add("/Riskmanage/v2/datamanage/listmanage/downTemplate");// 名单库模板下载 uriSet.add("/Riskmanage/v2/datamanage/listmanage/downTemplate");// 名单库模板下载
uriSet.add("/Riskmanage/v3/analyse/decision"); uriSet.add("/Riskmanage/v3/analyse/decision");
uriSet.add("/Riskmanage/info/status");
} }
public static boolean isSessionFilter(String uri) { public static boolean isSessionFilter(String uri) {

View File

@@ -223,7 +223,12 @@ public class RiskEngineBusinessImpl implements RiskEngineBusiness {
resultSet.setOutput(JSONObject.toJSONString(tmpJsonObject)); resultSet.setOutput(JSONObject.toJSONString(tmpJsonObject));
resultSetMapper.insertResultSet(resultSet); resultSetMapper.insertResultSet(resultSet);
Integer resultId = resultSet.getId(); Integer resultId = resultSet.getId();
// this.monitorDecisionFlow(inputParam, engine, engineVersion, engineNodeList, outMap, paramJson, resultId); // 20250325 去掉注释 ,写入监控表
try {
this.monitorDecisionFlow(inputParam, engine, engineVersion, engineNodeList, outMap, paramJson, resultId);
}catch(Exception e){
logger.error("monitorDecisionFlow_error", e);
}
// 正常返回结果回调 // 正常返回结果回调
decisionCallback(engine.getCallbackUrl(), paramJson, result); decisionCallback(engine.getCallbackUrl(), paramJson, result);
} }
@@ -318,11 +323,16 @@ public class RiskEngineBusinessImpl implements RiskEngineBusiness {
nextEngineNode = engineNodeMap.get(outMap.get("nextNode")); nextEngineNode = engineNodeMap.get(outMap.get("nextNode"));
outMap.remove("nextNode"); outMap.remove("nextNode");
} }
// 会导致 开始 > 分组 > 聚合 > 决策选项 不会执行 ,先注释掉 20250427
if (nextEngineNode != null && nextEngineNode.getNodeType() == NodeTypeEnum.AGGREGATION.getValue()) { // if (nextEngineNode != null && nextEngineNode.getNodeType() == NodeTypeEnum.AGGREGATION.getValue()) {
// 并行节点后面的分支为多线程执行,执行到聚合节点则结束 // 并行节点后面的分支为多线程执行,执行到聚合节点则结束
resultNode = nextEngineNode; //resultNode = nextEngineNode;
} else { //} else {
// resultNode = recursionEngineNode(inputParam, nextEngineNode, engineNodeMap, outMap);
//}
// 20250427 之前的逻辑 会导致 开始 > 分组 > 聚合 > 决策选项 不会执行 使用以下代码
if (nextEngineNode != null){
resultNode = recursionEngineNode(inputParam, nextEngineNode, engineNodeMap, outMap); resultNode = recursionEngineNode(inputParam, nextEngineNode, engineNodeMap, outMap);
} }
} }

View File

@@ -47,7 +47,9 @@ public class MonitorController {
Integer pageNo = param.get("pageNo") == null ? 1 : Integer.valueOf(param.get("pageNo").toString()); Integer pageNo = param.get("pageNo") == null ? 1 : Integer.valueOf(param.get("pageNo").toString());
Integer pageSize = param.get("pageSize") == null ? 10 : Integer.valueOf(param.get("pageSize").toString()); Integer pageSize = param.get("pageSize") == null ? 10 : Integer.valueOf(param.get("pageSize").toString());
PageHelper.startPage(pageNo, pageSize); PageHelper.startPage(pageNo, pageSize);
List<EngineResultSet> resultSets = MonitorCenterFactory.getMonitorCenterServiceImp(MonitorStorageType.HBase).getEngineResultSetBySegment(param); // MonitorStorageType.HBase
// 20250325 MonitorStorageType.Mysql
List<EngineResultSet> resultSets = MonitorCenterFactory.getMonitorCenterServiceImp(MonitorStorageType.Mysql).getEngineResultSetBySegment(param);
PageInfo<EngineResultSet> pageInfo = new PageInfo<>(resultSets); PageInfo<EngineResultSet> pageInfo = new PageInfo<>(resultSets);
HashMap<String, Object> modelMap = new HashMap<>(); HashMap<String, Object> modelMap = new HashMap<>();
modelMap.put("pager", pageInfo); modelMap.put("pager", pageInfo);

View File

@@ -77,7 +77,7 @@
<loggers> <loggers>
<!--过滤掉spring和mybatis的一些无用的DEBUG信息--> <!--过滤掉spring和mybatis的一些无用的DEBUG信息-->
<logger name="org.mybatis" level="info" additivity="false"> <logger name="org.mybatis" level="debug" additivity="false">
<AppenderRef ref="Console"/> <AppenderRef ref="Console"/>
</logger> </logger>
<!--监控系统信息--> <!--监控系统信息-->
@@ -86,7 +86,7 @@
<AppenderRef ref="Console"/> <AppenderRef ref="Console"/>
</Logger> </Logger>
<root level="info"> <root level="debug">
<appender-ref ref="Console"/> <appender-ref ref="Console"/>
<appender-ref ref="Filelog"/> <appender-ref ref="Filelog"/>
<appender-ref ref="RollingFileInfo"/> <appender-ref ref="RollingFileInfo"/>

View File

@@ -2,7 +2,7 @@
<template> <template>
<div class="cont_cont"> <div class="cont_cont">
<!-- <div class="cont_left" v-loading="leftloading"> <div class="cont_left" v-loading="leftloading">
<div class="cont_header"> <div class="cont_header">
<p class="cont_header_title">{{title}}</p> <p class="cont_header_title">{{title}}</p>
<p class="cont_header_subtitle">{{title}}</p> <p class="cont_header_subtitle">{{title}}</p>
@@ -14,7 +14,7 @@
@updatafilelist="updatafilelist" @delectFun="delectFun"> @updatafilelist="updatafilelist" @delectFun="delectFun">
</fileHome> </fileHome>
</div> </div>
</div> --> </div>
<div <div
class="cont_right" class="cont_right"
v-loading="contloading" v-loading="contloading"

View File

@@ -214,7 +214,7 @@
// 表格中点击 // 表格中点击
engineDisplay: function(id) { engineDisplay: function(id) {
//alert(id); //alert(id);
let h5Path = ''; let h5Path = '/enginex';
window.localStorage.setItem("engineId", id); window.localStorage.setItem("engineId", id);
bus.$emit('EngineSwitchover',id) bus.$emit('EngineSwitchover',id)

View File

@@ -481,6 +481,8 @@ CREATE TABLE `t_decision_tables_result` (
`version_id` int(11) NOT NULL DEFAULT '0' COMMENT '决策表版本id', `version_id` int(11) NOT NULL DEFAULT '0' COMMENT '决策表版本id',
`rows` int(11) DEFAULT NULL COMMENT '行数', `rows` int(11) DEFAULT NULL COMMENT '行数',
`columns` int(11) DEFAULT NULL COMMENT '列数', `columns` int(11) DEFAULT NULL COMMENT '列数',
`ro` int(11) DEFAULT NULL COMMENT '行数new',
`colum` int(11) DEFAULT NULL COMMENT '列数new',
`result_value` longtext COMMENT '结果集二维数组', `result_value` longtext COMMENT '结果集二维数组',
`create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`update_time` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', `update_time` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',

31
sql/update.sql Normal file
View File

@@ -0,0 +1,31 @@
create table t_list_db_version(
id int(11) NOT NULL AUTO_INCREMENT COMMENT '主键id',
list_db_id int(11) NOT NULL,
version_code varchar(255) DEFAULT NULL,
description varchar(4096) DEFAULT NULL,
result_field_en varchar(255) DEFAULT NULL,
status int(4) DEFAULT NULL,
table_column varchar(1024) DEFAULT NULL,
match_type int(4) DEFAULT NULL,
query_type int(4) DEFAULT NULL,
query_field varchar(255) DEFAULT NULL ,
organ_id int(11) NOT NULL DEFAULT '0' COMMENT '组织id',
create_user_id int(11) NOT NULL DEFAULT '0' COMMENT '创建者id',
update_user_id int(11) NOT NULL DEFAULT '0' COMMENT '修改者id',
create_time datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建日期',
update_time datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改日期',
snapshot json DEFAULT NULL COMMENT '名单库版本配置快照',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
ALTER TABLE t_machine_learning_models MODIFY COLUMN model_field varchar(4096) NOT NULL DEFAULT '' COMMENT '模型解析字段';
ALTER TABLE t_decision_tables_result ADD COLUMN `ro` int DEFAULT NULL COMMENT '行数';
ALTER TABLE t_decision_tables_result ADD COLUMN `colum` int DEFAULT NULL COMMENT '列数';