Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incast experiment #18

Open
guirenbenxin opened this issue Aug 2, 2024 · 1 comment
Open

Incast experiment #18

guirenbenxin opened this issue Aug 2, 2024 · 1 comment

Comments

@guirenbenxin
Copy link

Hello, I want to simulate the incast 255:1 scene. Can you provide the corresponding flow file, or how should I set my flow?

@vamsiDT
Copy link
Member

vamsiDT commented Aug 5, 2024

Hi,

Please refer to the format in flow-burstExp.txt, each line is as follows:

srcNode DstNode pg port flowsize startTime and the first line in the file corresponds to the number of flows.

To simulate 255:1, you could specify 255 at the top of the file and generate 255 flows towards the same receiver:

#!/bin/bash

N=255
RECEIVER=16

echo $N

for SENDER in $(seq 1 $N);do
	if [ $SENDER -eq $RECEIVER ]; then
		continue
	fi
	echo "$SENDER $RECEIVER 3 $(( 10000+$SENDER )) 1000000000000 0.15"
done

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants