Re: [ovs-dev] Subject: [PATCH v3 1/3] ovsdb-idl: Add support for on-demand columns

2016-07-05 Thread Arguello, Sebastian
pull request, but this haven't been merged yet. Do I need to create a new one? Regards, Sebastian -Original Message- From: Ben Pfaff [mailto:b...@ovn.org] Sent: Tuesday, May 17, 2016 4:52 PM To: Arguello, Sebastian Cc: dev@openvswitch.org Subject: Re: [ovs-dev] Subject: [PATCH v

[ovs-dev] Subject: [PATCH v3 1/3] ovsdb-idl: Add support for on-demand columns

2016-04-28 Thread Arguello, Sebastian
The IDL only supports reading from columns that are being monitored. In the case where the column represent a frequently changing entity (e.g. counter), and the reads are relatively infrequent (e.g. CLI client), there is a significant overhead in replication. This patch introduces a new column mo

[ovs-dev] Subject: [PATCH v3 3/3] ovsdb-idl: Add on-demand columns tests

2016-04-28 Thread Arguello, Sebastian
Add tests for the OVSDB IDL on-demand column mode. This commit includes three tests to verify the correct functionality of the on-demand fetching at row, column, and table level. Co-Authored-By: Randall Esquivel Co-Authored-By: Arnoldo Lutz Signed-off-by: Sebastian Arguello Signed-off-by: Arn

[ovs-dev] Subject: [PATCH v3 2/3] ovsdb-idl: Add on-demand columns generated functions

2016-04-28 Thread Arguello, Sebastian
To ease the usage of the on-demand columns, wrappers that allow the developers to work with ovsrecs instead of ovsdb_idl_rows were added. For each table, a new set of functions to request the on-demand data from the server are generated: ovsrec__fetch_row(), ovsrec__fetch_column, and ovsrec__fetch

Re: [ovs-dev] [PATCH 1/3] ovsdb-idl: Add support for on-demand columns

2016-04-28 Thread Arguello, Sebastian
> Please ask the co-authors to add their sign-offs. Done. Finally, I ran indent as described in CondingStyle.md. Regards, Sebastián -Original Message- From: Ben Pfaff [mailto:b...@ovn.org] Sent: Friday, March 18, 2016 11:57 AM To: Arguello, Sebastian Cc: dev@openvswitch.org S

[ovs-dev] [PATCH 3/3] ovsdb-idl: Add on-demand columns tests

2016-03-01 Thread Arguello, Sebastian
Add tests for the OVSDB IDL on-demand column mode. This commit includes three tests to verify the correct functionality of the on-demand fetching at row, column, and table level. Co-Authored-By: Randall Esquivel Co-Authored-By: Arnoldo Lutz Signed-off-by: Sebastian Arguello --- This is the pu

[ovs-dev] [PATCH 1/3] ovsdb-idl: Add support for on-demand columns

2016-03-01 Thread Arguello, Sebastian
The IDL only supports reading from columns that are being monitored. In the case where the column represent a frequently changing entity (e.g. counter), and the reads are relatively infrequent (e.g. CLI client), there is a significant overhead in replication. This patch introduces a new column mo

[ovs-dev] [PATCH 2/3] ovsdb-idl: Add on-demand columns generated functions

2016-03-01 Thread Arguello, Sebastian
To ease the usage of the on-demand columns, wrappers that allow the developers to work with ovsrecs instead of ovsdb_idl_rows were added. For each table, a new set of functions to request the on-demand data from the server are generated: ovsrec__fetch_row(), ovsrec__fetch_column, and ovsrec__fetch