1. ホーム
  2. node.js

[解決済み] インデックスが作成されない、$textクエリにテキストインデックスが必要 - mongoose

2022-02-11 07:14:35

質問

mongoose: 5.8.9
node: v12.13.0

スキーマにインデックスを作成するように設定した後、mongooseはインデックスを作成しません。新しいドキュメントを作成しても、IDインデックスだけで、新しく作成されたものはありません。については、ドキュメントに書かれているとおりにしていました。 さくせい が、それでもどこを間違えているのかがわからない。

いつ

 const ads = await Ad.find({ $text: { $search: "something" } })

エラー

MongoError: text index required for $text query
    at Connection.<anonymous> (/home/usama/Projects/commercial/adex/node_modules/mongoose/node_modules/mongodb/lib/core/connection/pool.js:466:61)
    at Connection.emit (events.js:210:5)
    at Connection.EventEmitter.emit (domain.js:476:20)
    at processMessage (/home/usama/Projects/commercial/adex/node_modules/mongoose/node_modules/mongodb/lib/core/connection/connection.js:384:10)
    at Socket.<anonymous> (/home/usama/Projects/commercial/adex/node_modules/mongoose/node_modules/mongodb/lib/core/connection/connection.js:553:15)
    at Socket.emit (events.js:210:5)
    at Socket.EventEmitter.emit (domain.js:476:20)
    at addChunk (_stream_readable.js:308:12)
    at readableAddChunk (_stream_readable.js:289:11)
    at Socket.Readable.push (_stream_readable.js:223:10)
    at TCP.onStreamRead (internal/stream_base_commons.js:182:23) {
  ok: 0,
  errmsg: 'text index required for $text query',
  code: 27,
  codeName: 'IndexNotFound',
  name: 'MongoError',
  [Symbol(mongoErrorContextSymbol)]: {}
}

私のスケジュール

import { Schema } from 'mongoose'
import mongoosePaginate from 'mongoose-paginate-v2'
import Local from '../index'

const adSchema = new Schema(
  {
    id: Schema.Types.ObjectId,
    creater: Schema.Types.ObjectId,
    title: { type: String },
    tags: Array,
    description: { type: String, maxlength: 4500, },
  },
  {
    timestamps: true,
    versionKey: false,
    autoIndex: false
  }
)

adSchema.index({ title: 'text', description: 'text', tags: 'text' })
adSchema.plugin(mongoosePaginate)

const Ad = Local.model('Ad', adSchema)

export { Ad as default }

mongo シェルで

> myads.getIndexes()
[
    {
        "v" : 2,
        "key" : {
            "_id" : 1
        },
        "name" : "_id_",
        "ns" : "adex.ads"
    }
]


解決方法は?

下の行です。

adSchema.index({ title: 'text', description: 'text', tags: 'text' })

mongoose のインデックスを正しく定義します。 スキーマ (データベース上ではありません)。デフォルトでは、mongoose はアプリケーションの起動時にインデックスを作成します ( リンク を使うことで、それを防ぐことができます。 autoIndex: false .

そのため、その行を削除するか、あるいは createIndexes を明示的にモデル上で実行します。

adSchema.index({ title: 'text', description: 'text', tags: 'text' });
const Ad = Local.model('Ad', adSchema);
Ad.createIndexes();