Creating Controller Services for your dataflow

You can add Controller Services that can provide shared services to be used by the processors in your dataflow. Create them after you build the NiFi dataflow and before you configure the Processors, so that they are available when you configure your NiFi Processors.

For this dataflow, create two Controller Services.

  • AvroWriter
  • DBCPConnectionPool

See the Related Information section below, for links to complete details about these Apache NiFi Controller Services.

You must have built your dataflow.

  1. To add a Controller Service to your flow, right-click on the canvas and select Configure from the pop-up menu. This displays the Controller Services Configuration window.
  2. Select the Controller Services tab.
  3. Click the + Add to display the Add Controller Service dialog.
  4. Select the required Controller Service and click Add.
  5. Click the Configure icon in the right-hand column and configure the necessary options.
  6. Click Apply to save the changes.
  7. Click the Enable button (flash) in the far-right column of the Controller Services tab to enable the Controller Service.

You require the following Controller Services for this example of a NiFi dataflow moving data out of Snowflake.

AvroRecordSetWriter

You use this Controller Service as the writer, when writing the data as Flow Files in NiFi. Avro is a good option in most cases but you may want to choose another writer depending on your requirements.

In general, you may accept the default configurations.

DBCPConnectionPool

This Controller Service allows NiFi to interact with the Snowflake database through the JDBC interface.

Property Description Example value for a dataflow pulling data from Snowflake
Name SnowflakeJDBCConnectionPool
Database Connection URL
jdbc:snowflake://[***account_name***].snowflakecomputing.com/?[***connection_params***]

Where:

  • account_name is similar to cb56215.europe-west2.gcp
  • connection_parameters is similar to db=DEMO_DB
Database Driver Class Name net.snowflake.client.jdbc.SnowflakeDriver

After you have finished configuring your Controller Services:

  • Configure your source Processor
  • Configure your target Processor
  • Confirm your dataflow is running