zoukankan      html  css  js  c++  java
  • Datax mysql 8.x elasticsearch 7.x 测试成功json样例

    {
        "job": {
            "setting": {
                "speed": {
                    "channel": 1,
                    "batchSize":1000
                }
            },
            "content": [
                {
                   "reader": {
                        "name": "mysqlreader",
                        "parameter": {
                            "username": "root",
                            "password": "root",
                            "connection": [
                                {
                                    "querySql": [
                                        "select id as _id,id,name,content,createdate from t_user_info "
                                    ],
                                    "jdbcUrl": [
                                        "jdbc:mysql://192.168.8.248:3306/sourcedb?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai"
                                    ]
                                }
                            ]
                        }
                    },
                    "writer": {
                        "name": "elasticsearchwriter",
                        "parameter": {
                            "endpoint": "http://192.168.8.202:9200",
                            "accessId": "elastic",
                            "accessKey": "123456",
                            "index": "test-1",
                            "type": "_doc",
                            "cleanup": true,
                            "dynamic": false,
                            "settings": {"index" :{"number_of_shards": 1, "number_of_replicas": 0}},
                            "discovery": false,
                            "batchSize": 1000,
                            "splitter": ",",
                            "column": [
                              {"name":"pk","type":"id"},
                              { "name": "id","type": "keyword" },
                              { "name": "name","type": "keyword" },
                              { "name": "content", "type": "text", "analyzer": "ik_max_word"},
                              { "name": "createdate","type": "text", "format": "yyyy-MM-dd HH:mm:ss.SSSSSS"}
                            ]
                        }
                    }
                }
            ]
        }
    }
  • 相关阅读:
    MySql常用函数积累
    常用的linux命令
    Java replace和replaceAll
    json常用操作
    import { Subject } from 'rxjs/Subject';
    applicationCache
    mongo
    Mongodb更新数组$sort操作符
    Mongodb更新数组$pull修饰符
    使用forever运行nodejs应用
  • 原文地址:https://www.cnblogs.com/Jeely/p/15242752.html
Copyright © 2011-2022 走看看