メインコンテンツへスキップ
メインコンテンツへスキップ

MongoDB Dictionary ソース

設定例:

SOURCE(MONGODB(
    host 'localhost'
    port 27017
    user ''
    password ''
    db 'test'
    collection 'dictionary_source'
    options 'ssl=true'
))

または URI を使用する場合:

SOURCE(MONGODB(
    uri 'mongodb://localhost:27017/clickhouse'
    collection 'dictionary_source'
))

設定項目:

Setting説明
hostMongoDB ホスト。
portMongoDB サーバーのポート。
userMongoDB ユーザー名。
passwordMongoDB ユーザーのパスワード。
dbデータベース名。
collectionコレクション名。
optionsMongoDB 接続文字列のオプション。任意。
uri接続を確立するための URI(個別の host/port/db フィールド指定の代替)。

エンジンの詳細情報