Huge difference in delta file size for x64
See original GitHub issueHi, I had been creating the installer for both the windows ia32 and x64 arch. For some reasons the delta file generated for my x64 architecture is too big.
For me: size of V1 ia32 = 43mb, v1 x64 = 96mb
This huge difference itself weird for me of same code base.
On V2 delta ia32 = 22kb, v2 delta x64 = 50mb
Can someone help me out?
var electronInstaller = require('electron-winstaller');
resultPromise = electronInstaller.createWindowsInstaller({
appDirectory: applicationDirectory,
outputDirectory: outDirectory,
authors: AuthurName,
setupExe: setupExeName,
noMsi: true,
exe: exeName,
remoteReleases:releaseURL
});
resultPromise.then(() => console.log("Installer created for "+ packageName + ' '+ channel +' '+platform),
(e) => console.log(`No dice: ${e.message}`));
Issue Analytics
- State:
- Created 7 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Unusual Delta output file size (Unsual comparing to the similar ...
When creating a delta from Ultimate Edition to Test Professional Edition, the delta file size is 160 MB. I tried the same process...
Read more >Configure Delta Lake to control data file size
The target file size is based on the current size of the Delta table. For tables smaller than 2.56 TB, the autotuned target...
Read more >version control - Binary Delta Storage - Stack Overflow
The smaller binary file (.85 GB) simply had data added to the end of it each time. The larger file (2.2GB) contains data...
Read more >Size on disc Win7 Ultimate x64 - TechNet - Microsoft
Win7 Ultimate x64 + Program Files (about 2.5GB worth of Program Files adding x32+x64) = 66GB total disc space used on a 232GB...
Read more >Large output file size after re-encoding - HydrogenAudio
2 build, about 20% larger file size is produced. Similar results are produced by the 2018/11 x64 1.3.2 build from rarewares.org as well....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@paulcbetts It was my problem… I was packaging the app in same folder which results in increase in the size of the package of x64 which packed after ia32. This ultimately chains for the problem for huge diff and stuffs. Sorry for disturb you guys… Appreciate your immediate response.
@mzmousa I package the app in the same
build folder
which creates the packaged app for ia32 inside my build folder itself… that y on packaging the x64 the file size got doubled.