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
{{ message }}
This repository has been archived by the owner on Jun 20, 2023. It is now read-only.
when build index action with String-type source, function generateBulkPayload of Bulk will delete all whitespace of the source:
// line 95 in Bulk.java
if (source instanceof String) {
return StringUtils.deleteWhitespace((String) source);
}
if the soure is a json string like {"text": "a b c"}, the whitespace in the value will be deleted.
Should I not build Index with string-type source?
The text was updated successfully, but these errors were encountered:
when build index action with String-type source, function generateBulkPayload of Bulk will delete all whitespace of the source:
// line 95 in Bulk.java
if (source instanceof String) {
return StringUtils.deleteWhitespace((String) source);
}
if the soure is a json string like {"text": "a b c"}, the whitespace in the value will be deleted.
Should I not build Index with string-type source?
The text was updated successfully, but these errors were encountered: