I have an array like this
(20140101,20140102,20140103,20140104,20140105,20140106,20140107,20140108)
I want to create a map from this by prefixing each value with "s3://" and concatenating three values with a comma.
Output:
val params = Map("1"-> "s3://20140101,s3://20140102,s3://20140103","2"-> "s3://20140104,s3://20140105,s3://20140106","3"->"s3://20140107,s3://20140108")
I'm a beginner and kindly request some thoughts here.