-
Notifications
You must be signed in to change notification settings - Fork 531
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
Optimize orch performance by pops() #312
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,54 +83,58 @@ bool Orch::execute(string tableName) | |
} | ||
Consumer& consumer = consumer_it->second; | ||
|
||
KeyOpFieldsValuesTuple new_data; | ||
consumer.m_consumer->pop(new_data); | ||
std::deque<KeyOpFieldsValuesTuple> new_data; | ||
consumer.m_consumer->pops(new_data); | ||
|
||
string key = kfvKey(new_data); | ||
string op = kfvOp(new_data); | ||
/* Possible nothing popped, ie. the oparation is already merged with other operations */ | ||
if (op.empty()) | ||
/* Nothing popped */ | ||
if (new_data.empty()) | ||
{ | ||
return true; | ||
} | ||
|
||
/* Record incoming tasks */ | ||
if (gSwssRecord) | ||
for (auto new_data1: new_data) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
entry? new_data1 does not have any meaning. |
||
{ | ||
recordTuple(consumer, new_data); | ||
} | ||
string key = kfvKey(new_data1); | ||
string op = kfvOp(new_data1); | ||
|
||
/* If a new task comes or if a DEL task comes, we directly put it into consumer.m_toSync map */ | ||
if (consumer.m_toSync.find(key) == consumer.m_toSync.end() || op == DEL_COMMAND) | ||
{ | ||
consumer.m_toSync[key] = new_data; | ||
} | ||
/* If an old task is still there, we combine the old task with new task */ | ||
else | ||
{ | ||
KeyOpFieldsValuesTuple existing_data = consumer.m_toSync[key]; | ||
/* Record incoming tasks */ | ||
if (gSwssRecord) | ||
{ | ||
recordTuple(consumer, new_data1); | ||
} | ||
|
||
auto new_values = kfvFieldsValues(new_data); | ||
auto existing_values = kfvFieldsValues(existing_data); | ||
/* If a new task comes or if a DEL task comes, we directly put it into consumer.m_toSync map */ | ||
if (consumer.m_toSync.find(key) == consumer.m_toSync.end() || op == DEL_COMMAND) | ||
{ | ||
consumer.m_toSync[key] = new_data1; | ||
} | ||
/* If an old task is still there, we combine the old task with new task */ | ||
else | ||
{ | ||
KeyOpFieldsValuesTuple existing_data = consumer.m_toSync[key]; | ||
|
||
auto new_values = kfvFieldsValues(new_data1); | ||
auto existing_values = kfvFieldsValues(existing_data); | ||
|
||
for (auto it : new_values) | ||
{ | ||
string field = fvField(it); | ||
string value = fvValue(it); | ||
|
||
auto iu = existing_values.begin(); | ||
while (iu != existing_values.end()) | ||
for (auto it : new_values) | ||
{ | ||
string ofield = fvField(*iu); | ||
if (field == ofield) | ||
iu = existing_values.erase(iu); | ||
else | ||
iu++; | ||
string field = fvField(it); | ||
string value = fvValue(it); | ||
|
||
auto iu = existing_values.begin(); | ||
while (iu != existing_values.end()) | ||
{ | ||
string ofield = fvField(*iu); | ||
if (field == ofield) | ||
iu = existing_values.erase(iu); | ||
else | ||
iu++; | ||
} | ||
existing_values.push_back(FieldValueTuple(field, value)); | ||
} | ||
existing_values.push_back(FieldValueTuple(field, value)); | ||
consumer.m_toSync[key] = KeyOpFieldsValuesTuple(key, op, existing_values); | ||
} | ||
consumer.m_toSync[key] = KeyOpFieldsValuesTuple(key, op, existing_values); | ||
} | ||
|
||
if (!consumer.m_toSync.empty()) | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
entries