Dear OHDSI Community -
Struggling to configure OHDSI with my redshift database.
Using the AWS driver I run into a known issue with FlyWay described here.
The solutions is to adjust “Flyway setting the connection property enableFetchRingBuffer=false
.” How can we do this in WebAPI?
Current Steps:
- Rebuild the WebAPI docker image with `MAVEN_PROFILE=webapi-docker,webapi-redshift``
- Download the driver
- Set environment variables:
export DATASOURCE_DIALECT="redshift"
export DATASOURCE_URL="jdbc:redshift://$host:$port/$database"
export DATASOURCE_DRIVERCLASSNAME="com.amazon.redshift.Driver"
Note: I also tried with an old Redshift driver but ran into other connectivity issues.
Thank you for any help!