ruflin_2  
                (ruflin-2)
               
                 
              
                  
                    September 12, 2012,  9:34pm
                   
                   
              1 
               
             
            
              In elasticsearch 0.19.8 the following query works:
curl -XGET 'http://localhost:9200/_all/_search ' -d 
'{"query":{"match_all":{}}}'
In es 0.19.9 it returns:
{"error":"IndexMissingException[[_all] missing]","status":404}
The query that returns the expected result is (see the double slash)
curl -XGET 'http://localhost:9200//_search ' -d '{"query":{"match_all":{}}}'
Is this as expected?
--
             
            
               
               
               
            
            
           
          
            
            
              Hey,
yeah it is a known bug that is been fixed see 
0.19.9 no longer supports /_all/_status · Issue #2205 · elastic/elasticsearch · GitHub  for more
On Wednesday, September 12, 2012 11:34:28 PM UTC+2, ruflin wrote:
In elasticsearch 0.19.8 the following query works:
curl -XGET 'http://localhost:9200/_all/_search ' -d 
'{"query":{"match_all":{}}}'
In es 0.19.9 it returns:
{"error":"IndexMissingException[[_all] missing]","status":404}
The query that returns the expected result is (see the double slash)
curl -XGET 'http://localhost:9200//_search ' -d 
'{"query":{"match_all":{}}}'
Is this as expected?
 
--
             
            
               
               
               
            
            
           
          
            
              
                ruflin_2  
                (ruflin-2)
               
              
                  
                    September 13, 2012,  5:54am
                   
                   
              3 
               
             
            
              Ok. Do you know if // is expected to work also in the near future as _all 
replacement?
On Wednesday, September 12, 2012 11:53:43 PM UTC+2, Benjamin Devèze wrote:
Hey,
yeah it is a known bug that is been fixed see 
0.19.9 no longer supports /_all/_status · Issue #2205 · elastic/elasticsearch · GitHub  for more
On Wednesday, September 12, 2012 11:34:28 PM UTC+2, ruflin wrote:
In elasticsearch 0.19.8 the following query works:
curl -XGET 'http://localhost:9200/_all/_search ' -d 
'{"query":{"match_all":{}}}'
In es 0.19.9 it returns:
{"error":"IndexMissingException[[_all] missing]","status":404}
The query that returns the expected result is (see the double slash)
curl -XGET 'http://localhost:9200//_search ' -d 
'{"query":{"match_all":{}}}'
Is this as expected?
 
 
--