Skip to main content

PutTCP

Description

Sends serialized FlowFiles or Records over TCP to a configurable destination with optional support for TLS

Tags

egress, put, remote, tcp

Properties

In the list below required Properties are shown with an asterisk (*). Other properties are considered optional. The table also indicates any default values, and whether a property supports the NiFi Expression Language.

Display NameAPI NameDefault ValueAllowable ValuesDescription
Hostname *HostnamelocalhostDestination hostname or IP address

Supports Expression Language, using Environment variables.
Port *PortDestination port number

Supports Expression Language, using Environment variables.
Max Size of Socket Send Buffer *Max Size of Socket Send Buffer1 MBThe maximum size of the socket send buffer that should be used. This is a suggestion to the Operating System to indicate how big the socket buffer should be. If this value is set too low, the buffer may fill up before the data can be read, and incoming data will be dropped.
Idle Connection Expiration *Idle Connection Expiration15 secondsThe amount of time a connection should be held open without being used before closing the connection. A value of 0 seconds will disable this feature.

Supports Expression Language, using Environment variables.
TimeoutTimeout10 secondsThe timeout for connecting to and communicating with the destination. Does not apply to UDP

Supports Expression Language, using Environment variables.
Connection Per FlowFile *Connection Per FlowFilefalse
  • true
  • false
Specifies whether to send each FlowFile's content on an individual connection.
SSL Context ServiceSSL Context ServiceController Service:
SSLContextService

Implementations:
StandardRestrictedSSLContextService
StandardSSLContextService
Specifies the SSL Context Service to enable TLS socket communication
Transmission Strategy *Transmission StrategyFlowFile-oriented
  • FlowFile-oriented
  • Record-oriented
Specifies the strategy used for reading input FlowFiles and transmitting messages to the destination socket address
Outgoing Message DelimiterOutgoing Message DelimiterSpecifies the delimiter to use when sending messages out over the same TCP stream. The delimiter is appended to each FlowFile message that is transmitted over the stream so that the receiver can determine when one message ends and the next message begins. Users should ensure that the FlowFile content does not contain the delimiter character to avoid errors. In order to use a new line character you can enter '\n'. For a tab character use '\t'. Finally for a carriage return use '\r'.

Supports Expression Language, using FlowFile attributes and Environment variables.

This property is only considered if:
  • the property Transmission Strategy has a value of FLOWFILE_ORIENTED
Character Set *Character SetUTF-8Specifies the character set of the data being sent.

Supports Expression Language, using Environment variables.

This property is only considered if:
  • the property Transmission Strategy has a value of FLOWFILE_ORIENTED
Record Reader *Record ReaderController Service:
RecordReaderFactory

Implementations:
AvroReader
CEFReader
CSVReader
ExcelReader
GrokReader
JsonPathReader
JsonTreeReader
ReaderLookup
ScriptedReader
Syslog5424Reader
SyslogReader
WindowsEventLogReader
XMLReader
YamlTreeReader
Specifies the Controller Service to use for reading Records from input FlowFiles

This property is only considered if:
  • the property Transmission Strategy has a value of RECORD_ORIENTED
Record Writer *Record WriterController Service:
RecordSetWriterFactory

Implementations:
AvroRecordSetWriter
CSVRecordSetWriter
FreeFormTextRecordSetWriter
JsonRecordSetWriter
RecordSetWriterLookup
ScriptedRecordSetWriter
XMLRecordSetWriter
Specifies the Controller Service to use for writing Records to the configured socket address

This property is only considered if:
  • the property Transmission Strategy has a value of RECORD_ORIENTED

Dynamic Properties

This component does not support dynamic properties.

Relationships

NameDescription
failureFlowFiles that failed to send to the destination are sent out this relationship.
successFlowFiles that are sent successfully to the destination are sent out this relationship.

Reads Attributes

This processor does not read attributes.

Writes Attributes

NameDescription
record.count.transmittedCount of records transmitted to configured destination address

State Management

This component does not store state.

Restricted

This component is not restricted.

Input Requirement

This component requires an incoming relationship.

System Resource Considerations

This component does not specify system resource considerations.

See Also

ListenTCP, PutUDP