Skip to content

Searching for Files, Paths and Other Artifacts Within Spectrum#

Find files, paths and other artifacts in Spectrum by using the search bar located under the File Browser tab on the top right of the screen.

Using Spectrum's Search Feature#

  1. Search for files, paths, folders, and other Spectrum artifacts by navigating to the File Browser tab and clicking the search bar.

    The search bar expands and gives the option to search within all of Spectrum or only the folder where you are currently located.

    In the example below, only matches within the Import Jobs folder would be returned.

  2. Type your search string into the search bar and press Enter on your keyboard to begin the search. **INFO: Upper-case and lower-case letters or digits don't matter for search, a leading "/" doesn't matter.

    The results of your search are displayed.

Fields queried#

When entering a search string, Spectrum can query the following artifact fields:

  • Name
  • Tag
  • Owner
  • Type
  • Description
  • Path

By default, Spectrum's search feature queries for artifact Name and Tag. Wildcard characters are added by default to the front and rear of all nonspecific field searches.

Specify the field to search using the following syntax:

  • Name = name: <search string>
  • Tag = tag: <search string>
  • Type = type: <search string>
  • Owner = owner: <search string>
  • Description = description: <search string>
  • Path = path:/<search string>

The results are for exact matches of your search strings (case insensitive). Expand your results by adding wildcards.

name: *apache*

Examples

To search for the artifacts by owner:

owner: system

To search by artifact type: (Use the artifact type extension.)

type: wkb

Advanced search features#

Datameer's search feature is built using Apache Lucene technology. Visit the Apache Lucene documentation to learn about advance searching including:

  1. Terms
  2. Fields
  3. Term Modifiers
    1. Wildcard Searches
    2. Fuzzy Searches
    3. Proximity Searches
    4. Range Searches 5.- Boosting a Term
  4. Boolean Operators
    1. AND
    2. +
    3. NOT
    4. -
  5. Grouping
  6. Field Grouping
  7. Escaping Special Characters
Examples

Search Spectrum artifacts for "import jobs" owned by "John".

owner: john AND type: imp

Search Spectrum artifacts for either the owner "John" or the owner "Anna" that also has the tag "users".

(owner: John OR owner: Anna) AND tag: users