Deploying in Self Host
DataCap enables users to deploy services to their own machines. This document allows users to learn how to deploy DataCap in an autonomous machine.
System Requirements¶
Warning
The binary package of the software is compiled and tested based on the following system. It has not been tested on other versions and is theoretically supported.
If you have an unsupported system, use the source code compilation method to actively compile the binary file.
System | Version |
---|---|
JDK | >=11 |
MySQL | >=5.6.x |
Prepare the installation package¶
Note
Download the binary package of the corresponding system from the following address and install it. If you need to install using source code, go to the Developer Documentation module.
-
Run the following command after downloading the binaries locally
tar -xvzf datacap-release.tar.gz
- Go to the root directory of the software
cd datacap
Software configuration¶
For the first installation of the software, you need to import the sql script from the schema/datacap.sql
file into the MySQL server. Note: The scripts that need to be imported are matched based on the downloaded package
Danger
If you are upgrading from another version, run schema/VERSION/schema.sql
All configurations in the DataCap software are in the configure/application.properties
file.
Basic configuration¶
After importing the SQL
script, modify the configure/application.properties
configuration file to modify the configuration information of the MySQL server
server.port=9096
server.address=localhost
# Fixed serialized data missing for 8 hours
spring.jackson.time-zone=GMT+8
spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
# datacap security management configuration
datacap.security.secret=DataCapSecretKey
datacap.security.expiration=86400000
# datacap editor configuration
datacap.editor.sugs.maxSize=1000
server.port
: The port on which the service initiates the listener on the serverserver.address
: Configure the local listening address of the servicespring.jackson.time-zone
: Used to configure the time zonespring.jackson.date-format
: Lets you configure the date formatdatacap.security.secret
: The key used to configure data security managementdatacap.security.expiration
: The expiration time for configuring data security managementdatacap.editor.sugs.maxSize
: Lets you configure the maximum number of rows in the data editor
Web service configuration¶
spring.mvc.throw-exception-if-no-handler-found=true
spring.resources.add-mappings=false
spring.web.resources.add-mappings=true
spring.mvc.throw-exception-if-no-handler-found
: Used to configure whether an exception is thrownspring.resources.add-mappings
: Lets you configure whether to enable static resource mappingspring.web.resources.add-mappings
: Lets you configure whether to enable static resource mapping
Database configuration¶
Danger
If version >=8.x
, set allowPublicKeyRetrieval=true
spring.datasource.url=jdbc:mysql://localhost:3306/datacap?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&allowMultiQueries=true&useSSL=false&useOldAliasMetadataBehavior=true&jdbcCompliantTruncation=false&allowPublicKeyRetrieval=true
spring.datasource.username=root
spring.datasource.password=12345678
spring.datasource.url
: Lets you configure the database connection addressspring.datasource.username
: Lets you configure the database usernamespring.datasource.password
: Used to configure the database password
Note
All Spring Data configuration parameters are supported
Actuator configuration¶
datacap.executor.data=
datacap.executor.way=local
datacap.executor.mode=client
datacap.executor.seatunnel.home=/opt/lib/seatunnel
datacap.executor.data
: Used to configure the data buffer path of the actuatordatacap.executor.way
: It is used to configure the execution mode of the actuator, and different actuators have different execution methodsdatacap.executor.mode
: It is used to configure the execution mode of the actuator, different actuators have different execution modesdatacap.executor.seatunnel.home
: The Apache Seatunnel home directory used to configure the executor
Upload the configuration¶
datacap.config.data=
datacap.cache.data=
datacap.config.data
: The path used to configure the upload profiledatacap.cache.data
: Lets you configure the path to upload the cache file
OpenAi configuration¶
datacap.openai.backend=https://api.openai.com
datacap.openai.token=
datacap.openai.model=GPT_35_TURBO_0613
datacap.openai.timeout=30
datacap.openai.backend
: Used to configure OpenAI's backend addressdatacap.openai.token
: The token used to configure OpenAIdatacap.openai.model
: The model used to configure OpenAIdatacap.openai.timeout
: Used to configure the timeout period for OpenAI
Primary system configuration¶
datacap.registration.enable=
datacap.captcha.enable=
datacap.cache.maximum=100000
datacap.cache.expiration=5
datacap.audit.sql.print=false
datacap.registration.enable
: Used to configure whether to enable registrationdatacap.captcha.enable
: This parameter is used to configure whether to enable the verification codedatacap.cache.maximum
: Lets you configure the maximum cache valuedatacap.cache.expiration
: Lets you configure the cache expiration timedatacap.audit.sql.print
: This parameter is used to configure whether to print SQL statements
Pipeline configuration¶
datacap.pipeline.maxRunning=100
datacap.pipeline.maxQueue=200
datacap.pipeline.reset=STOPPED
datacap.pipeline.maxRunning
: Used to configure the maximum number of runsdatacap.pipeline.maxQueue
: Used to configure the maximum queuedatacap.pipeline.reset
: Lets you configure a reset policy
Storage configuration¶
Storage currently supports
Local
: local storageAliOss
: Alibaba Cloud OSSQiniu
: Qiniu Cloud
Local storage configuration¶
datacap.fs.type=Local
datacap.fs.access=
datacap.fs.secret=
datacap.fs.endpoint=
datacap.fs.bucket=
datacap.fs.type
: used to configure the file system typedatacap.fs.access
: used to configure file system access, this type can be emptydatacap.fs.secret
: used to configure the file system key, this type can be emptydatacap.fs.endpoint
: used to configure the file system endpoint. If filled in, it will be appended as a directory This type can be emptydatacap.fs.bucket
: used to configure the file system bucket, this type can be empty
Alibaba Cloud OSS configuration¶
datacap.fs.type=AliOss
datacap.fs.access=
datacap.fs.secret=
datacap.fs.endpoint=
datacap.fs.bucket=
datacap.fs.type
: AliOss
Qiniu Cloud Configuration¶
datacap.fs.type=Qiniu
datacap.fs.access=
datacap.fs.secret=
datacap.fs.endpoint=
datacap.fs.bucket=
datacap.fs.type
: Qiniu
Experimental features¶
datacap.experimental.autoLimit=true
datacap.experimental.data={user.dir}/data
datacap.experimental.avatarPath={username}/avatar/
datacap.experimental.autoLimit
: This parameter specifies whether to automatically increase the LIMITdatacap.experimental.data
: The data path used to configure the experimental featuredatacap.experimental.avatarPath
: Avatar path to configure experimental features
Log configuration¶
Warning
If you need to modify the log configuration, you can simply modify the configure/logback.xml
configuration file
JVM configuration¶
Warning
If you need to customize the JVM configuration, you can simply modify the configure/jvm.conf
configuration file
Software startup¶
Before starting the service, please install various plug-ins required by the system and execute the command
./bin/install-plugin.sh
Start the service¶
DataCap service startup is very simple, execute the following script
./bin/startup.sh
Discontinuation of service¶
Stop the service and execute the following script
./bin/shutdown.sh
Debug the service¶
Note
If you want to debug the system, you can start the service with ./bin/debug.sh
, but it stops when you close the window