Memory efficient message chunk processing using a XMLHttpRequest(使用 XMLHttpRequest 的内存高效消息块处理)
问题描述
我有一个 XMLHttpRequest
和一个 progress
事件处理程序,它正在请求一个连续发送添加消息块的分块页面.如果我没有设置 responseType
,我可以在每个 progress
事件中访问 XMLHttpRequest
的 response
属性,并且处理额外的消息块.这种方法的问题是浏览器必须将整个响应保存在内存中,最终浏览器会因为这种内存浪费而崩溃.
I have a XMLHttpRequest
with a progress
event handler that is requesting a chunked page which continuously sends adds message chunks. If I do not set a responseType
, I can access the response
property of the XMLHttpRequest
in each progress
event and handle the additional message chunk. The problem of this approach is that the browser must keep the entire response in memory, and eventually, the browser will crash due to this memory waste.
所以,我尝试了一个arraybuffer
的responseType
,希望可以对缓冲区进行切片,防止之前的内存浪费过多.不幸的是,此时 progress
事件处理程序不再能够读取 XMLHttpRequest
的 response
属性.progress
事件的事件参数也不包含缓冲区.这是我尝试的一个简短的、独立的示例(这是为 node.js
编写的):
So, I tried a responseType
of arraybuffer
in the hope that I can slice the buffer to prevent the previous excessive memory waste. Unfortunately, the progress
event handler is no longer capable of reading the response
property of the XMLHttpRequest
at this point. The event parameter of the progress
event does not contain the buffer, either. Here is a short, self-contained example of my attempt at this (this is written for node.js
):
progress
事件处理程序无法访问我想要的 response
.如何以节省内存的方式处理浏览器中的消息块?请不要建议 WebSocket
.我不希望只使用一个来处理消息块的只读流.
The progress
event handler has no access to the response
I wanted. How can I handle the message chunks in the browser in a memory-efficient way? Please do not suggest a WebSocket
. I do not wish to use one just to process a read-only stream of message chunks.
推荐答案
XMLHttpRequest
似乎并不是真正为这种用法而设计的.显而易见的解决方案是轮询,这是 XMLHttpRequest
的一种流行用法,但我猜你不想错过流中的数据,这些数据会在调用之间滑动.
XMLHttpRequest
doesn't seem really designed for this kind of usage. The obvious solution is polling, which is a popular use of XMLHttpRequest
but I'm guessing you don't want to miss data from your stream that would slip between the calls.
对于我的问题可以以某种方式识别真实"数据块还是基本上是随机数据?
,您回答了 通过一些努力,可以通过向服务器端添加各种事件 ID 来识别块
To my question Can the "real" data chunks be identified in some way or is it basically random data ?
, you answered With some effort, the chunks could be identified by adding an event-id of sorts to the server-side
基于这个前提,我提出:
Based on this premise, I propose:
- 连接流并设置进度监听器(简称
listenerA()
). - 当一个块到达时,处理它并输出它.保留对
listenerA()
收到的第一个和最后一个块的 id 的引用.计算listenerA()
收到了多少块. listenerA()
收到一定数量的块后,生成另一个线程"(连接 + 侦听器,listenerB()
)执行步骤 1 和 2与第一个并行,但将处理后的数据保存在缓冲区中而不是输出.- 当
listenerA()
接收到与listenerB()
接收到的第一个chunk id相同的chunk时,发送一个信号给listenerB()
,断开第一个连接并终止listenerA()
. - 当
listenerB()
接收到来自listenerA()
的终止信号时,将缓冲区转储到输出,继续正常处理. - 让
listenerB()
在与之前相同的条件下生成listenerC()
. - 根据需要不断重复使用尽可能多的连接和侦听器.
- Connect to the stream and set up the progress listener (referred to as
listenerA()
). - When a chunk arrives, process it and output it. Keep a reference to the ids of both the first and last chunk received by
listenerA()
. Count how many chunkslistenerA()
has received. - After
listenerA()
has received a certain amount of chunks, spawn another "thread" (connection + listener,listenerB()
) doing the steps 1 and 2 in parallel to the first one but keep the processed data in a buffer instead of outputting it. - When
listenerA()
receives the chunk with the same id as the first chunk received bylistenerB()
, send a signal tolistenerB()
, drop the first connection and killlistenerA()
. - When
listenerB()
receives the termination signal from thelistenerA()
, dump the buffer to the output and keep processing normally. - Have
listenerB()
spawnlistenerC()
on the same conditions as before. - Keep repeating with as many connections + listeners as necessary.
通过使用两个重叠的连接,您可以防止由于断开单个连接然后重新连接而可能导致的块丢失.
By using two overlapping connections, you can prevent the possible loss of chunks that would result from dropping a single connection and then reconnecting.
- 这假设所有连接的数据流都是相同的,并且不引入一些个性化设置.
- 根据流的输出速率和连接延迟,从一个连接转换到另一个连接期间的缓冲区转储可能会很明显.
- 您还可以衡量总响应大小而不是块数来决定何时切换到新连接.
- 可能需要保留一个完整的块 id 列表以进行比较,而不仅仅是第一个和最后一个,因为我们无法保证重叠的时间.
XMLHttpRequest
的responseType
必须设置为其默认值""
或"text",才能返回文本.其他数据类型不会返回部分response
.请参阅 https://xhr.spec.whatwg.org/#the-response-attribute
- This assumes the data stream is the same for all connections and doesn't introduce some individualized settings.
- Depending on the output rate of the stream and the connection delay, the buffer dump during the transition from one connection to another might be noticeable.
- You could also measure the total response size rather than the chunks count to decide when to switch to a new connection.
- It might be necessary to keep a complete list of chunks ids to compare against rather than just the first and last one because we can't guarantee the timing of the overlap.
- The
responseType
ofXMLHttpRequest
must be set to its default value of""
or "text", to return text. Other datatypes will not return a partialresponse
. See https://xhr.spec.whatwg.org/#the-response-attribute
以下代码是一个 node.js 服务器,它输出一致的元素流以用于测试目的.您可以打开到它的多个连接,输出将是相同的 accross 会话,减去可能的服务器延迟.
The following code is a node.js server that outputs a consistent stream of elements for testing purposes. You can open multiple connections to it, the output will be the same accross sessions, minus possible server lag.
http://localhost:5500/stream
将返回 id 为递增数字的数据
will return data where id is an incremented number
http://localhost:5500/streamRandom
将返回数据,其中 id 是一个随机的 40 个字符长的字符串.这是为了测试一个不能依赖 id 来排序数据的场景.
will return data where id is a random 40 characters long string. This is meant to test a scenario where the id can not be relied upon for ordering the data.
概念证明,使用上述 node.js 服务器代码
这篇关于使用 XMLHttpRequest 的内存高效消息块处理的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!