--
You received this message because you are subscribed to the Google Groups "Delta Lake Users and Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to delta-users...@googlegroups.com.
To post to this group, send email to delta...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/delta-users/05bee706-e1fa-49bf-a547-819ec21898bd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
I would not recommend running with multiple versions of the same library on classpath. It is too hard to reason about what is actually happening.Other users on the slack channel have reported success getting this working by following the directions here: https://hadoop.apache.org/docs/r2.7.3/hadoop-aws/tools/hadoop-aws/index.htmlOtherwise we'll publish instructions when we add official S3 support as part of the 0.2.0 release (targeting the beginning of June).
On Wed, May 22, 2019 at 2:52 AM Hakan Ilter <Hakan...@oaknorth.ai> wrote:
Hi everyone,--I was planning to use DL (0.1.0) on S3 but had some issues. I know DL doesn't support S3 for transactions but all I need is storing the data on S3 for now. I managed to run it but these are the issues:1. It doesn't support s3 scheme, but s3a scheme works fine.2. I'm using Spark 2.4.3, which comes with hadoop-aws-2.7.3.jar but DL requires "spark.hadoop.fs.AbstractFileSystem.s3a.impl=org.apache.hadoop.fs.s3a.S3A" in the config and this class exists in hadoop-aws-2.8.5.jar, so it works if you put two versions of the same jar in the classpath. Crazy but working.Do you think is this a good idea to use it with this settings or should I wait until it fully supports S3?Any comments will be appreciated.Kind regards.Hakan.
You received this message because you are subscribed to the Google Groups "Delta Lake Users and Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to delta...@googlegroups.com.
s3n
. While this still works, we recommend
that you use the s3
URI scheme for the best
performance, security, and reliability.s3a
protocol is not supported. We suggest you use s3
in place
of s3a
.