-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix grpc psi * fix grpc psi * fix psi * fix psi * feat local dev envs * feat organ joining pass * feat data share * fix node joining auto pass * fix apply for connect pull dataresource * feat event log * feat log * feat log * feat log * feat log to roll back * feat log to roll back * feat log to roll back * fix data_fusion_task entity fill id key automatically * fix select resource by resourceId (string and long) * feat add data_share address * feat update menu auth ddl sql --------- Co-authored-by: Like habits <[email protected]> Co-authored-by: Unknown <[email protected]> Co-authored-by: primi <[email protected]> Co-authored-by: terrence <terrence>
- Loading branch information
1 parent
0421b91
commit c7efe56
Showing
15 changed files
with
452 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
primihub-service/application/src/main/resources/application-dev1.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
server: | ||
port: 8091 | ||
spring: | ||
application: | ||
name: platform | ||
cloud: | ||
nacos: | ||
discovery: | ||
server-addr: localhost:8848 | ||
namespace: dev1 | ||
nacos: | ||
config: | ||
server-addr: localhost:8848 | ||
namespace: dev1 | ||
max-retry: 3 | ||
config-long-poll-timeout: 1000 | ||
config-retry-time: 1000 | ||
auto-refresh: true | ||
username: nacos | ||
password: nacos | ||
context-path: /nacos | ||
group: DEFAULT_GROUP | ||
file-extension: yaml | ||
aj: | ||
captcha: | ||
jigsaw: classpath:images/yyjigsaw | ||
cache-type: redis | ||
water-mark: PrimiHub | ||
slip-offset: 5 | ||
aes-status: true | ||
interference-options: 2 | ||
req-frequency-limit-enable: true | ||
req-get-lock-limit: 30 | ||
req-get-lock-seconds: 30 | ||
req-get-minute-limit: 10 | ||
req-check-minute-limit: 10 | ||
req-verify-minute-limit: 10 | ||
type: BLOCKPUZZLE | ||
logging: | ||
level: | ||
root: info | ||
mybatis.mapper: debug | ||
com.primihub.biz.repository: debug | ||
mybatis: | ||
configuration: | ||
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl |
42 changes: 42 additions & 0 deletions
42
primihub-service/application/src/main/resources/application-dev2.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
server: | ||
port: 8092 | ||
spring: | ||
application: | ||
name: platform | ||
cloud: | ||
nacos: | ||
discovery: | ||
server-addr: localhost:8848 | ||
namespace: dev2 | ||
nacos: | ||
config: | ||
server-addr: localhost:8848 | ||
namespace: dev2 | ||
max-retry: 3 | ||
config-long-poll-timeout: 1000 | ||
config-retry-time: 1000 | ||
auto-refresh: true | ||
username: nacos | ||
password: nacos | ||
context-path: /nacos | ||
group: DEFAULT_GROUP | ||
file-extension: yaml | ||
aj: | ||
captcha: | ||
jigsaw: classpath:images/yyjigsaw | ||
cache-type: redis | ||
water-mark: PrimiHub | ||
slip-offset: 5 | ||
aes-status: true | ||
interference-options: 2 | ||
req-frequency-limit-enable: true | ||
req-get-lock-limit: 30 | ||
req-get-lock-seconds: 30 | ||
req-get-minute-limit: 10 | ||
req-check-minute-limit: 10 | ||
req-verify-minute-limit: 10 | ||
type: BLOCKPUZZLE | ||
logging: | ||
level: | ||
root: info | ||
mybatis.mapper: debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
...ihub-service/biz/src/main/java/com/primihub/biz/entity/event/RemoteDataResourceEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.primihub.biz.entity.event; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
|
||
@Data | ||
@AllArgsConstructor | ||
@NoArgsConstructor | ||
public class RemoteDataResourceEvent { | ||
private Long resourceId; | ||
private Integer resourceState; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.