mirror of
https://github.com/clearml/clearml-web
synced 2025-01-30 22:17:22 +00:00
Request bigger batches for console logs, helps searching (#58)
* Request bigger batches for console logs
Navigating consoles logs is a bit inefficient and searching is broken by lazy loaded messages, this commit does not solve this but helps a bit by requesting more messages at each request (current size does ~8kB brotli requests on my tests but I guess it depends on message length). 5000 is the default size for the backend: 452f606889/apiserver/apimodels/events.py (L112C10-L112C10)
* Update src/app/webapp-common/experiments/shared/common-experiments.const.ts
This commit is contained in:
parent
09108efb88
commit
37ee7b5c7e
@ -51,7 +51,7 @@ export const TASK_TAGS = {
|
||||
HIDDEN: 'archived' as TaskTagsEnum
|
||||
};
|
||||
|
||||
export const LOG_BATCH_SIZE = 100;
|
||||
export const LOG_BATCH_SIZE = 1000;
|
||||
|
||||
export enum CustomColumnMode {
|
||||
Standard,
|
||||
|
Loading…
Reference in New Issue
Block a user