Commit c0057c0
committed
Redesign parallel RRD ingestion with per-EntityDb workers
- Move ingestion worker from App-level to per-EntityDb architecture
- Each EntityDb now has its own dedicated ingestion worker with separate
channels for commands and message batches
- Add benchmark infrastructure for ingestion performance testing
- Refactor loader_rrd.rs to support parallel message distribution1 parent 8b8e342 commit c0057c0
File tree
12 files changed
+1344
-66
lines changed- crates
- store
- re_data_loader
- benches
- src
- re_entity_db
- src
- utils/re_video/src/decode
- viewer/re_viewer
- src
12 files changed
+1344
-66
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
92 | 92 | | |
93 | 93 | | |
94 | 94 | | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
8659 | 8659 | | |
8660 | 8660 | | |
8661 | 8661 | | |
| 8662 | + | |
8662 | 8663 | | |
8663 | 8664 | | |
8664 | 8665 | | |
8665 | 8666 | | |
8666 | 8667 | | |
8667 | 8668 | | |
8668 | 8669 | | |
| 8670 | + | |
8669 | 8671 | | |
8670 | 8672 | | |
8671 | 8673 | | |
| |||
8874 | 8876 | | |
8875 | 8877 | | |
8876 | 8878 | | |
| 8879 | + | |
| 8880 | + | |
8877 | 8881 | | |
8878 | 8882 | | |
8879 | 8883 | | |
| |||
8894 | 8898 | | |
8895 | 8899 | | |
8896 | 8900 | | |
| 8901 | + | |
8897 | 8902 | | |
8898 | 8903 | | |
8899 | 8904 | | |
| |||
10250 | 10255 | | |
10251 | 10256 | | |
10252 | 10257 | | |
| 10258 | + | |
10253 | 10259 | | |
10254 | 10260 | | |
10255 | 10261 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
63 | 63 | | |
64 | 64 | | |
65 | 65 | | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
Lines changed: 102 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
0 commit comments