2012-11-06 65 views
1

我嘗試了第一次彈性搜索。我只有1個節點和1個索引。使用捲曲時缺少彈性搜索的結果

curl -XPUT http://localhost:9200/testing/dummy/1 -d '{ 
       "snapshotTime" : "2012-10-31T13:31:21", 
       "ratio" : "50", 
       "description" : "sample description" 


}' 

我已將500個這樣的虛擬變量編入索引'測試'。

http://localhost:9200/testing/dummy/1 

。 。 。 。

http://localhost:9200/testing/dummy/500 

現在,當我試圖用這個數據集matchAll查詢,

curl -XGET 'http://localhost:9202/_all/_search?pretty=true' -d ' 
{ 
    "query" : { 
     "matchAll" : {} 
    } 
}' 

我回來只有10結果每一次他們是隨機的。然而,總點擊量仍然是500.點擊數組只包含10個條目。我錯過了什麼嗎?

回答