def __init__()

in datastore/providers/analyticdb_datastore.py [0:0]


    def __init__(self, config: Dict[str, str] = PG_CONFIG):
        self.collection_name = config["collection"]
        self.user = config["user"]
        self.password = config["password"]
        self.database = config["database"]
        self.host = config["host"]
        self.port = config["port"]

        self.connection_pool = SimpleConnectionPool(
            minconn=1,
            maxconn=100,
            dbname=self.database,
            user=self.user,
            password=self.password,
            host=self.host,
            port=self.port,
        )

        self._initialize_db()