"Elasticsearch API / all"의 두 판 사이의 차이

(새 문서: {{DISPLAYTITLE:Elasticsearch API _all }} ==개요== ;Elasticsearch API _all <source lang='console'> root@localhost:~# curl localhost:9200/_all?pretty { "test" : { "aliases" :...)
 
잔글 (Jmnote님이 Elasticsearch API all 문서를 Elasticsearch API / all 문서로 이동했습니다)
(차이 없음)

2019년 12월 12일 (목) 13:28 판

1 개요

Elasticsearch API _all
root@localhost:~# curl localhost:9200/_all?pretty
{
  "test" : {
    "aliases" : { },
    "mappings" : {
      "properties" : {
        "field1" : {
          "type" : "text",
          "fields" : {
            "keyword" : {
              "type" : "keyword",
              "ignore_above" : 256
            }
          }
        },
        "field2" : {
          "type" : "text",
          "fields" : {
            "keyword" : {
              "type" : "keyword",
              "ignore_above" : 256
            }
          }
        },
        "hello" : {
          "type" : "long"
        },
        "tags" : {
          "type" : "text",
          "fields" : {
            "keyword" : {
              "type" : "keyword",
              "ignore_above" : 256
            }
          }
        }
      }
    },
    "settings" : {
      "index" : {
        "creation_date" : "1576046412278",
        "number_of_shards" : "1",
        "number_of_replicas" : "1",
        "uuid" : "TY1Tq2GyRvWwoL4TVEiUVA",
        "version" : {
          "created" : "7050099"
        },
        "provided_name" : "test"
      }
    }
  }
}

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}