Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.

Commit 4ee28e0

Browse files
lidelAlan Shaw
authored and
Alan Shaw
committed
fix(gateway): disable compression (#2245)
This is an alternative to #2227 that does not hit datastore twice. The underlying error was caused by multiple PassThrough/pipe calls. Turns out go-ipfs does not compress anything by default, so we can remove PassThrough responsible for streaming of compressed payload and fix the issue while keeping optimization introduced by buffer-peek-stream. Closes libp2p/js-libp2p#374 Closes libp2p/pull-mplex#13 License: MIT Signed-off-by: Marcin Rataj <[email protected]>
1 parent c7a9b16 commit 4ee28e0

File tree

2 files changed

+6
-20
lines changed

2 files changed

+6
-20
lines changed

src/http/gateway/resources/gateway.js

+1-19
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ log.error = debug('ipfs:http-gateway:error')
66

77
const fileType = require('file-type')
88
const mime = require('mime-types')
9-
const { PassThrough } = require('readable-stream')
109
const Boom = require('@hapi/boom')
1110
const Ammo = require('@hapi/ammo') // HTTP Range processing utilities
1211
const peek = require('buffer-peek-stream')
@@ -32,20 +31,6 @@ function detectContentType (path, chunk) {
3231
return mime.contentType(mimeType)
3332
}
3433

35-
// Enable streaming of compressed payload
36-
// https://github.com/hapijs/hapi/issues/3599
37-
class ResponseStream extends PassThrough {
38-
_read (size) {
39-
super._read(size)
40-
if (this._compressor) {
41-
this._compressor.flush()
42-
}
43-
}
44-
setCompressor (compressor) {
45-
this._compressor = compressor
46-
}
47-
}
48-
4934
module.exports = {
5035

5136
async handler (request, h) {
@@ -149,7 +134,6 @@ module.exports = {
149134
}
150135

151136
const rawStream = ipfs.catReadableStream(data.cid, catOptions)
152-
const responseStream = new ResponseStream()
153137

154138
// Pass-through Content-Type sniffing over initial bytes
155139
const { peekedStream, contentType } = await new Promise((resolve, reject) => {
@@ -163,9 +147,7 @@ module.exports = {
163147
})
164148
})
165149

166-
peekedStream.pipe(responseStream)
167-
168-
const res = h.response(responseStream).code(rangeResponse ? 206 : 200)
150+
const res = h.response(peekedStream).code(rangeResponse ? 206 : 200)
169151

170152
// Etag maps directly to an identifier for a specific version of a resource
171153
// and enables smart client-side caching thanks to If-None-Match

src/http/index.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,11 @@ class HttpApi {
8282
// TODO: shouldn't, fix this
8383
routes: {
8484
cors: true
85-
}
85+
},
86+
// Disable Compression
87+
// Why? Streaming compression in Hapi is not stable enough,
88+
// it requires bug-prone hacks such as https://github.com/hapijs/hapi/issues/3599
89+
compression: false
8690
})
8791
server.app.ipfs = ipfs
8892

0 commit comments

Comments
 (0)