Build IndexSettings from two IndexSettings

Hi,

Using Java Transport Client, I was able to build index Settings from two Settings like that:
Settings.builder().put(SETTINGS_1).put(SETTINGS_2).build()

How can I do the same with Elasticsearch Client and IndexSettings class ?
new IndexSettings.Builder().settings(INDEX_SETTINGS_1).settings(INDEX_SETTINGS_2)

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.