Version information
released Jan 11th 2017
This version is compatible with:
- , ,
This module has been deprecated by its author since Jan 4th 2021.
Start using this module
Documentation
attachmentgenie/flink — version 1.0.1 Jan 11th 2017
attachmentgenie-flink
Table of Contents
- Module Description - What the module does and why it is useful
- Setup - The basics of getting started with flink
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
Module Description
Flink’s core is a streaming dataflow engine that provides data distribution, communication, and fault tolerance for distributed computations over data streams.
Setup
What flink affects
- Configuration files and directories (created and written to)
- Package/service/configuration files for Flink
- Listened-to ports
Setup Requirements
This module expects that the system already has a working java installation.
Beginning with flink
To have Puppet install Flink with the default parameters, declare the flink class:
class { 'flink': }
You can customize parameters when declaring the flink
class. For instance,
this declaration installs Flink by downloading a tarball instead of instead of using a package.
class { '::flink':
archive_source => 'http://apache.xl-mirror.nl/flink/flink-1.1.4/flink-1.1.4-bin-hadoop27-scala_2.11.tgz',
install_method => 'archive',
}
Limitations
This module currently only install a all in one version.
Development
Running tests
This project contains tests for both rspec-puppet and test kitchen to verify functionality. For detailed information on using these tools, please see their respective documentation.
Testing quickstart:
gem install bundler
bundle install
bundle exec rake guard
bundle exec kitchen test
Dependencies
- puppet-archive (>=0.5.1 <1.0.0)
- puppetlabs-stdlib (>= 1.0.0 <=4.12.0)
- camptocamp-systemd (>=0.4.0 <1.0.0)
Copyright (C) 2011 by Bram Vogelaar <bram@attachmentgenie.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.