Dear django-users,
We have two kinds of web servers. One is based on Java(tomcat + spring boot), while another is based on Python(Django).
Recently we changed our Oracle db to RAC mode, which theJava server can successfully connect to it by following config:
jdbc:oracle:thin:@(DESCRIPTION=(ENABLE=BROKEN)(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=177.177.50.112) (PORT=1521))(ADDRESS=(PROTOCOL=TCP)(HOST=177.177.50.113)(PORT=1521))(LOAD_BALANCE=NO)(FAILOVER=YES))(CONNECT_DATA=(SERVICE_NAME=aldb)(SERVER=DEDICATED)))
However for Django server, we can't find a proper way to config such connection. Anyone has experience to config Oracle RAC for Django?
Below is our old config which currently works well on non-RAC mode as a reference:
Regards,
Felix Hu