Skip to content
This repository was archived by the owner on May 6, 2022. It is now read-only.

Commit 835c650

Browse files
committed
#25 spark shutdown script now also handles the slaves
1 parent 735f1e8 commit 835c650

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
echo "CHRONIX SPARK ###############################################################"
22
echo "Stopping local Spark cluster ..."
33
./spark/sbin/stop-master.sh &
4-
./spark/sbin/start-slaves.sh &
4+
./spark/sbin/stop-slaves.sh &

chronix-solr-cloud-storage/src/main/java/de/qaware/chronix/storage/solr/timeseries/metric/MetricTimeSeriesOrdering.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ public int compare(MetricTimeSeries left, MetricTimeSeries right) {
5757
}
5858

5959
private void printTimeseriesDescription(MetricTimeSeries left, MetricTimeSeries right) {
60-
LOGGER.error("Detected intersecting time series chunks:");
61-
LOGGER.error(
60+
LOGGER.warn("Detected intersecting time series chunks:");
61+
LOGGER.warn(
6262
"LEFT: {}", getTimeseriesIntervalDescription(left)
6363
);
64-
LOGGER.error(
64+
LOGGER.warn(
6565
"RIGHT: {}", getTimeseriesIntervalDescription(right)
6666
);
6767
}

0 commit comments

Comments
 (0)