|
|
|
@ -143,7 +143,9 @@ public class VectorParamServiceImpl extends ServiceImpl<VectorParamMapper, Vecto
|
|
|
|
|
} |
|
|
|
|
log.info("synchronization vector param id:{}", id); |
|
|
|
|
VectorUrlResponse response = getUrlResponse(entity.getUrl(), bladeToken, hzinfoToken); |
|
|
|
|
if (response != null) { |
|
|
|
|
if (response == null || response.getOriginalData() == null || response.getOriginalData().isEmpty()) { |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
ObjectMapper mapper = new ObjectMapper(); |
|
|
|
|
JsonNode rootNode = null; |
|
|
|
|
try { |
|
|
|
@ -159,6 +161,7 @@ public class VectorParamServiceImpl extends ServiceImpl<VectorParamMapper, Vecto
|
|
|
|
|
} |
|
|
|
|
String tableName = entity.getTableName().replace(entity.getProjectPrefix() + "_", ""); |
|
|
|
|
String syncResult = weaviateService.saveBatch(response.getOriginalData(), tableName, attrMap); |
|
|
|
|
log.info("synchronization vector param id:{}, result:{}", id, syncResult); |
|
|
|
|
if (this.update(Wrappers.<VectorParamEntity>lambdaUpdate() |
|
|
|
|
.eq(VectorParamEntity::getId, id) |
|
|
|
|
.set(VectorParamEntity::getSynchronizationRemark, syncResult) |
|
|
|
@ -170,8 +173,6 @@ public class VectorParamServiceImpl extends ServiceImpl<VectorParamMapper, Vecto
|
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public Boolean removeByIdsWithLog(List<Long> idList) { |
|
|
|
|