Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ static void applyIndexCreationSettings(JSONObject jsonObject) {
indexSettings.put("pluggable.dataformat.enabled", true);
indexSettings.put("pluggable.dataformat", "composite");
indexSettings.put("composite.primary_data_format", "parquet");
indexSettings.put("composite.secondary_data_formats", new org.json.JSONArray());
indexSettings.put("composite.secondary_data_formats", new org.json.JSONArray().put("lucene"));
Comment thread
dai-chen marked this conversation as resolved.
settings.put("index", indexSettings);
jsonObject.put("settings", settings);
}
Expand Down
Loading