Manual for End User

Nodeum builds automatically a catalog of files and folders available across the different reachable storage systems.

The user can easily access any information or data in the storage spaces either if the storage technologies are NAS, S3 or Tape systems.

It allows a fast search and finds, using both embedded files and business metadata.

User Management

The catalog uses the end user access rights to provide an easy and secure self-service portal. Any end user is allowed to manage their data straight through the Nodeum Ecosystem.

Catalog

The catalog allows control and traceability of:

  • all files stored or managed by Nodeum into workflows orchestration

  • all files from Primary Storage which are set to inventory by Nodeum. This inventory is required to use the TCO Calculator before using the workflow management.

Through this interface, the user can easily access any information or data on the storage space :

  • in cache

  • near line archiving space (Data archiving on tapes)

  • cold archive (Data Protection on tapes)

  • cloud and S3 object storage.

It allows for a fast search and find, using both embedded file and business metadata.

Also, this provides an easy and secure way into the infrastructure for the external users or clients.

This can be achieved by utilizing the access rights or as an integration building block for a more elaborate access portal on the front-end.

This can either be setup as self-service or under stricter control, but in either case enables the client to facilitate their sharing of data straight from within the Nodeum infrastructure.

Search bar integration

The search bar is integrated in the catalog, some reports (Data Lifecycle and metadata).

It help you to find easily and faster data.

You have multiple filter to refine the search :

But you can also search data with special command :

This information create command in the search that you can complete manually after choosing filter(s).

Example of Command to afine the keysearch :

* file_name:test

* to get only folder : file_type:0

* to get only files : file_type:1 to get only files

* Checking if file or folder are in cache : file_in_cache:1

* Checking if files or folder are not in cache : file_in_cache:0

Data Lifecycle Information

When opening a tile, all details about the file is available including its lifecycle. This display the different processed copies.

Information Description

Task Filtering

Each workflow task allows for the configuration of various filtering options. There are two available modes for filter configuration:

  • Basic

  • Advanced

Basic Mode

This mode includes the capability to define expressions directly in the Console based on the following types:

Advanced Mode

This mode allows the usage of an online scripting editor to define advances filter which cannot be defined in using the simple graphical mode.

The scripting Language is "LUA" , which a known language , with online documentation available.

The scripting language supports :

  • Logical Operator such as 'and' , 'or'

  • Defined Functions

Example of a LUA script

--[[
This function is auto-generated.
By editing it, you might lose your filter configuration
when going back to "Basic" mode
--]]
function test ( file )
return
       filter_size(file, ">", 2344000)
       or
       filter_name(file, "\\b(\\w*archive\\w*)\\b")
       or
       filter_path(file, "\\b(\\w*archive\\w*)\\b")
       or
       filter_relative_date(file, "C", ">", 20, "D")
       or
       filter_relative_date(file, "M", ">", 20, "D")
       or
       filter_relative_date(file, "A", "<", 20, "D")
end

Standard filtering methods are available :

Filtering by the size of the file

Example of LUA code

...
filter_size(file, ">", 2344000)
..

Filtering by the name of the file

Example of LUA code

...
filter_path(file, "\\b(\\w*archive\\w*)\\b")
..

Filtering by the creation date

Example of LUA code

...
filter_relative_date(file, "C"">", 20, "D")
...

Filtering by the modification date

Example of LUA code

...
filter_relative_date(file, "C"">", 20, "M")
...

Some addition information which can be helpful for using the feature :

Last updated