File connector

The File connector is a implementation used for writing and reading from a file.

This is a basic implementation with only a index on primary key.

Advice is to limit the file-size to a maximum of 1.000.000 entries. This could be optimized in the future by using a RandomAccessFile.

The id record is always supposed to be first and the very first line is to be used as the header

Configuration

Below are all the parameters you can specify on this connector.

name

description

fileName

the name of the file

separator

separator used to separate entries

Supported functions

Below are the implemented operations on this connector.

name

supported

description

create

yes

appends to the end of the file

find

yes

finds by id

search

yes

finds on equals criteria without paging/sorting (/search)

update

yes

updates

delete

yes

deletes

disable

no

archive

no

unarchive

no

ping

yes

tests if the file is present

validate

yes

validates the configuration on init

Last updated