32 lines
641 B
YAML
32 lines
641 B
YAML
# Database Configuration
|
|
mysql:
|
|
host: "72.60.226.4"
|
|
port: 3306
|
|
user: "root"
|
|
password: "AfcItz2391,."
|
|
database: "db_trading_meta"
|
|
pool_size: 10
|
|
max_overflow: 20
|
|
pool_timeout: 30
|
|
pool_recycle: 3600
|
|
echo: false
|
|
|
|
redis:
|
|
host: "localhost"
|
|
port: 6379
|
|
db: 0
|
|
password: null
|
|
decode_responses: true
|
|
max_connections: 50
|
|
|
|
# Data fetching settings
|
|
data:
|
|
default_limit: 50000
|
|
batch_size: 5000
|
|
cache_ttl: 300 # seconds
|
|
|
|
# Table names
|
|
tables:
|
|
tickers_agg_data: "tickers_agg_data"
|
|
tickers_agg_ind_data: "tickers_agg_ind_data"
|
|
tickers_agg_data_predict: "tickers_agg_data_predict" |