Replies: 1 comment
-
There is not. You should consider mounting the s3 bucket on your filesystem which would be transparent to java and the native C library. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there currently support for database files located in AWS S3?
s3path = "s3://my-bucket/myfile.db"
df = spark.read.format('jdbc').option('driver', 'org.sqlite.JDBC').option('url', f"jdbc:sqlite:{s3path}").option('dbtable', 'mytable').load()
Error:
java.sql.SQLException: path to 's3://my-bucket/myfile.db': '/home/app/s3:' does not exist
Beta Was this translation helpful? Give feedback.
All reactions