Class EdgeConfig
- All Implemented Interfaces:
DataSerializable
,IdentifiedDataSerializable
Edge
that holds fine-tuning parameters that influence its performance
characteristics.- Since:
- Jet 3.0
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
The defaultpacket size limit
.static final int
The default size of theconcurrent queues
connecting processors within a cluster member.static final int
The defaultreceive window multiplier
. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
int
Returns type identifier for this class.int
Returns DataSerializableFactory factory ID for this class.int
Returns the limit on thenetwork packet size
, in bytesint
Returns the size of the SPSC queues used to implement this edge.int
int
hashCode()
void
Reads fields from the input streamsetPacketSizeLimit
(int packetSizeLimit) For a distributed edge, data is sent to a remote member via Hazelcast network packets.setQueueSize
(int queueSize) Sets the capacity of processor-to-processor concurrent queues.setReceiveWindowMultiplier
(int receiveWindowMultiplier) Sets the scaling factor used by the adaptive receive window sizing function.toString()
void
Writes object fields to output stream
-
Field Details
-
DEFAULT_QUEUE_SIZE
public static final int DEFAULT_QUEUE_SIZEThe default size of theconcurrent queues
connecting processors within a cluster member.- See Also:
-
DEFAULT_RECEIVE_WINDOW_MULTIPLIER
public static final int DEFAULT_RECEIVE_WINDOW_MULTIPLIERThe defaultreceive window multiplier
.- See Also:
-
DEFAULT_PACKET_SIZE_LIMIT
public static final int DEFAULT_PACKET_SIZE_LIMITThe defaultpacket size limit
.- See Also:
-
-
Constructor Details
-
EdgeConfig
public EdgeConfig()
-
-
Method Details
-
setQueueSize
Sets the capacity of processor-to-processor concurrent queues. The value is rounded upwards to the next power of 2.When data needs to travel between two processors on the same cluster member, Jet sends it over a concurrent single-producer, single-consumer (SPSC) queue of fixed capacity.
Since there are several processors executing the logic of each vertex, and since the queues are SPSC, there will be
senderParallelism * receiverParallelism
queues representing the edge on each member. The edge capacity should strike a balance between performance and memory usage. The default of 1024 is a good size for simple DAGs and moderate parallelism.- Returns:
this
instance for fluent API
-
getQueueSize
public int getQueueSize()Returns the size of the SPSC queues used to implement this edge. The real queue size will be rounded upwards to the next power of 2. -
setReceiveWindowMultiplier
Sets the scaling factor used by the adaptive receive window sizing function.For each distributed edge the receiving member regularly sends flow-control ("ack") packets to its sender which prevent it from sending too much data and overflowing the buffers. The sender is allowed to send the data one receive window further than the last acknowledged byte and the receive window is sized in proportion to the rate of processing at the receiver.
Ack packets are sent in
regular intervals
and the receive window multiplier sets the factor of the linear relationship between the amount of data processed within one such interval and the size of the receive window.To put it another way, let us define an ackworth as the amount of data processed between two consecutive ack packets. The receive window multiplier determines the number of ackworths the sender can be ahead of the last acked byte.
The default value is 3. This setting has no effect on a non-distributed edge.
- Returns:
this
instance for fluent API
-
getReceiveWindowMultiplier
public int getReceiveWindowMultiplier()- Returns:
- the
receive window multiplier
-
setPacketSizeLimit
For a distributed edge, data is sent to a remote member via Hazelcast network packets. Each packet is dedicated to the data of a single edge, but may contain any number of data items. This setting limits the size of the packet in bytes. Packets should be large enough to drown out any fixed overheads, but small enough to allow good interleaving with other packets.Note that a single item cannot straddle packets, therefore the maximum packet size can exceed the value configured here by the size of a single data item.
The default value is 16384. This setting has no effect on a non-distributed edge.
- Returns:
this
instance for fluent API
-
getPacketSizeLimit
public int getPacketSizeLimit()Returns the limit on thenetwork packet size
, in bytes -
getFactoryId
public int getFactoryId()Description copied from interface:IdentifiedDataSerializable
Returns DataSerializableFactory factory ID for this class.- Specified by:
getFactoryId
in interfaceIdentifiedDataSerializable
- Returns:
- factory ID
-
getClassId
public int getClassId()Description copied from interface:IdentifiedDataSerializable
Returns type identifier for this class. It should be unique per DataSerializableFactory.- Specified by:
getClassId
in interfaceIdentifiedDataSerializable
- Returns:
- type ID
-
writeData
Description copied from interface:DataSerializable
Writes object fields to output stream- Specified by:
writeData
in interfaceDataSerializable
- Parameters:
out
- output- Throws:
IOException
- if an I/O error occurs. In particular, anIOException
may be thrown if the output stream has been closed.
-
readData
Description copied from interface:DataSerializable
Reads fields from the input stream- Specified by:
readData
in interfaceDataSerializable
- Parameters:
in
- input- Throws:
IOException
- if an I/O error occurs. In particular, anIOException
may be thrown if the input stream has been closed.
-
equals
-
hashCode
public int hashCode() -
toString
-