From b7a184cb0602557f164945e05f64025fec93fbd3 Mon Sep 17 00:00:00 2001 From: Gian Merlino Date: Wed, 18 Dec 2013 16:00:37 -0800 Subject: [PATCH 1/6] S3DataSegmentMover: Retries for S3 failures --- .../druid/storage/s3/S3DataSegmentMover.java | 74 ++++++++++++------- 1 file changed, 48 insertions(+), 26 deletions(-) diff --git a/s3-extensions/src/main/java/io/druid/storage/s3/S3DataSegmentMover.java b/s3-extensions/src/main/java/io/druid/storage/s3/S3DataSegmentMover.java index a9baf1d40ab..f7cbd25ebdd 100644 --- a/s3-extensions/src/main/java/io/druid/storage/s3/S3DataSegmentMover.java +++ b/s3-extensions/src/main/java/io/druid/storage/s3/S3DataSegmentMover.java @@ -20,6 +20,7 @@ package io.druid.storage.s3; import com.google.common.base.Predicate; +import com.google.common.base.Throwables; import com.google.common.collect.ImmutableMap; import com.google.common.collect.Maps; import com.google.inject.Inject; @@ -33,6 +34,7 @@ import org.jets3t.service.impl.rest.httpclient.RestS3Service; import org.jets3t.service.model.S3Object; import java.util.Map; +import java.util.concurrent.Callable; public class S3DataSegmentMover implements DataSegmentMover { @@ -97,34 +99,54 @@ public class S3DataSegmentMover implements DataSegmentMover } } - private void safeMove(String s3Bucket, String s3Path, String targetS3Bucket, String targetS3Path) - throws ServiceException, SegmentLoadingException + private void safeMove( + final String s3Bucket, + final String s3Path, + final String targetS3Bucket, + final String targetS3Path + ) throws ServiceException, SegmentLoadingException { - if (s3Client.isObjectInBucket(s3Bucket, s3Path)) { - log.info( - "Moving file[s3://%s/%s] to [s3://%s/%s]", - s3Bucket, - s3Path, - targetS3Bucket, - targetS3Path + try { + S3Utils.retryS3Operation( + new Callable() + { + @Override + public Void call() throws Exception + { + if (s3Client.isObjectInBucket(s3Bucket, s3Path)) { + log.info( + "Moving file[s3://%s/%s] to [s3://%s/%s]", + s3Bucket, + s3Path, + targetS3Bucket, + targetS3Path + ); + s3Client.moveObject(s3Bucket, s3Path, targetS3Bucket, new S3Object(targetS3Path), false); + } else { + // ensure object exists in target location + if (s3Client.isObjectInBucket(targetS3Bucket, targetS3Path)) { + log.info( + "Not moving file [s3://%s/%s], already present in target location [s3://%s/%s]", + s3Bucket, s3Path, + targetS3Bucket, targetS3Path + ); + } else { + throw new SegmentLoadingException( + "Unable to move file [s3://%s/%s] to [s3://%s/%s], not present in either source or target location", + s3Bucket, s3Path, + targetS3Bucket, targetS3Path + ); + } + } + return null; + } + } ); - s3Client.moveObject(s3Bucket, s3Path, targetS3Bucket, new S3Object(targetS3Path), false); - } else { - // ensure object exists in target location - if(s3Client.isObjectInBucket(targetS3Bucket, targetS3Path)) { - log.info( - "Not moving file [s3://%s/%s], already present in target location [s3://%s/%s]", - s3Bucket, s3Path, - targetS3Bucket, targetS3Path - ); - } - else { - throw new SegmentLoadingException( - "Unable to move file [s3://%s/%s] to [s3://%s/%s], not present in either source or target location", - s3Bucket, s3Path, - targetS3Bucket, targetS3Path - ); - } + } + catch (Exception e) { + Throwables.propagateIfInstanceOf(e, ServiceException.class); + Throwables.propagateIfInstanceOf(e, SegmentLoadingException.class); + throw Throwables.propagate(e); } } } From 00d651bf6fb0ac7306f48ccc35c97604f6d1503b Mon Sep 17 00:00:00 2001 From: Gian Merlino Date: Wed, 18 Dec 2013 16:05:27 -0800 Subject: [PATCH 2/6] [maven-release-plugin] prepare release druid-0.6.41 --- cassandra-storage/pom.xml | 2 +- common/pom.xml | 2 +- examples/pom.xml | 2 +- hdfs-storage/pom.xml | 2 +- indexing-hadoop/pom.xml | 2 +- indexing-service/pom.xml | 2 +- kafka-eight/pom.xml | 2 +- kafka-seven/pom.xml | 2 +- pom.xml | 4 ++-- processing/pom.xml | 2 +- rabbitmq/pom.xml | 2 +- s3-extensions/pom.xml | 2 +- server/pom.xml | 2 +- services/pom.xml | 2 +- 14 files changed, 15 insertions(+), 15 deletions(-) diff --git a/cassandra-storage/pom.xml b/cassandra-storage/pom.xml index f28c7dd5221..74f38572a1f 100644 --- a/cassandra-storage/pom.xml +++ b/cassandra-storage/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.41-SNAPSHOT + 0.6.41 diff --git a/common/pom.xml b/common/pom.xml index eb16f9251ba..e7669f901ea 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.41-SNAPSHOT + 0.6.41 diff --git a/examples/pom.xml b/examples/pom.xml index d21dc9c836f..aec1f6a8eed 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.41-SNAPSHOT + 0.6.41 diff --git a/hdfs-storage/pom.xml b/hdfs-storage/pom.xml index e5a7af70ad8..aca1d74ce5c 100644 --- a/hdfs-storage/pom.xml +++ b/hdfs-storage/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.41-SNAPSHOT + 0.6.41 diff --git a/indexing-hadoop/pom.xml b/indexing-hadoop/pom.xml index 7718b246d27..d199382bb09 100644 --- a/indexing-hadoop/pom.xml +++ b/indexing-hadoop/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.41-SNAPSHOT + 0.6.41 diff --git a/indexing-service/pom.xml b/indexing-service/pom.xml index 0e25e7c69ed..1219012a705 100644 --- a/indexing-service/pom.xml +++ b/indexing-service/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.41-SNAPSHOT + 0.6.41 diff --git a/kafka-eight/pom.xml b/kafka-eight/pom.xml index 08435a100c8..a4e50c0069d 100644 --- a/kafka-eight/pom.xml +++ b/kafka-eight/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.41-SNAPSHOT + 0.6.41 diff --git a/kafka-seven/pom.xml b/kafka-seven/pom.xml index a312aa80608..f627d7246b0 100644 --- a/kafka-seven/pom.xml +++ b/kafka-seven/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.41-SNAPSHOT + 0.6.41 diff --git a/pom.xml b/pom.xml index 0d792e9bbb7..97fd7b205c0 100644 --- a/pom.xml +++ b/pom.xml @@ -23,14 +23,14 @@ io.druid druid pom - 0.6.41-SNAPSHOT + 0.6.41 druid druid scm:git:ssh://git@github.com/metamx/druid.git scm:git:ssh://git@github.com/metamx/druid.git http://www.github.com/metamx/druid - ${project.artifactId}-${project.version} + druid-0.6.41 diff --git a/processing/pom.xml b/processing/pom.xml index 085af80a4da..978142bf3fc 100644 --- a/processing/pom.xml +++ b/processing/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.41-SNAPSHOT + 0.6.41 diff --git a/rabbitmq/pom.xml b/rabbitmq/pom.xml index e9098809f3d..a42b79cb7f0 100644 --- a/rabbitmq/pom.xml +++ b/rabbitmq/pom.xml @@ -9,7 +9,7 @@ io.druid druid - 0.6.41-SNAPSHOT + 0.6.41 diff --git a/s3-extensions/pom.xml b/s3-extensions/pom.xml index 7094612ff11..2dc00b1cc98 100644 --- a/s3-extensions/pom.xml +++ b/s3-extensions/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.41-SNAPSHOT + 0.6.41 diff --git a/server/pom.xml b/server/pom.xml index 576b6060d71..bce5ed868d6 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.41-SNAPSHOT + 0.6.41 diff --git a/services/pom.xml b/services/pom.xml index 7bd5af6e7b4..ab3f1845195 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -27,7 +27,7 @@ io.druid druid - 0.6.41-SNAPSHOT + 0.6.41 From 8d8ec51c9cd6e7c897a7712b2662d71e5c4363eb Mon Sep 17 00:00:00 2001 From: Gian Merlino Date: Wed, 18 Dec 2013 16:05:33 -0800 Subject: [PATCH 3/6] [maven-release-plugin] prepare for next development iteration --- cassandra-storage/pom.xml | 2 +- common/pom.xml | 2 +- examples/pom.xml | 2 +- hdfs-storage/pom.xml | 2 +- indexing-hadoop/pom.xml | 2 +- indexing-service/pom.xml | 2 +- kafka-eight/pom.xml | 2 +- kafka-seven/pom.xml | 2 +- pom.xml | 4 ++-- processing/pom.xml | 2 +- rabbitmq/pom.xml | 2 +- s3-extensions/pom.xml | 2 +- server/pom.xml | 2 +- services/pom.xml | 2 +- 14 files changed, 15 insertions(+), 15 deletions(-) diff --git a/cassandra-storage/pom.xml b/cassandra-storage/pom.xml index 74f38572a1f..00781634ef0 100644 --- a/cassandra-storage/pom.xml +++ b/cassandra-storage/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.41 + 0.6.42-SNAPSHOT diff --git a/common/pom.xml b/common/pom.xml index e7669f901ea..3be3dc64d17 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.41 + 0.6.42-SNAPSHOT diff --git a/examples/pom.xml b/examples/pom.xml index aec1f6a8eed..ae847d7d6bf 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.41 + 0.6.42-SNAPSHOT diff --git a/hdfs-storage/pom.xml b/hdfs-storage/pom.xml index aca1d74ce5c..fb486c69856 100644 --- a/hdfs-storage/pom.xml +++ b/hdfs-storage/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.41 + 0.6.42-SNAPSHOT diff --git a/indexing-hadoop/pom.xml b/indexing-hadoop/pom.xml index d199382bb09..a778774dd60 100644 --- a/indexing-hadoop/pom.xml +++ b/indexing-hadoop/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.41 + 0.6.42-SNAPSHOT diff --git a/indexing-service/pom.xml b/indexing-service/pom.xml index 1219012a705..70eecc8ab04 100644 --- a/indexing-service/pom.xml +++ b/indexing-service/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.41 + 0.6.42-SNAPSHOT diff --git a/kafka-eight/pom.xml b/kafka-eight/pom.xml index a4e50c0069d..7c282e9ecf8 100644 --- a/kafka-eight/pom.xml +++ b/kafka-eight/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.41 + 0.6.42-SNAPSHOT diff --git a/kafka-seven/pom.xml b/kafka-seven/pom.xml index f627d7246b0..7f6d33e03a4 100644 --- a/kafka-seven/pom.xml +++ b/kafka-seven/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.41 + 0.6.42-SNAPSHOT diff --git a/pom.xml b/pom.xml index 97fd7b205c0..e75dd1f81b4 100644 --- a/pom.xml +++ b/pom.xml @@ -23,14 +23,14 @@ io.druid druid pom - 0.6.41 + 0.6.42-SNAPSHOT druid druid scm:git:ssh://git@github.com/metamx/druid.git scm:git:ssh://git@github.com/metamx/druid.git http://www.github.com/metamx/druid - druid-0.6.41 + ${project.artifactId}-${project.version} diff --git a/processing/pom.xml b/processing/pom.xml index 978142bf3fc..4e719dc1d8a 100644 --- a/processing/pom.xml +++ b/processing/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.41 + 0.6.42-SNAPSHOT diff --git a/rabbitmq/pom.xml b/rabbitmq/pom.xml index a42b79cb7f0..a3b5e936cad 100644 --- a/rabbitmq/pom.xml +++ b/rabbitmq/pom.xml @@ -9,7 +9,7 @@ io.druid druid - 0.6.41 + 0.6.42-SNAPSHOT diff --git a/s3-extensions/pom.xml b/s3-extensions/pom.xml index 2dc00b1cc98..ae229afc5d8 100644 --- a/s3-extensions/pom.xml +++ b/s3-extensions/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.41 + 0.6.42-SNAPSHOT diff --git a/server/pom.xml b/server/pom.xml index bce5ed868d6..173512727a5 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.41 + 0.6.42-SNAPSHOT diff --git a/services/pom.xml b/services/pom.xml index ab3f1845195..fa580b17910 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -27,7 +27,7 @@ io.druid druid - 0.6.41 + 0.6.42-SNAPSHOT From 6478c9a16221c493356537d8d0d35466bbce66a1 Mon Sep 17 00:00:00 2001 From: Gian Merlino Date: Wed, 18 Dec 2013 18:30:01 -0800 Subject: [PATCH 4/6] S3DataSegmentMover: No need to move files onto themselves --- .../druid/storage/s3/S3DataSegmentMover.java | 20 +++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/s3-extensions/src/main/java/io/druid/storage/s3/S3DataSegmentMover.java b/s3-extensions/src/main/java/io/druid/storage/s3/S3DataSegmentMover.java index f7cbd25ebdd..fbf18df4c18 100644 --- a/s3-extensions/src/main/java/io/druid/storage/s3/S3DataSegmentMover.java +++ b/s3-extensions/src/main/java/io/druid/storage/s3/S3DataSegmentMover.java @@ -114,14 +114,18 @@ public class S3DataSegmentMover implements DataSegmentMover public Void call() throws Exception { if (s3Client.isObjectInBucket(s3Bucket, s3Path)) { - log.info( - "Moving file[s3://%s/%s] to [s3://%s/%s]", - s3Bucket, - s3Path, - targetS3Bucket, - targetS3Path - ); - s3Client.moveObject(s3Bucket, s3Path, targetS3Bucket, new S3Object(targetS3Path), false); + if (s3Bucket.equals(targetS3Bucket) && s3Path.equals(targetS3Path)) { + log.info("No need to move file[s3://%s/%s] onto itself", s3Bucket, s3Path); + } else { + log.info( + "Moving file[s3://%s/%s] to [s3://%s/%s]", + s3Bucket, + s3Path, + targetS3Bucket, + targetS3Path + ); + s3Client.moveObject(s3Bucket, s3Path, targetS3Bucket, new S3Object(targetS3Path), false); + } } else { // ensure object exists in target location if (s3Client.isObjectInBucket(targetS3Bucket, targetS3Path)) { From 6a740768d6bb659c1707987a1970193bee14132b Mon Sep 17 00:00:00 2001 From: Gian Merlino Date: Wed, 18 Dec 2013 18:38:22 -0800 Subject: [PATCH 5/6] [maven-release-plugin] prepare release druid-0.6.42 --- cassandra-storage/pom.xml | 2 +- common/pom.xml | 2 +- examples/pom.xml | 2 +- hdfs-storage/pom.xml | 2 +- indexing-hadoop/pom.xml | 2 +- indexing-service/pom.xml | 2 +- kafka-eight/pom.xml | 2 +- kafka-seven/pom.xml | 2 +- pom.xml | 4 ++-- processing/pom.xml | 2 +- rabbitmq/pom.xml | 2 +- s3-extensions/pom.xml | 2 +- server/pom.xml | 2 +- services/pom.xml | 2 +- 14 files changed, 15 insertions(+), 15 deletions(-) diff --git a/cassandra-storage/pom.xml b/cassandra-storage/pom.xml index 00781634ef0..91505a06bce 100644 --- a/cassandra-storage/pom.xml +++ b/cassandra-storage/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.42-SNAPSHOT + 0.6.42 diff --git a/common/pom.xml b/common/pom.xml index 3be3dc64d17..7bc99dc88b9 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.42-SNAPSHOT + 0.6.42 diff --git a/examples/pom.xml b/examples/pom.xml index ae847d7d6bf..eb45adf80d5 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.42-SNAPSHOT + 0.6.42 diff --git a/hdfs-storage/pom.xml b/hdfs-storage/pom.xml index fb486c69856..4208546e265 100644 --- a/hdfs-storage/pom.xml +++ b/hdfs-storage/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.42-SNAPSHOT + 0.6.42 diff --git a/indexing-hadoop/pom.xml b/indexing-hadoop/pom.xml index a778774dd60..b80cef04ad9 100644 --- a/indexing-hadoop/pom.xml +++ b/indexing-hadoop/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.42-SNAPSHOT + 0.6.42 diff --git a/indexing-service/pom.xml b/indexing-service/pom.xml index 70eecc8ab04..f9bed9c768f 100644 --- a/indexing-service/pom.xml +++ b/indexing-service/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.42-SNAPSHOT + 0.6.42 diff --git a/kafka-eight/pom.xml b/kafka-eight/pom.xml index 7c282e9ecf8..14e103168de 100644 --- a/kafka-eight/pom.xml +++ b/kafka-eight/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.42-SNAPSHOT + 0.6.42 diff --git a/kafka-seven/pom.xml b/kafka-seven/pom.xml index 7f6d33e03a4..9bce86c0a3b 100644 --- a/kafka-seven/pom.xml +++ b/kafka-seven/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.42-SNAPSHOT + 0.6.42 diff --git a/pom.xml b/pom.xml index e75dd1f81b4..e992cf5a07d 100644 --- a/pom.xml +++ b/pom.xml @@ -23,14 +23,14 @@ io.druid druid pom - 0.6.42-SNAPSHOT + 0.6.42 druid druid scm:git:ssh://git@github.com/metamx/druid.git scm:git:ssh://git@github.com/metamx/druid.git http://www.github.com/metamx/druid - ${project.artifactId}-${project.version} + druid-0.6.42 diff --git a/processing/pom.xml b/processing/pom.xml index 4e719dc1d8a..0fc7911d3ae 100644 --- a/processing/pom.xml +++ b/processing/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.42-SNAPSHOT + 0.6.42 diff --git a/rabbitmq/pom.xml b/rabbitmq/pom.xml index a3b5e936cad..6589441cb9d 100644 --- a/rabbitmq/pom.xml +++ b/rabbitmq/pom.xml @@ -9,7 +9,7 @@ io.druid druid - 0.6.42-SNAPSHOT + 0.6.42 diff --git a/s3-extensions/pom.xml b/s3-extensions/pom.xml index ae229afc5d8..c8ccd50748f 100644 --- a/s3-extensions/pom.xml +++ b/s3-extensions/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.42-SNAPSHOT + 0.6.42 diff --git a/server/pom.xml b/server/pom.xml index 173512727a5..036ae3c7970 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.42-SNAPSHOT + 0.6.42 diff --git a/services/pom.xml b/services/pom.xml index fa580b17910..73fd9b9f2d1 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -27,7 +27,7 @@ io.druid druid - 0.6.42-SNAPSHOT + 0.6.42 From 25c3f28907cd8d85db5ff91a69051b47169a510b Mon Sep 17 00:00:00 2001 From: Gian Merlino Date: Wed, 18 Dec 2013 18:38:27 -0800 Subject: [PATCH 6/6] [maven-release-plugin] prepare for next development iteration --- cassandra-storage/pom.xml | 2 +- common/pom.xml | 2 +- examples/pom.xml | 2 +- hdfs-storage/pom.xml | 2 +- indexing-hadoop/pom.xml | 2 +- indexing-service/pom.xml | 2 +- kafka-eight/pom.xml | 2 +- kafka-seven/pom.xml | 2 +- pom.xml | 4 ++-- processing/pom.xml | 2 +- rabbitmq/pom.xml | 2 +- s3-extensions/pom.xml | 2 +- server/pom.xml | 2 +- services/pom.xml | 2 +- 14 files changed, 15 insertions(+), 15 deletions(-) diff --git a/cassandra-storage/pom.xml b/cassandra-storage/pom.xml index 91505a06bce..5bade4d64d1 100644 --- a/cassandra-storage/pom.xml +++ b/cassandra-storage/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.42 + 0.6.43-SNAPSHOT diff --git a/common/pom.xml b/common/pom.xml index 7bc99dc88b9..7cdef58b97a 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.42 + 0.6.43-SNAPSHOT diff --git a/examples/pom.xml b/examples/pom.xml index eb45adf80d5..eb880023fb2 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.42 + 0.6.43-SNAPSHOT diff --git a/hdfs-storage/pom.xml b/hdfs-storage/pom.xml index 4208546e265..9085d8af3d2 100644 --- a/hdfs-storage/pom.xml +++ b/hdfs-storage/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.42 + 0.6.43-SNAPSHOT diff --git a/indexing-hadoop/pom.xml b/indexing-hadoop/pom.xml index b80cef04ad9..7e68c822fb2 100644 --- a/indexing-hadoop/pom.xml +++ b/indexing-hadoop/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.42 + 0.6.43-SNAPSHOT diff --git a/indexing-service/pom.xml b/indexing-service/pom.xml index f9bed9c768f..8b0a1708f53 100644 --- a/indexing-service/pom.xml +++ b/indexing-service/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.42 + 0.6.43-SNAPSHOT diff --git a/kafka-eight/pom.xml b/kafka-eight/pom.xml index 14e103168de..9295c043a24 100644 --- a/kafka-eight/pom.xml +++ b/kafka-eight/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.42 + 0.6.43-SNAPSHOT diff --git a/kafka-seven/pom.xml b/kafka-seven/pom.xml index 9bce86c0a3b..9356a120ce6 100644 --- a/kafka-seven/pom.xml +++ b/kafka-seven/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.42 + 0.6.43-SNAPSHOT diff --git a/pom.xml b/pom.xml index e992cf5a07d..9849c18e1bd 100644 --- a/pom.xml +++ b/pom.xml @@ -23,14 +23,14 @@ io.druid druid pom - 0.6.42 + 0.6.43-SNAPSHOT druid druid scm:git:ssh://git@github.com/metamx/druid.git scm:git:ssh://git@github.com/metamx/druid.git http://www.github.com/metamx/druid - druid-0.6.42 + ${project.artifactId}-${project.version} diff --git a/processing/pom.xml b/processing/pom.xml index 0fc7911d3ae..d821fdd2572 100644 --- a/processing/pom.xml +++ b/processing/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.42 + 0.6.43-SNAPSHOT diff --git a/rabbitmq/pom.xml b/rabbitmq/pom.xml index 6589441cb9d..eebd245923f 100644 --- a/rabbitmq/pom.xml +++ b/rabbitmq/pom.xml @@ -9,7 +9,7 @@ io.druid druid - 0.6.42 + 0.6.43-SNAPSHOT diff --git a/s3-extensions/pom.xml b/s3-extensions/pom.xml index c8ccd50748f..817fc5307e6 100644 --- a/s3-extensions/pom.xml +++ b/s3-extensions/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.42 + 0.6.43-SNAPSHOT diff --git a/server/pom.xml b/server/pom.xml index 036ae3c7970..c88b542ce21 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -28,7 +28,7 @@ io.druid druid - 0.6.42 + 0.6.43-SNAPSHOT diff --git a/services/pom.xml b/services/pom.xml index 73fd9b9f2d1..1d9cf5a4257 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -27,7 +27,7 @@ io.druid druid - 0.6.42 + 0.6.43-SNAPSHOT