Activity log for bug #1990978

Date Who What changed Old value New value Message
2022-09-27 13:46:57 Alin-Gabriel Serdean bug added bug
2022-09-27 22:55:51 Alin-Gabriel Serdean attachment added openvswitch_2.17.2-0ubuntu0.22.04.1~cloud0ubuntu2.debdiff https://bugs.launchpad.net/ubuntu/+source/openvswitch/+bug/1990978/+attachment/5619594/+files/openvswitch_2.17.2-0ubuntu0.22.04.1~cloud0ubuntu2.debdiff
2022-09-28 00:28:07 Ubuntu Foundations Team Bug Bot tags patch
2022-09-28 00:28:14 Ubuntu Foundations Team Bug Bot bug added subscriber Ubuntu Sponsors Team
2022-09-28 10:54:50 Edward Hope-Morley nominated for series Ubuntu Jammy
2022-09-28 10:54:50 Edward Hope-Morley bug task added openvswitch (Ubuntu Jammy)
2022-09-28 10:54:50 Edward Hope-Morley nominated for series Ubuntu Kinetic
2022-09-28 10:54:50 Edward Hope-Morley bug task added openvswitch (Ubuntu Kinetic)
2022-09-28 10:55:13 Edward Hope-Morley openvswitch (Ubuntu Kinetic): status New Fix Released
2022-09-28 10:55:38 Edward Hope-Morley bug task added cloud-archive
2022-09-28 10:56:07 Edward Hope-Morley nominated for series cloud-archive/yoga
2022-09-28 10:56:07 Edward Hope-Morley bug task added cloud-archive/yoga
2022-09-28 11:28:29 Edward Hope-Morley description First compaction starts after 24 hours, or earlier after doubling of DB size. Subsequent compactions will trigger every 10-20 min. The OVS version hitting this issue: ovs-vsctl (Open vSwitch) 2.17.2 Commit ID that fixes the issue is: https://github.com/openvswitch/ovs/commit/a32a4e1fa2d3fad284834d4b7bccc2e71d33f9da https://github.com/openvswitch/ovs/commit/dfc3e65c8191f5dc375337c23aed128b5c0d7781(2.17 branch patch) Testcase: Trigger compactions by using command line tool: ovs-appctl -t /var/run/ovn/ovnsb_db.ctl ovsdb-server/compact Check for leadership transfers using: sudo grep "Transferring leadership" /var/log/ovn/ov* | grep ovsdb-server-sb.log There should be a new entry every 10-20min. First compaction starts after 24 hours, or earlier after doubling of DB size. Subsequent compactions will trigger every 10-20 min. The OVS version hitting this issue: ovs-vsctl (Open vSwitch) 2.17.2 Commit ID that fixes the issue is: https://github.com/openvswitch/ovs/commit/a32a4e1fa2d3fad284834d4b7bccc2e71d33f9da https://github.com/openvswitch/ovs/commit/dfc3e65c8191f5dc375337c23aed128b5c0d7781 (2.17 branch patch) Testcase: Trigger compactions by using command line tool: ovs-appctl -t /var/run/ovn/ovnsb_db.ctl ovsdb-server/compact Check for leadership transfers using: sudo grep "Transferring leadership" /var/log/ovn/ov* | grep ovsdb-server-sb.log There should be a new entry every 10-20min.
2022-09-28 11:29:32 Edward Hope-Morley openvswitch (Ubuntu Kinetic): status Fix Released New
2022-09-28 11:39:56 Edward Hope-Morley attachment added lp1990978-kinetic.debdiff https://bugs.launchpad.net/ubuntu/+source/openvswitch/+bug/1990978/+attachment/5619785/+files/lp1990978-kinetic.debdiff
2022-09-28 11:39:59 Edward Hope-Morley attachment added lp1990978-kinetic.debdiff https://bugs.launchpad.net/ubuntu/+source/openvswitch/+bug/1990978/+attachment/5619786/+files/lp1990978-kinetic.debdiff
2022-09-28 11:41:20 Edward Hope-Morley attachment removed lp1990978-kinetic.debdiff https://bugs.launchpad.net/ubuntu/+source/openvswitch/+bug/1990978/+attachment/5619785/+files/lp1990978-kinetic.debdiff
2022-09-28 11:41:58 Edward Hope-Morley attachment added lp1990978-jammy.debdiff https://bugs.launchpad.net/ubuntu/+source/openvswitch/+bug/1990978/+attachment/5619787/+files/lp1990978-jammy.debdiff
2022-09-28 16:23:57 Alin-Gabriel Serdean description First compaction starts after 24 hours, or earlier after doubling of DB size. Subsequent compactions will trigger every 10-20 min. The OVS version hitting this issue: ovs-vsctl (Open vSwitch) 2.17.2 Commit ID that fixes the issue is: https://github.com/openvswitch/ovs/commit/a32a4e1fa2d3fad284834d4b7bccc2e71d33f9da https://github.com/openvswitch/ovs/commit/dfc3e65c8191f5dc375337c23aed128b5c0d7781 (2.17 branch patch) Testcase: Trigger compactions by using command line tool: ovs-appctl -t /var/run/ovn/ovnsb_db.ctl ovsdb-server/compact Check for leadership transfers using: sudo grep "Transferring leadership" /var/log/ovn/ov* | grep ovsdb-server-sb.log There should be a new entry every 10-20min. First compaction starts after 24 hours, or earlier after doubling of DB size. Subsequent compactions will trigger every 10-20 min. The OVS version hitting this issue: ovs-vsctl (Open vSwitch) 2.17.2 Commit ID that fixes the issue is: https://github.com/openvswitch/ovs/commit/a32a4e1fa2d3fad284834d4b7bccc2e71d33f9da https://github.com/openvswitch/ovs/commit/dfc3e65c8191f5dc375337c23aed128b5c0d7781 (2.17 branch patch) Reproducer: Trigger compactions by using command line tool: ovs-appctl -t /var/run/ovn/ovnsb_db.ctl ovsdb-server/compact or by creating DB pressure, i.e.: #!/bin/bash for i in {1..5000} do ovn-nbctl ls-add sw$i if [[ $? -ne 0 ]] ; then echo "Failed on ls-add i: $i" exit 1 fi for j in {1..2000} do echo "Iteration i: $i and j:$j" ovn-nbctl lsp-add sw$i sw$i$j if [[ $? -ne 0 ]] ; then echo "Failed on lsp-add i: $i and j: $j" exit 1 fi done done for i in {1..5000} do echo "Delete iteration i: $i" ovn-nbctl ls-del sw$i if [[ $? -ne 0 ]] ; then echo "Failed on ls-del i: $i" exit 1 fi done Check for leadership transfers using: sudo grep "Transferring leadership" /var/log/ovn/ov* | grep ovsdb-server-sb.log There should be a new entry every 10-20min. === Ubuntu SRU Details === [Impact] Please see [Test Case] * deploy Openstack Yoga * connect to the NB DB leader and run the script to generate DB pressure. Compaction will occur after the DB doubles its size * check for subsequent transfers after one hour using the following script: sudo grep "Transferring leadership" /var/log/ovn/ov* | grep ovsdb-server-sb.log [Where things could go wrong] Regression is not expected since it reduces the frequency of transfers. The fix has also been applied upstream https://github.com/openvswitch/ovs/commit/dfc3e65c8191f5dc375337c23aed128b5c0d778 however a new version has not been released.
2022-09-30 09:10:22 Edward Hope-Morley description First compaction starts after 24 hours, or earlier after doubling of DB size. Subsequent compactions will trigger every 10-20 min. The OVS version hitting this issue: ovs-vsctl (Open vSwitch) 2.17.2 Commit ID that fixes the issue is: https://github.com/openvswitch/ovs/commit/a32a4e1fa2d3fad284834d4b7bccc2e71d33f9da https://github.com/openvswitch/ovs/commit/dfc3e65c8191f5dc375337c23aed128b5c0d7781 (2.17 branch patch) Reproducer: Trigger compactions by using command line tool: ovs-appctl -t /var/run/ovn/ovnsb_db.ctl ovsdb-server/compact or by creating DB pressure, i.e.: #!/bin/bash for i in {1..5000} do ovn-nbctl ls-add sw$i if [[ $? -ne 0 ]] ; then echo "Failed on ls-add i: $i" exit 1 fi for j in {1..2000} do echo "Iteration i: $i and j:$j" ovn-nbctl lsp-add sw$i sw$i$j if [[ $? -ne 0 ]] ; then echo "Failed on lsp-add i: $i and j: $j" exit 1 fi done done for i in {1..5000} do echo "Delete iteration i: $i" ovn-nbctl ls-del sw$i if [[ $? -ne 0 ]] ; then echo "Failed on ls-del i: $i" exit 1 fi done Check for leadership transfers using: sudo grep "Transferring leadership" /var/log/ovn/ov* | grep ovsdb-server-sb.log There should be a new entry every 10-20min. === Ubuntu SRU Details === [Impact] Please see [Test Case] * deploy Openstack Yoga * connect to the NB DB leader and run the script to generate DB pressure. Compaction will occur after the DB doubles its size * check for subsequent transfers after one hour using the following script: sudo grep "Transferring leadership" /var/log/ovn/ov* | grep ovsdb-server-sb.log [Where things could go wrong] Regression is not expected since it reduces the frequency of transfers. The fix has also been applied upstream https://github.com/openvswitch/ovs/commit/dfc3e65c8191f5dc375337c23aed128b5c0d778 however a new version has not been released. [Impact] [Test Case] [Where things could go wrong] [Original bug description] First compaction starts after 24 hours, or earlier after doubling of DB size. Subsequent compactions will trigger every 10-20 min. The OVS version hitting this issue: ovs-vsctl (Open vSwitch) 2.17.2 Commit ID that fixes the issue is: https://github.com/openvswitch/ovs/commit/a32a4e1fa2d3fad284834d4b7bccc2e71d33f9da https://github.com/openvswitch/ovs/commit/dfc3e65c8191f5dc375337c23aed128b5c0d7781 (2.17 branch patch) Reproducer: Trigger compactions by using command line tool: ovs-appctl -t /var/run/ovn/ovnsb_db.ctl ovsdb-server/compact or by creating DB pressure, i.e.: #!/bin/bash for i in {1..5000} do ovn-nbctl ls-add sw$i if [[ $? -ne 0 ]] ; then     echo "Failed on ls-add i: $i"     exit 1 fi         for j in {1..2000}         do                 echo "Iteration i: $i and j:$j"                 ovn-nbctl lsp-add sw$i sw$i$j                 if [[ $? -ne 0 ]] ; then                     echo "Failed on lsp-add i: $i and j: $j"                     exit 1                 fi         done done for i in {1..5000} do         echo "Delete iteration i: $i"         ovn-nbctl ls-del sw$i         if [[ $? -ne 0 ]] ; then             echo "Failed on ls-del i: $i"             exit 1         fi done Check for leadership transfers using: sudo grep "Transferring leadership" /var/log/ovn/ov* | grep ovsdb-server-sb.log There should be a new entry every 10-20min. === Ubuntu SRU Details === [Impact] Please see [Test Case] * deploy Openstack Yoga * connect to the NB DB leader and run the script to generate DB pressure. Compaction will occur after the DB doubles its size * check for subsequent transfers after one hour using the following script: sudo grep "Transferring leadership" /var/log/ovn/ov* | grep ovsdb-server-sb.log [Where things could go wrong] Regression is not expected since it reduces the frequency of transfers. The fix has also been applied upstream https://github.com/openvswitch/ovs/commit/dfc3e65c8191f5dc375337c23aed128b5c0d778 however a new version has not been released.
2022-09-30 09:23:33 Alin-Gabriel Serdean description [Impact] [Test Case] [Where things could go wrong] [Original bug description] First compaction starts after 24 hours, or earlier after doubling of DB size. Subsequent compactions will trigger every 10-20 min. The OVS version hitting this issue: ovs-vsctl (Open vSwitch) 2.17.2 Commit ID that fixes the issue is: https://github.com/openvswitch/ovs/commit/a32a4e1fa2d3fad284834d4b7bccc2e71d33f9da https://github.com/openvswitch/ovs/commit/dfc3e65c8191f5dc375337c23aed128b5c0d7781 (2.17 branch patch) Reproducer: Trigger compactions by using command line tool: ovs-appctl -t /var/run/ovn/ovnsb_db.ctl ovsdb-server/compact or by creating DB pressure, i.e.: #!/bin/bash for i in {1..5000} do ovn-nbctl ls-add sw$i if [[ $? -ne 0 ]] ; then     echo "Failed on ls-add i: $i"     exit 1 fi         for j in {1..2000}         do                 echo "Iteration i: $i and j:$j"                 ovn-nbctl lsp-add sw$i sw$i$j                 if [[ $? -ne 0 ]] ; then                     echo "Failed on lsp-add i: $i and j: $j"                     exit 1                 fi         done done for i in {1..5000} do         echo "Delete iteration i: $i"         ovn-nbctl ls-del sw$i         if [[ $? -ne 0 ]] ; then             echo "Failed on ls-del i: $i"             exit 1         fi done Check for leadership transfers using: sudo grep "Transferring leadership" /var/log/ovn/ov* | grep ovsdb-server-sb.log There should be a new entry every 10-20min. === Ubuntu SRU Details === [Impact] Please see [Test Case] * deploy Openstack Yoga * connect to the NB DB leader and run the script to generate DB pressure. Compaction will occur after the DB doubles its size * check for subsequent transfers after one hour using the following script: sudo grep "Transferring leadership" /var/log/ovn/ov* | grep ovsdb-server-sb.log [Where things could go wrong] Regression is not expected since it reduces the frequency of transfers. The fix has also been applied upstream https://github.com/openvswitch/ovs/commit/dfc3e65c8191f5dc375337c23aed128b5c0d778 however a new version has not been released. First compaction starts after 24 hours, or earlier after doubling of DB size. Subsequent compactions will trigger every 10-20 min. The OVS version hitting this issue: ovs-vsctl (Open vSwitch) 2.17.2 Commit ID that fixes the issue is: https://github.com/openvswitch/ovs/commit/a32a4e1fa2d3fad284834d4b7bccc2e71d33f9da https://github.com/openvswitch/ovs/commit/dfc3e65c8191f5dc375337c23aed128b5c0d7781 (2.17 branch patch) Reproducer: Trigger compactions by using command line tool: ovs-appctl -t /var/run/ovn/ovnsb_db.ctl ovsdb-server/compact or by creating DB pressure, i.e.: #!/bin/bash for i in {1..5000} do ovn-nbctl ls-add sw$i if [[ $? -ne 0 ]] ; then     echo "Failed on ls-add i: $i"     exit 1 fi         for j in {1..2000}         do                 echo "Iteration i: $i and j:$j"                 ovn-nbctl lsp-add sw$i sw$i$j                 if [[ $? -ne 0 ]] ; then                     echo "Failed on lsp-add i: $i and j: $j"                     exit 1                 fi         done done for i in {1..5000} do         echo "Delete iteration i: $i"         ovn-nbctl ls-del sw$i         if [[ $? -ne 0 ]] ; then             echo "Failed on ls-del i: $i"             exit 1         fi done Check for leadership transfers using: sudo grep "Transferring leadership" /var/log/ovn/ov* | grep ovsdb-server-sb.log There should be a new entry every 10-20min. === Ubuntu SRU Details === [Impact] Please see above [Test Case] * deploy Openstack Yoga * connect to the NB DB leader and run the script to generate DB pressure. Compaction will occur after the DB doubles its size * check for subsequent transfers after one hour using the following script: sudo grep "Transferring leadership" /var/log/ovn/ov* | grep ovsdb-server-sb.log [Where things could go wrong] Regression is not expected since it reduces the frequency of transfers. The fix has also been applied upstream https://github.com/openvswitch/ovs/commit/dfc3e65c8191f5dc375337c23aed128b5c0d778 however a new version has not been released.
2022-09-30 09:53:52 Nobuto Murata bug added subscriber Nobuto Murata
2022-10-17 13:49:38 James Page bug added subscriber Frode Nordahl
2022-10-27 12:39:16 Dariusz Gadomski openvswitch (Ubuntu Kinetic): assignee Dariusz Gadomski (dgadomski)
2022-10-27 12:39:19 Dariusz Gadomski openvswitch (Ubuntu Jammy): assignee Dariusz Gadomski (dgadomski)
2022-10-27 12:39:29 Dariusz Gadomski bug added subscriber SE SRU ("STS") Sponsors
2022-10-27 12:39:38 Dariusz Gadomski tags patch patch sts sts-sponsor-dgadomski
2022-10-27 12:39:57 Dariusz Gadomski bug added subscriber Dariusz Gadomski
2022-10-28 18:25:41 Launchpad Janitor openvswitch (Ubuntu): status New Confirmed
2022-10-28 18:25:41 Launchpad Janitor openvswitch (Ubuntu Jammy): status New Confirmed
2022-10-28 18:25:41 Launchpad Janitor openvswitch (Ubuntu Kinetic): status New Confirmed
2022-10-28 18:25:47 Thobias Trevisan bug added subscriber Thobias Trevisan
2022-11-15 08:37:24 Hua Zhang nominated for series Ubuntu Focal
2022-11-15 08:37:24 Hua Zhang bug task added openvswitch (Ubuntu Focal)
2022-11-24 14:46:04 Jorge Rodríguez bug added subscriber Jorge Rodríguez
2022-12-07 14:50:35 Junien F bug added subscriber The Canonical Sysadmins
2022-12-07 14:50:37 Junien F bug added subscriber Junien Fridrick
2023-01-20 17:06:15 Edward Hope-Morley openvswitch (Ubuntu Kinetic): status Confirmed Fix Released
2023-01-20 17:06:18 Edward Hope-Morley openvswitch (Ubuntu Jammy): status Confirmed Fix Released
2023-01-20 17:06:22 Edward Hope-Morley openvswitch (Ubuntu Focal): status New Fix Released
2023-01-20 17:06:28 Edward Hope-Morley cloud-archive/yoga: status New Fix Released
2023-01-25 20:11:56 Simon Quigley removed subscriber Ubuntu Sponsors Team
2023-01-27 12:02:14 Chris Valean bug added subscriber Chris Valean
2023-01-27 12:06:16 Rafael Coman bug added subscriber Rafael Coman
2023-03-01 17:10:33 Mauricio Faria de Oliveira removed subscriber SE ("STS") Sponsors
2023-06-13 11:27:41 Stefan Lupsa bug added subscriber Stefan Lupsa
2023-06-29 04:55:11 Frode Nordahl openvswitch (Ubuntu): status Confirmed Fix Released
2023-06-29 04:55:20 Frode Nordahl cloud-archive: status New Invalid