Elasticsearch PUT 插入資料

2022-07-31 04:12:20 字數 727 閱讀 1871

],"type": "illegal_argument_exception",

"reason": "unknown setting [index.atype_id] please check that any required plugins are installed, or check the breaking changes documentation for removed settings",

"suppressed": [,,

,,,]

},"status": 400

}

當出現  illegal_argument_exception 時候 意思是非法引數異常。也就是uri 缺少引數。在建立elasticsearch的index 有乙個 type (也就是mysql資料中的表名), 在curl的時候沒有輸入這個type的話

就會報錯

unknown setting [index.status] please check that any required plugins are installed, or check the breaking changes documentation for removed settings

出現這個錯誤,這個錯誤就說明 你在插入資料的時候 不知道你要把你的這條資料插入到哪個表裡面去,所以就報錯了。類似於mysql 因為要指定一張表的插入,不能隨便插入不是。。。。

所以 正確的方法 url 是

B 數的插入實現

include include include include include include include include using namespace std 徐struct treenode void printdata return result bool findvalue int v...

Python 批量插入SQL Server 資料庫

需要將一批資料插入sql server 資料庫,經過查證可以採用批量插入的方法,遇到一些坑,特記錄一下 批量插入方法如下 sql 1 insert into f rnfl mt2 id,fymdh,ymdh,rn,unitname,comments values data 1,2020 06 10 ...

插入新數再排序

題目 有乙個已經排好序的陣列。現輸入乙個數,要求按原來的規律將它插入陣列中。public static void main string args 排序 sort arr 列印結果 system.out.println 插入前排序 for int i 0 i arr.length i system....