On 9/26/24 18:59, Sri kor via discuss wrote: > > > @Dumitru Ceara and @Ilya Maximets, > Any thoughts on this? > > Thanks, > Srini > > On Fri, Sep 20, 2024 at 12:27 AM Sri kor <esrik...@gmail.com > <mailto:esrik...@gmail.com>> wrote: > > In between, we are using OVS version 3.2 and OVN version 23.09.4 > > On Thu, Sep 19, 2024 at 10:41 PM Sri kor <esrik...@gmail.com > <mailto:esrik...@gmail.com>> wrote: > > Dear OVS Community, > > > I have encountered an issue where some DNS requests are timing out, > and it appears to be related to a failure to “put” flows. Specifically, I’m > seeing the following errors in the logs: > > / > / > > /2024-09-20T03:12:49.415Z|00392|dpif(handler2)|DBG|system@ovs-system: > failed to put[create] (File exists) ufid:31e07114-bc99-4cb1-88c0-69436ef2f4ad > recirc_id(0x3),dp_hash(0/0),skb_priority(0/0),in_port(2),skb_mark(0/0),ct_state(0x21/0),ct_zone(0x57/0),ct_mark(0/0),ct_label(0/0),ct_tuple4(src=163.44.196.189/0.0.0.0,dst=216.86.161.8/0.0.0.0,proto=6/0,tp_src=33260/0,tp_dst=22/0 > > <http://163.44.196.189/0.0.0.0,dst=216.86.161.8/0.0.0.0,proto=6/0,tp_src=33260/0,tp_dst=22/0>),eth(src=9c:05:91:c1:93:fd/00:00:00:00:00:00,dst=7e:69:17:8b:54:3e/00:00:00:00:00:00),eth_type(0x0800),ipv4(src=163.44.196.189/0.0.0.0,dst=216.86.161.8,proto=6/0,tos=0/0,ttl=46/0,frag=no > > <http://163.44.196.189/0.0.0.0,dst=216.86.161.8,proto=6/0,tos=0/0,ttl=46/0,frag=no>),tcp(src=33260/0,dst=22/0),tcp_flags(0/0), > actions:ct(commit,zone=87,nat(dst=172.27.45.101)),recirc(0x190)/
Hi. Your error code is "File exists" and it's a debug level message. The error means that the same flow is already installed in the datapath. This is a normal condition in OVS since flow installation is happening asynchronously to the traffic and more packets that match the same pattern can arrive while the flow is still not installed. The packets should be processes just fine with the 'execute' datapath call, but the subsequent 'flow put' would fail since we already just installed the flow for a previous packet. So, it is very unlikely to be a cause of your issue. Best regards, Ilya Maximets. _______________________________________________ discuss mailing list disc...@openvswitch.org https://mail.openvswitch.org/mailman/listinfo/ovs-discuss