phiresky

Results 402 comments of phiresky

Same for me. When rerunning it gets a little further, then stops with the same error

I thought deleting the cache db and using the newest git version while not interrupting scanning fixes it, but still the same: ![img](http://i.imgur.com/pr3ZLiY.png)

I've not seen that error before.. Could you set env `SQLITE_ZSTD_LOG=debug` and run it again to see better what the dictionary training params are? Maybe the target dict size is...

Ah you're probably hitting this error case: https://github.com/facebook/zstd/blob/eadb6c874f9d0c9e90c835f8b0181da802361e4c/lib/dictBuilder/fastcover.c#L328 Where the max training size is 1GB or 4GB. Try setting `"train_dict_samples_ratio": 5` in the config json

In general it should work, but I don't know if you need to tweak any settings for compiling zstd or something.

Great! Would be neat if you could post some info about it since it also might be interesting for other cross-compiling adventures. If you're willing to say, I'd also be...

As a workaround, doing this: ```ts new ImageminPlugin({ ... gifsicle: null }), ``` with package.json: ```json "resolutions": { "gifsicle": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.0.2.tgz" } ``` works (or alternatively create a dir with an...

Yf Am 28.10.2015 15:11 schrieb "RaniemAR" [email protected]: > When I am calling the code I am getting this error: > > Outputs will be scaled by mean and standard deviation...

I can confirm that changing the above code to `snapshot.forEach(doc => result.push({...id: doc.id, doc.data()})) ` fixes the issue