You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The data-path xflow (tc/xdp) ebpf program has to detect if the hashmap is full, and will need to evict entries.
Several approaches can be followed, like:
Evicting specific entries based on LRU (Least Recently Used)/ timeout.
Time-based hashmap eviction : Maintain two redundant hashmaps, and switch-over for collection.
The text was updated successfully, but these errors were encountered:
The data-path xflow (tc/xdp) ebpf program has to detect if the hashmap is full, and will need to evict entries.
Several approaches can be followed, like:
Evicting specific entries based on LRU (Least Recently Used)/ timeout.
Time-based hashmap eviction : Maintain two redundant hashmaps, and switch-over for collection.
The text was updated successfully, but these errors were encountered: