-
Search before asking
Apache SkyWalking ComponentUI (apache/skywalking-booster-ui) What happenedSkywalking UI topology page stuck with over 100+ nodes. ![]() What you expected to happenFunction normally. How to reproduceservice/endpoint exceed 100+ and more. Anything elseNo response Are you willing to submit a pull request to fix on your own?
Code of Conduct
|
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 7 replies
-
If you could provide topology response, we may be able to try. |
Beta Was this translation helpful? Give feedback.
-
Finally we have found a dead lock in ui source code. function chunkArray(array: any[], chunkSize: number) {
const result = [];
for (let i = 0; i < array.length; i += chunkSize) {
result.push(array.slice(i, i + chunkSize));
}
return result;
} Add the following code: function chunkArray(array: any[], chunkSize: number) {
if (chunkSize == 0) {
chinkSize = 1
}
const result = [];
for (let i = 0; i < array.length; i += chunkSize) {
result.push(array.slice(i, i + chunkSize));
}
return result;
} This will solve fronend dead lock and trigger backend error: |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
This should resolve large topology conflicts that are caused by GraphQL limitations.
apache/skywalking-booster-ui#485
This patch will be included in 10.3.0 release.