|
53 | 53 |
|
54 | 54 |
|
55 | 55 | /** |
56 | | - * ILP v4 WebSocket client sender for streaming data to QuestDB. |
| 56 | + * QWP v1 WebSocket client sender for streaming data to QuestDB. |
57 | 57 | * <p> |
58 | 58 | * This sender uses a double-buffering scheme with asynchronous I/O for high throughput: |
59 | 59 | * <ul> |
@@ -123,7 +123,7 @@ public class QwpWebSocketSender implements Sender { |
123 | 123 | // Auto-flush configuration |
124 | 124 | private final int autoFlushRows; |
125 | 125 | private final Decimal256 currentDecimal256 = new Decimal256(); |
126 | | - // Encoder for ILP v4 messages |
| 126 | + // Encoder for QWP v1 messages |
127 | 127 | private final QwpWebSocketEncoder encoder; |
128 | 128 | // Global symbol dictionary for delta encoding |
129 | 129 | private final GlobalSymbolDictionary globalSymbolDictionary; |
@@ -1088,7 +1088,7 @@ private void failExpectedIfNeeded(long expectedSequence, LineSenderException err |
1088 | 1088 |
|
1089 | 1089 | /** |
1090 | 1090 | * Flushes pending rows by encoding and sending them. |
1091 | | - * Each table's rows are encoded into a separate ILP v4 message and sent as one WebSocket frame. |
| 1091 | + * Each table's rows are encoded into a separate QWP v1 message and sent as one WebSocket frame. |
1092 | 1092 | */ |
1093 | 1093 | private void flushPendingRows() { |
1094 | 1094 | if (pendingRowCount <= 0) { |
@@ -1139,7 +1139,7 @@ private void flushPendingRows() { |
1139 | 1139 | QwpBufferWriter buffer = encoder.getBuffer(); |
1140 | 1140 |
|
1141 | 1141 | // Copy to microbatch buffer and seal immediately |
1142 | | - // Each ILP v4 message must be in its own WebSocket frame |
| 1142 | + // Each QWP v1 message must be in its own WebSocket frame |
1143 | 1143 | activeBuffer.ensureCapacity(messageSize); |
1144 | 1144 | activeBuffer.write(buffer.getBufferPtr(), messageSize); |
1145 | 1145 | activeBuffer.incrementRowCount(); |
|
0 commit comments