Skip to content

Commit e0096e9

Browse files
committed
Merge remote-tracking branch 'origin/develop_930' into develop_930
2 parents c94fe9f + ee4e2ac commit e0096e9

389 files changed

Lines changed: 43245 additions & 9135 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

LICENSE

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
MIT License
2-
3-
Copyright (c) [2025] [ModelEngine Data-Engine Platform]
4-
5-
Permission is hereby granted, free of charge, to any person obtaining a copy
6-
of this software and associated documentation files (the "Software"), to deal
7-
in the Software without restriction, including without limitation the rights
8-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9-
copies of the Software, subject to the following conditions:
10-
11-
The above copyright notice and this permission notice shall be included in all
12-
copies or substantial portions of the Software.
13-
14-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20-
SOFTWARE.
1+
# DataMeta Open Source License
2+
3+
DataMeta is licensed under the MIT License, with the following additional conditions:
4+
5+
DataMeta is permitted to be used commercially, including as a backend service for other applications or as an application development platform for enterprises. However, when the following conditions are met, you must contact the producer to obtain a commercial license:
6+
7+
a. Multi-tenant SaaS service: Unless explicitly authorized by DataMeta in writing, you may not use the DataMeta source code to operate a multi-tenant SaaS service.
8+
b. LOGO and copyright information: In the process of using DataMeta's frontend, you may not remove or modify the LOGO or copyright information in the DataMeta console or applications. This restriction is inapplicable to uses of Nexent that do not involve its frontend.
9+
10+
Please contact zhangyafeng2@huawei.com by email to inquire about licensing matters.
11+
12+
As a contributor, you should agree that:
13+
14+
a. The producer can adjust the open-source agreement to be more strict or relaxed as deemed necessary.
15+
b. Your contributed code may be used for commercial purposes, such as DataMeta's cloud business.
16+
17+
Apart from the specific conditions mentioned above, all other rights and restrictions follow the MIT License.
18+
Detailed information about the MIT License can be found at: https://opensource.org/licenses/MIT
19+
20+
Copyright © 2025 Huawei Technologies Co., Ltd.

Makefile

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ else
2626
endif
2727

2828
.PHONY: install
29-
install: install-data-platform
29+
install: install-data-meta
3030

3131
.PHONY: uninstall-%
3232
uninstall-%:
@@ -47,7 +47,7 @@ else
4747
endif
4848

4949
.PHONY: uninstall
50-
uninstall: uninstall-data-platform
50+
uninstall: uninstall-data-meta
5151

5252
# build
5353
.PHONY: mineru-docker-build
@@ -80,27 +80,27 @@ runtime-docker-build:
8080

8181
.PHONY: backend-docker-install
8282
backend-docker-install:
83-
cd deployment/docker/data-platform && docker-compose up -d backend
83+
cd deployment/docker/data-meta && docker-compose up -d backend
8484

8585
.PHONY: backend-docker-uninstall
8686
backend-docker-uninstall:
87-
cd deployment/docker/data-platform && docker-compose down backend
87+
cd deployment/docker/data-meta && docker-compose down backend
8888

8989
.PHONY: frontend-docker-install
9090
frontend-docker-install:
91-
cd deployment/docker/data-platform && docker-compose up -d frontend
91+
cd deployment/docker/data-meta && docker-compose up -d frontend
9292

9393
.PHONY: frontend-docker-uninstall
9494
frontend-docker-uninstall:
95-
cd deployment/docker/data-platform && docker-compose down frontend
95+
cd deployment/docker/data-meta && docker-compose down frontend
9696

9797
.PHONY: runtime-docker-install
9898
runtime-docker-install:
99-
cd deployment/docker/data-platform && docker-compose up -d runtime
99+
cd deployment/docker/data-meta && docker-compose up -d runtime
100100

101101
.PHONY: runtime-docker-uninstall
102102
runtime-docker-uninstall:
103-
cd deployment/docker/data-platform && docker-compose down runtime
103+
cd deployment/docker/data-meta && docker-compose down runtime
104104

105105
.PHONY: runtime-k8s-install
106106
runtime-k8s-install:
@@ -146,16 +146,16 @@ frontend-k8s-install:
146146
frontend-k8s-uninstall:
147147
kubectl delete -f deployment/kubernetes/frontend/deploy.yaml
148148

149-
.PHONY: data-platform-docker-install
150-
data-platform-docker-install:
151-
cd deployment/docker/data-platform && docker-compose up -d
149+
.PHONY: data-meta-docker-install
150+
data-meta-docker-install:
151+
cd deployment/docker/data-meta && docker-compose up -d
152152

153-
.PHONY: data-platform-docker-uninstall
154-
data-platform-docker-uninstall:
155-
cd deployment/docker/data-platform && docker-compose down
153+
.PHONY: data-meta-docker-uninstall
154+
data-meta-docker-uninstall:
155+
cd deployment/docker/data-meta && docker-compose down
156156

157-
.PHONY: data-platform-k8s-install
158-
data-platform-k8s-install: mysql-k8s-install backend-k8s-install frontend-k8s-install runtime-k8s-install
157+
.PHONY: data-meta-k8s-install
158+
data-meta-k8s-install: mysql-k8s-install backend-k8s-install frontend-k8s-install runtime-k8s-install
159159

