この curl コマンドを使用すると、簡単にインデックスを作成できます。
curl -XPUT 'http://localhost:9200/prototype_2012.12.27/chow-clfg/Cg-IKkxdTstKAAAAlw-?parent=chow-demo' -d '{
"chow-clfg": {
"@type": "chow-clfg",
"clfg": "Cg6h4VCcMexXAAAAsQc",
"@timestamp": "2012-12-27T08:24:00.000Z",
"count": 1
}
}'
結果:
{
"ok": true,
"_index": "prototype_2012.12.27",
"_type": "chow-clfg",
"_id": "Cg-IKkxdTstKAAAAlw-",
"_version": 1
}
これにより、ほぼ瞬時に結果が返されます。
ただし、nodejs の http.request メソッドで試してみると、次のようになります。
var http = require('http');
var index = "prototype_2012.12.27";
var server = "chow-clfg";
var options = {
host: 'localhost',
port: '9200',
path: index+'/'+server+'/Cg-IKkxdTstKAAAAlw-?parent=chow-demo',
method: 'PUT'
};
var req = http.request(options, function(res){
console.log('STATUS: ' + res.statusCode);
console.log('HEADERS: ' + JSON.stringify(res.headers));
res.setEncoding('utf8');
res.on('data', function (chunk) {
console.log(chunk);
});
});
req.on('error', function(e) {
console.log('problem with request: ' + e.message);
});
req.write('{"chow-clfg":{"@type":"chow-clfg","clfg":"Cg6h4VCcMexXAAAAsQc","@timestamp":"2012-12-27T08:24:00.000Z","count":1}}');
req.end;
これはプロセスを途中で中断するだけで、成功したかどうかについてのフィードバックはありません。また、インデックスでドキュメントを検索しても見つかりませんでした。
したがって、私が犯したコーディングエラーはありますか? または、問題を修正する方法はありますか?