Tatiana
Tatiana
ok im using s3a with the following config: client { fs.DEFAULT_FS = "https://s3.us.cloud-object-storage.appdomain.cloud" fs.defaultFS = "https://s3.us.cloud-object-storage.appdomain.cloud" fs.s3a.bucket.BUCKET_NAME.access.key = "" fs.s3a.bucket.BUCKET_NAME.secret.key = "" fs.s3a.bucket.BUCKET_NAME.endpoint = "https://s3.us.cloud-object-storage.appdomain.cloud" } But im getting the...
I changed my settings to the below and tried both s3a, s3n, and s3 and got the same error: "org.apache.hadoop.fs.UnsupportedFileSystemException: No FileSystem for scheme "s3a" (or "s3n" or "s3") client...
thanks for looking into this @krisgeus im just a little confused about something. Im trying to use s3 instead of hdfs so why do I need hdfs to be running...
I did everything you listed above and its not working. I got an error about a missing hadoop.tmp.dir var so I added that and now theres no error but there's...
Here is the error: `[main] WARN [NativeCodeLoader]: Unable to load native-hadoop library for your platform... using builtin-java classes where applicable divolte | Exception in thread "main" 2019-07-29 15:20:24.908Z [main] ERROR...
Then I added fs.file.impl = "org.apache.hadoop.fs.LocalFileSystem" and fs.hdfs.impl = "org.apache.hadoop.hdfs.DistributedFileSystem" to my hdfs configuration in divolte and now im getting a different error: `Exception in thread "main" java.lang.NoSuchMethodError: org.apache.hadoop.hdfs.server.namenode.NameNode.getAddress(Ljava/lang/String;)Ljava/net/InetSocketAddress; divolte...
according to this thread (https://stackoverflow.com/questions/45460909/accessing-hdfs-in-java-throws-error) there is an issue with dependency versions in divolte but im not sure who to change that in divolte...
I'm having the same issue.. I have single level array of string that Im passing from a custom event and im trying to map to a field with type array...
@asnare did you find a work around or can you tell me how I should write the mapping for my array of strings field in mapping.groovy? Im using divolte v0.9...
I found this work around by using this format in mapping.groovy: `map eventParameters().path('$.countries.*') onto 'ccountries'`