You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[TRANSFORM] No point sorting preview docs for serialization (#94611)
Currently we serialize the transform preview docs in sorted order.
However, when we read them at the other end we deserialize into a
hash map, which loses the ordering. Therefore sorting when
serializing is pointless.
The serverless integration tests are tripping an assertion in
writeMapWithConsistentOrder that the map being serialized is not
a linked hash map. It makes no difference to the functionality
if it is, so this does not affect production clusters (where
assertions are disabled). But it causes integration tests to fail.
Copy file name to clipboardExpand all lines: x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/transform/action/PreviewTransformAction.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -200,7 +200,7 @@ public TransformDestIndexSettings getGeneratedDestIndexSettings() {
0 commit comments