improve examples‘s makefile, Reduce the disk usage of binary files#13267
improve examples‘s makefile, Reduce the disk usage of binary files#13267y123456yz wants to merge 2 commits intofacebook:mainfrom
Conversation
|
Hi @y123456yz! Thank you for your pull request and welcome to our community. Action RequiredIn order to merge any pull request (code, docs, etc.), we require contributors to sign our Contributor License Agreement, and we don't seem to have one on file for you. ProcessIn order for us to review and merge your suggested changes, please sign at https://code.facebook.com/cla. If you are contributing on behalf of someone else (eg your employer), the individual CLA may not be sufficient and your employer may need to sign the corporate CLA. Once the CLA is signed, our tooling will perform checks and validations. Afterwards, the pull request will be tagged with If you have received this in error or have any questions, please contact us at cla@meta.com. Thanks! |
|
I have signed the CLA |
Background:
A server machine with limited disk space is prone to being filled up easily
befor this PR:
[root@localhost examples]# du -sh * | grep _example | grep M
249M column_families_example
249M compact_files_example
249M compaction_filter_example
279M c_simple_example
252M optimistic_transaction_example
250M options_file_example
256M rocksdb_backup_restore_example
249M simple_example
249M transaction_example
after this PR:
[root@localhost examples]# du -sh * | grep _example | grep M
7.9M column_families_example
7.9M compact_files_example
7.9M compaction_filter_example
8.8M c_simple_example
7.9M optimistic_transaction_example
8.0M options_file_example
8.2M rocksdb_backup_restore_example
7.9M simple_example
7.9M transaction_example