Skip to content

Commit 2d1c9bc

Browse files
committed
issue #468 tags should be sorted by key in line protocol to reduce db
server overheads add unit test
1 parent 0aac8f0 commit 2d1c9bc

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

src/test/java/org/influxdb/dto/PointTest.java

+27
Original file line numberDiff line numberDiff line change
@@ -450,4 +450,31 @@ public void testLineProtocolHourPrecision() throws Exception {
450450
String expectedHourTimeStamp = String.valueOf(Math.round(pDate.getTime() / 3600000)); // 1000ms * 60s * 60m
451451
assertThat(hourTime).isEqualTo(expectedHourTimeStamp);
452452
}
453+
454+
/*
455+
* Test if representation of tags in line protocol format should be sorted by tag key
456+
*/
457+
@Test
458+
public void testTagKeyIsSortedInLineProtocol() {
459+
Point p = Point
460+
.measurement("cpu")
461+
.time(1000000000L, TimeUnit.MILLISECONDS)
462+
.addField("value", 1)
463+
.tag("region", "us-west")
464+
.tag("host", "serverA")
465+
.tag("env", "prod")
466+
.tag("target", "servers")
467+
.tag("zone", "1c")
468+
.tag("tag5", "value5")
469+
.tag("tag1", "value1")
470+
.tag("tag2", "value2")
471+
.tag("tag3", "value3")
472+
.tag("tag4", "value4")
473+
.build();
474+
475+
String lineProtocol = p.lineProtocol();
476+
String correctOrder = "env=prod,host=serverA,region=us-west,tag1=value1,tag2=value2,tag3=value3,tag4=value4,tag5=value5,target=servers,zone=1c";
477+
String tags = lineProtocol.substring(lineProtocol.indexOf(',') + 1, lineProtocol.indexOf(' '));
478+
assertThat(tags).isEqualTo(correctOrder);
479+
}
453480
}

0 commit comments

Comments
 (0)