Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • directory: The directory
  • filter: The file filter (optional)
  • cachefiles: If true, changed file handles get cached so that only new content gets processed instead of the whole file on each change (default. false)
  • cachesize: The size of the cache. File handles get removed in a Least Recently Used fashion (default: 10)

Example

PQL

Code Block
languagepql
titleExample
linenumberstrue
input = ACCESS({source='Source',
wrapper='GenericPush',
transport='Directory',
protocol='CSV',
dataHandler='Tuple',
options=[['directory', '/src/odysseus'], ['filter', '.txt$']],
schema=[
['id', 'Double'],
['data', 'String']]
})

...