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

Support fallback ports in replicas for multicast #508

Open
wants to merge 22 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 14 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
c296c1f
Support fallback ports in Replicas for multicast
matthewtlam Oct 21, 2024
7f5cb15
Update the P4Runtime-Spec to remove whitespace.
matthewtlam Oct 21, 2024
778c1b7
Remove incorrect text in P4runtime-spec.
matthewtlam Oct 21, 2024
ad81001
Support fallback ports in replicas for multicast
matthewtlam Oct 22, 2024
a8cb97d
Update the P4Runtime-Spec example for multicast
matthewtlam Oct 22, 2024
bea2a23
Update the P4Runtime-Spec for multicast
matthewtlam Oct 22, 2024
120deee
Support port fallback for multicast by adding backup replicas
matthewtlam Oct 22, 2024
32fee8b
Update the P4Runtime-Spec to remove whitespace.
matthewtlam Oct 22, 2024
e5b7680
Update the P4Runtime-Spec.
matthewtlam Oct 23, 2024
a8f9b26
Update the associated go and rust files with the versioning changes.
matthewtlam Oct 23, 2024
18622bd
Support fallback ports as backup replicas for multicast
matthewtlam Oct 24, 2024
72f3375
Fix odd white spacing in p4runtime.proto
matthewtlam Oct 24, 2024
2f52a68
Update P4Runtime Spec to specify cases of when ports go down.
matthewtlam Oct 24, 2024
4e850e2
Update the P4RuntimeSpec to specify packet processing side effects of…
matthewtlam Oct 25, 2024
5641692
Update the P4RuntimeSpec to specify examples of packet processing sid…
matthewtlam Oct 25, 2024
ed685fb
Updated comments and P4Runtime Spec examples.
matthewtlam Oct 28, 2024
1982bfa
Update comment.
matthewtlam Oct 28, 2024
73ea0af
Update P4Runtime-Spec.mdk with backup replicas being optional and pro…
matthewtlam Oct 31, 2024
e8e0191
Update P4Runtime-Spec.mdk
matthewtlam Nov 1, 2024
69cebfb
Update p4runtime.proto
matthewtlam Nov 1, 2024
4f87f5d
Update p4.v1.rs
matthewtlam Nov 1, 2024
dcde77c
Update p4runtime.pb.go
matthewtlam Nov 1, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 39 additions & 5 deletions docs/v1/P4Runtime-Spec.mdk
Original file line number Diff line number Diff line change
Expand Up @@ -4530,10 +4530,30 @@ entity {
packet_replication_engine_entry {
multicast_group_entry {
multicast_group_id: 1
replicas { port: "\x05" instance: 1 }
replicas { port: "\x0c" instance: 2 }
replicas { port: "\x12" instance: 3 }
replicas { port: "\x18" instance: 4 }
replicas {
port: "\x05"
instance: 1
backup_replicas { port: "\x06" instance: 5 }
matthewtlam marked this conversation as resolved.
Show resolved Hide resolved
backup_replicas { port: "\x07" instance: 6 }
}
replicas {
port: "\x0c"
instance: 2
backup_replicas { port: "\x0d" instance: 7 }
backup_replicas { port: "\x0e" instance: 8 }
}
replicas {
port: "\x12"
instance: 3
backup_replicas { port: "\x13" instance: 9 }
backup_replicas { port: "\x14" instance: 10 }
}
replicas {
port: "\x18"
instance: 4
backup_replicas { port: "\x19" instance: 11 }
backup_replicas { port: "\x1a" instance: 12 }
}
}
}
}
Expand All @@ -4544,7 +4564,21 @@ four replicas of an ARP packet. These replicas will appear in the egress
pipeline as independent packets with egress port set to PSA device port numbers
corresponding to SDN port numbers 5, 12, 18 and 24. For more discussion on the
translation between SDN ports and PSA device ports, refer to the
[PSA Metadata Translation](#sec-translation-of-port-numbers) section.
[PSA Metadata Translation](#sec-translation-of-port-numbers) section. Each
replica can optionally have a list of backup replicas used as fallback ports
for multicast. When the primary port (replica) goes down, the system
uses the first backup replica for which its port is up. Whenever the primary
matthewtlam marked this conversation as resolved.
Show resolved Hide resolved
port goes back up, the system will use the primary port again. In the case
when the primary replica's ports and the backup replicas' ports are down,
nothing is done for recovery until the primary replica or the backup replicas's
matthewtlam marked this conversation as resolved.
Show resolved Hide resolved
ports go back up. When the primary and all the backups are down for a
particular replica, the packet processing side effects can result in one of the
matthewtlam marked this conversation as resolved.
Show resolved Hide resolved
two main expected behaviors that the user is recommended to implement.
matthewtlam marked this conversation as resolved.
Show resolved Hide resolved
In the first case, no replica is created so none of the side effects from the
after-multicast-replication processing should occur for this replica. In the
second case, the system sends one replica to the primary port, which gets
dropped, but the system will perform any side effects of the
after-multicast-replication processing.

The egress packets may be distinguished for further processing in the egress
using the `instance` metadata. Note that a packet may not be both unicast and
Expand Down
Loading
Loading