Elasticsearch-返回记录的字段在给定范围内的记录

时间:2019-02-28 10:59:08

标签: json elasticsearch search kibana elastic-stack

我的数据子集如下:

{
  "6220":{
    "abstract":"We investigate the two-dimensional $\\mathcal{
                        N            
    }=(2,
                2)$ supersymmetric\nYang-Mills (SYM) theory on the discretized curved space (polyhedra). We first\nrevisit that the number of supersymmetries of the continuum $\\mathcal{
                        N            
    }=(2,
                2)$\nSYM theory on any curved manifold can be enhanced at least to two by\nintroducing an appropriate $U(1)$ gauge background associated with the\n$U(1)_{
                        V            
    }$ symmetry. We then show that the generalized Sugino model on the\ndiscretized curved space,
                 which was proposed in our previous work,
                 can be\nidentified to the discretization of this SUSY enhanced theory,
                 where one of the\nsupersymmetries remains and the other is broken but restored in the continuum\nlimit. We find that the $U(1)_{
                        A            
    }$ anomaly exists also in the discretized\ntheory as a result of an unbalance of the number of the fermions proportional\nto the Euler characteristics of the polyhedra. We then study this model by\nusing the numerical Monte-Carlo simulation. We propose a novel phase-quench\nmethod called \"anomaly-phase-quenched approximation\" with respect to the\n$U(1)_A$ anomaly. We numerically show that the Ward-Takahashi (WT) identity\nassociated with the remaining supersymmetry is realized by adopting this\napproximation. We figure out the relation between the sign (phase) problem and\npseudo-zero-modes of the Dirac operator. We also show that the divergent\nbehavior of the scalar one-point function gets milder as the genus of the\nbackground increases. These are the first numerical observations for the\nsupersymmetric lattice model on the curved space with generic topologies.",
    "arxiv_id":"1607.01260",
    "authors":[
      "Kamata Syo",
      "Matsuura So",
      "Misumi Tatsuhiro",
      "Ohta Kazutoshi"
    ],
    "categories":[
      "hep-th",
      "hep-lat"
    ],
    "created":"2016-07-05 00:00:00",
    "doi":"10.1093\/ptep\/ptw153",
    "primary_category":"physics",
    "title":"Anomaly and Sign problem in $\\mathcal{
                        N            
    }=(2,
                2)$ SYM on Polyhedra :\n  Numerical Analysis",
    "updated":1473724800000
  },
  "407":{
    "abstract":"In this paper,
                 we use the methods of subriemannian geometry to study the dual\nfoliation of the singular Riemannian foliation induced by isometric Lie group\nactions on a complete Riemannian manifold M. We show that under some\nconditions,
                 the dual foliation has only one leaf.",
    "arxiv_id":"1408.0060",
    "authors":[
      "Shi Yi"
    ],
    "categories":[
      "math.DG"
    ],
    "created":"2014-07-31 00:00:00",
    "doi":null,
    "primary_category":"math",
    "title":"The dual foliation of some singular Riemannian foliations",
    "updated":1483574400000
  }
}

我需要查找在给定范围内具有created的所有记录。

我尝试过:

GET _search
{
    "query": {
        "range" : {
            "created" : {
                "gte": "2012-01-01",
                "lte": "2018-01-01",
                "format": "yyyy-MM-dd"
            }
        }
    }
}

我知道了

{
  "took" : 6,
  "timed_out" : false,
  "_shards" : {
    "total" : 13,
    "successful" : 13,
    "skipped" : 0,
    "failed" : 0
  },
  "hits" : {
    "total" : 0,
    "max_score" : null,
    "hits" : [ ]
  }
}

我希望该查询会带来一些成功。我已经确认我的ES索引中有近500个文档。

我在这里做什么错了?

0 个答案:

没有答案