160-
.PHONY: data-platform-k8s-uninstall
161-
data-platform-k8s-uninstall: mysql-k8s-uninstall backend-k8s-uninstall frontend-k8s-uninstall runtime-k8s-uninstall
160+
.PHONY: data-meta-k8s-uninstall
161+
data-meta-k8s-uninstall: mysql-k8s-uninstall backend-k8s-uninstall frontend-k8s-uninstall runtime-k8s-uninstall

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Data-Engine 一站式数据工作平台
1+
# DataMeta 一站式数据工作平台
22

33
> 面向模型微调与RAG检索的企业级数据处理平台,支持数据管理、算子市场、数据清洗、数据合成、数据标注、数据评估等核心功能。
44

backend/api-gateway/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<modelVersion>4.0.0</modelVersion>
77

88
<parent>
9-
<groupId>com.dataengine</groupId>
10-
<artifactId>data-engine-platform</artifactId>
9+
<groupId>com.datameta</groupId>
10+
<artifactId>data-meta-platform</artifactId>
1111
<version>1.0.0-SNAPSHOT</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>

backend/api-gateway/src/main/java/com/dataengine/gateway/ApiGatewayApplication.java renamed to backend/api-gateway/src/main/java/com/datameta/gateway/ApiGatewayApplication.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.dataengine.gateway;
1+
package com.datameta.gateway;
22

33
import org.springframework.boot.SpringApplication;
44
import org.springframework.boot.autoconfigure.SpringBootApplication;
@@ -14,8 +14,8 @@
1414
*/
1515
@SpringBootApplication
1616
@ComponentScan(basePackages = {
17-
"com.dataengine.gateway",
18-
"com.dataengine.shared"
17+
"com.datameta.gateway",
18+
"com.datameta.shared"
1919
})
2020
public class ApiGatewayApplication {
2121

backend/openapi/README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# 在各个服务的pom.xml中添加以下插件配置:
66

77
```xml
8+
89
<plugin>
910
<groupId>org.openapitools</groupId>
1011
<artifactId>openapi-generator-maven-plugin</artifactId>
@@ -18,8 +19,8 @@
1819
<inputSpec>${project.basedir}/../../openapi/specs/${project.artifactId}.yaml</inputSpec>
1920
<generatorName>spring</generatorName>
2021
<output>${project.build.directory}/generated-sources/openapi</output>
21-
<apiPackage>com.dataengine.${project.name}.interfaces.api</apiPackage>
22-
<modelPackage>com.dataengine.${project.name}.interfaces.dto</modelPackage>
22+
<apiPackage>com.datameta.${project.name}.interfaces.api</apiPackage>
23+
<modelPackage>com.datameta.${project.name}.interfaces.dto</modelPackage>
2324
<configOptions>
2425
<interfaceOnly>true</interfaceOnly>
2526
<useTags>true</useTags>
@@ -50,8 +51,8 @@ openApiGenerate {
5051
generatorName = "spring"
5152
inputSpec = "$rootDir/openapi/specs/${project.name}.yaml"
5253
outputDir = "$buildDir/generated-sources/openapi"
53-
apiPackage = "com.dataengine.${project.name}.interfaces.api"
54-
modelPackage = "com.dataengine.${project.name}.interfaces.dto"
54+
apiPackage = "com.datameta.${project.name}.interfaces.api"
55+
modelPackage = "com.datameta.${project.name}.interfaces.dto"
5556
configOptions = [
5657
interfaceOnly: "true",
5758
useTags: "true",
@@ -79,7 +80,7 @@ openapi-generator-cli generate \
7980
-i openapi/specs/data-annotation-service.yaml \
8081
-g typescript-axios \
8182
-o frontend/packages/api-client/src/generated/annotation \
82-
--additional-properties=supportsES6=true,npmName=@dataengine/annotation-api,npmVersion=1.0.0
83+
--additional-properties=supportsES6=true,npmName=@datameta/annotation-api,npmVersion=1.0.0
8384
```
8485

8586
## Usage in Services

backend/openapi/specs/data-annotation.yaml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,11 @@ info:
44
description: 数据标注服务API - 智能预标注、人工平台、主动学习
55
version: 1.0.0
66
contact:
7-
name: Data Engine Platform Team
8-
email: dev@dataengine.com
7+
name: Data Meta Platform Team
98

109
servers:
11-
- url: http://localhost:8083
10+
- url: http://localhost:8080
1211
description: Development server
13-
- url: https://api.dataengine.com/annotation
14-
description: Production server
1512

1613
tags:
1714
- name: annotation-tasks

backend/openapi/specs/data-cleaning.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ info:
44
description: 数据清洗服务API - 策略/规则、流程编排对接
55
version: 1.0.0
66
contact:
7-
name: Data Engine Platform Team
8-
email: dev@dataengine.com
7+
name: Data Meta Platform Team
98

109
servers:
1110
- url: http://localhost:8084

backend/openapi/specs/data-evaluation.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ info:
44
description: 数据评估服务API - 质量、适配性、价值评估
55
version: 1.0.0
66
contact:
7-
name: Data Engine Platform Team
8-
email: dev@dataengine.com
7+
name: Data Meta Platform Team
98

109
servers:
1110
- url: http://localhost:8086

backend/openapi/specs/data-management.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@ components:
613613
fileType:
614614
type: string
615615
description: 文件类型
616-
size:
616+
fileSize:
617617
type: integer
618618
format: int64
619619
description: 文件大小(字节)
@@ -627,7 +627,7 @@ components:
627627
filePath:
628628
type: string
629629
description: 文件路径
630-
uploadedAt:
630+
uploadTime:
631631
type: string
632632
format: date-time
633633
description: 上传时间

0 commit comments

Comments
 (0)