-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improvements to how the simulator is able to stream to the BlockNode,…
… this commit creates a StreamingMode enum, with 2 values, CONSTANT_RATE and MILLIS_PER_BLOCK. CONSTANT_RATE is the streaming mode that we have been using, that streams a block item, then waits X amount of NS, then streams another blockItem. MILLIS_PER_BLOCK, does a lot less thread interruptions, and has a more realistic behaviour, since is going to stream the whole block, as fast as it can, and then going to sleep for X-(time it took to stream) being X the target of block production, by default 1 block is produced each second, so it will attempt to stream 1 block per every 1000 ms, however if the block takes more than 1000 ms to stream, it wont sleep at all, but WARN of a potential issue. Added documentation for explaining the changes Signed-off-by: Alfredo Gutierrez <[email protected]>
- Loading branch information
1 parent
d55321f
commit 25c5ce6
Showing
11 changed files
with
315 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
simulator/src/main/java/com/hedera/block/simulator/config/types/StreamingMode.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
* Copyright (C) 2024 Hedera Hashgraph, LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.hedera.block.simulator.config.types; | ||
|
||
/** The StreamingMode enum defines the different modes for streaming blocks. */ | ||
public enum StreamingMode { | ||
|
||
/** It will wait X Nanos between each block. */ | ||
CONSTANT_RATE, | ||
|
||
/** It will attempt to send a block each X Millis. */ | ||
MILLIS_PER_BLOCK; | ||
|
||
/** | ||
* Converts a string to a StreamingMode. | ||
* | ||
* @param mode the string to convert | ||
* @return the StreamingMode | ||
*/ | ||
public static StreamingMode fromString(String mode) { | ||
return switch (mode) { | ||
case "CONSTANT_RATE" -> CONSTANT_RATE; | ||
case "MILLIS_PER_BLOCK" -> MILLIS_PER_BLOCK; | ||
default -> throw new IllegalArgumentException("Invalid mode: " + mode); | ||
}; | ||
} | ||
} |
Oops, something went wrong.