AlteryxGallery_Lucene MongoDB Schema
As of version 2023.1, we replaced Lucene search with a custom search provider and the AlteryxGallery_Lucene schema is now obsolete. For more information, go to Server 2023.1 Release Notes.
This article covers the legacy AlteryxGallery_Lucene schema which is no longer in use for 2023.1. The AlteryxGallery_Lucene MongoDB used to contain the indices for search within the Server UI part of your Server instance. Servers using either embedded MongoDB or user-managed MongoDB used this schema.
As a Server admin, you might need to access the MongoDB schema for your Server instance for reporting and analysis. You can access the MongoDB schema using any compatible client. mongo Shell is a good tool for command-line access. MongoDB Compass is a good tool for GUI access. If you use MongoDB Atlas you can access the database documents via the Atlas web console.
We do not support making direct edits to your MongoDB database. Doing so can cause unexpected results.
The AlteryxGallery_Lucene MongoDB is made up of the below collections. Collections are a groupings of MongoDB documents which are made up of a set of field-value pairs. Select a collection to see the definition of the fields, also known as the schema.
The bootstrap Collection contains Lucene search startup data.
- [Obsolete] _id: (ObjectId) Document primary key.
- [Obsolete] ignored: (String)
The luceneFS.chunks Collection contains Lucene search indexes and data files stored in binary chunks.
- [Obsolete] _id: (ObjectId) Document primary key.
- [Obsolete] files_id: (ObjectId) Metadata ID stored in luceneFS.files.
- [Obsolete] n: (Int32) Chunk part number.
- [Obsolete] data: (Binary) Base64-encoded binary data.
The luceneFS.files Collection contains Lucene search indexes and data about the stored binary chunks.
- [Obsolete] _id: (ObjectId) Document primary key.
- [Obsolete] length: (Int64) String length of the index data in the file.
- [Obsolete] chunkSize: (Int32) Size of the file chunk.
- [Obsolete] UploadDate: (Date) Date-time (UTC) index file was created.
- [Obsolete] md5: (String) md5 checksum hash of the index file.
- [Obsolete] filename: (String) Name and path of the index file.
The luceneFS.locks collection contains index search lock data. Locks are established while an index job is in progress and are removed once completed.
- [Obsolete] _id: (ObjectId) Document primary key.