Wu Chao
Wu Chao
Any updates on this issue bug? Encountered the same slowness issue for oracle with large number of tables.
@MeesvanStraten you can try building the producer jar from local changing: `import javax.xml.bind.DatatypeConverter;` to `import jakarta.xml.bind.DatatypeConverter;` And replace the jar in your maven m2 folder. Alternatively, try adding in the...
We've encountered the same challenge. In the method `await ClientManager.get_client()` ``` @classmethod async def get_client(cls) -> PostgreSQLDB: async with cls._lock: if cls._instances["db"] is None: config = ClientManager.get_config() db = PostgreSQLDB(config)...
I have managed to solve the issue by overriding the relevant storage classes 👍
> > I have managed to solve the issue by overriding the relevant storage classes 👍 > > Thats's Great! When i tried overriding, i noticed all the storage classes...