768beb79e1
this is the first step to moving different databases tables into different database instances in this PR, only handle multiple database instances creation based on user configuration at /etc/sonic/database_config.json we keep current method to create single database instance if no extra/new DATABASE configuration exist in database_config.json file. if user try to configure more db instances at database_config.json , we create those new db instances along with the original db instance existing today. The configuration is as below, later we can add more db related information if needed: { ... "DATABASE": { "redis-db-01" : { "port" : "6380", "database": ["APPL_DB", "STATE_DB"] }, "redis-db-02" : { "port" : "6381", "database":["ASIC_DB"] }, } ... } The detail description is at design doc at Azure/SONiC#271 The main idea is : when database.sh started, we check the configuration and generate corresponding scripts. rc.local service handle old_config copy when loading new images, there is no dependency between rc.local and database service today, for safety and make sure the copy operation are done before database try to read it, we make database service run after rc.local Then database docker started, we check the configuration and generate corresponding scripts/.conf in database docker as well. based on those conf, we create databases instances as required. at last, we ping_pong check database are up and continue Signed-off-by: Dong Zhang d.zhang@alibaba-inc.com
41 lines
1.2 KiB
Python
Executable File
41 lines
1.2 KiB
Python
Executable File
#!/usr/bin/python
|
|
import json
|
|
import os
|
|
import subprocess
|
|
import time
|
|
import syslog
|
|
|
|
def ping_redis(cmd):
|
|
output = ''
|
|
while True:
|
|
try:
|
|
output = subprocess.check_output(cmd, shell=True)
|
|
except subprocess.CalledProcessError as e:
|
|
syslog.syslog(syslog.LOG_ERR, 'ping redis failed, cmd : {}'.format(cmd))
|
|
|
|
if 'PONG' in output:
|
|
break
|
|
syslog.syslog(syslog.LOG_ERR, 'ping response : {}'.format(output))
|
|
time.sleep(1)
|
|
|
|
database_config_file = "/var/run/redis/sonic-db/database_config.json"
|
|
|
|
data = {}
|
|
while True:
|
|
if os.path.isfile(database_config_file):
|
|
with open(database_config_file, "r") as read_file:
|
|
data = json.load(read_file)
|
|
break
|
|
time.sleep(1)
|
|
syslog.syslog(syslog.LOG_ERR, 'config file {} does not exist right now'.format(database_config_file))
|
|
|
|
while True:
|
|
if 'INSTANCES' in data:
|
|
for inst in data["INSTANCES"]:
|
|
port = data["INSTANCES"][inst]["port"]
|
|
cmd = "redis-cli -p " + str(port) + " ping"
|
|
ping_redis(cmd)
|
|
break
|
|
time.sleep(1)
|
|
syslog.syslog(syslog.LOG_ERR, 'config file {} does not have INSTANCES'.format(database_config_file))
|