0

I'm new to AWS, trying to load data from csv file to RDS MySQL using data pipeline "load S3 data into RDS mysql table" template. But getting error "DriverClass not found for database:aurora". Tried setting JDBC uri property point to driver jar in s3.

Thanks!

1 Answer 1

2

Export pipeline you just created from template and change RDS properties for the following:

{
      "*password": "#{*myAuroraPassword}",
      "name": "aurora",
      "connectionString" : "jdbc:mysql://hostname:port/dbname",
      "jdbcDriverClass" : "com.mysql.jdbc.Driver",
      "id": "aurora",
      "type": "JdbcDatabase",
      "username": "#{myUsername}"
}
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.