zoukankan      html  css  js  c++  java
  • kibana test

    https://www.cnblogs.com/yiwangzhibujian/p/7137546.html

    curl -XPUT http://localhost:9200/shakespeare -d '
    {
     "mappings" : {
      "_default_" : {
       "properties" : {
        "speaker" : {"type": "string", "index" : "not_analyzed" },
        "play_name" : {"type": "string", "index" : "not_analyzed" },
        "line_id" : { "type" : "integer" },
        "speech_number" : { "type" : "integer" }
       }
      }
     }
    }
    '


     curl http://localhost:9200/shakespeare/_mapping?pretty
    {
      "shakespeare" : {
        "mappings" : {
          "_default_" : {
            "properties" : {
              "line_id" : {
                "type" : "integer"
              },
              "play_name" : {
                "type" : "keyword"
              },
              "speaker" : {
                "type" : "keyword"
              },
              "speech_number" : {
                "type" : "integer"
              }
            }
          }
        }
      }
    }


  • 相关阅读:
    服务器 空间
    android 手动打包
    sql server 2000 完全卸载 2
    apk 优化
    asp.net 画 数据图表
    java 运行 bat win linux
    vb 生成 批处理
    国内平台
    委托
    observer 观察者模式
  • 原文地址:https://www.cnblogs.com/mhc-fly/p/10260359.html
Copyright © 2011-2022 走看看