Vlad Khorsun d3d70475b8 Fixed bug #8168 : MAKE_DBKEY bug after backup/restore 1 year ago
..
license 6fd54c9871 Fix licenses urls , sourcecode tree is moved to SVN from CVS 13 years ago
sql.extensions d3d70475b8 Fixed bug #8168 : MAKE_DBKEY bug after backup/restore 1 year ago
Firebird_conf.txt 82da31ccfd Remove the WNET protocol (#7082) 4 years ago
README.DiskSpaceAllocation 1b83fbc2c8 A bit better wording. 18 years ago
README.IPv6 13aa5420f2 Allow to enforce IPv4 or IPv6 in URL-like connection string. 9 years ago
README.NTSecurity df59a7a41a misc 18 years ago
README.Optimizer.txt 854da4e241 Misc. 21 years ago
README.SecureRemotePassword.html 77d6529b6c Doc cleanup 7 years ago
README.Win32LibraryInstallation.txt 6a47a28ba0 More Win32 1.5 -> HEAD synchronisation. Updated documentation regarding gds32.dll and instclient.exe 22 years ago
README.build.macosx.md b31d37b787 MacOS: build libicu and static libc++ using vcpkg. 2 years ago
README.build.mingw.html f2b24d02ca Misc. 12 years ago
README.build.msvc.html ee088c22e3 Rework messages processing, simplifying the build and avoiding store generated files in git. (#6958) 4 years ago
README.build.posix.html ad327ed8b9 Update FreeBSD section for trunk in doc/README.build.posix.html 11 years ago
README.coding.style 4ca32b84ec An additional related to previous commit 22 years ago
README.connection_string_charset.txt 7a110f4be0 CORE-2929 - 'Invalid ESCAPE sequence' when connecting to the database 15 years ago
README.connection_strings 82da31ccfd Remove the WNET protocol (#7082) 4 years ago
README.external_routines.txt 9e6a713f0f Misc. 16 years ago
README.fb_cancel_operation 0b2a994c27 Misc 16 years ago
README.fb_shutdown ce41588da2 Enhanced docs on fb_shutdown_callback() 8 years ago
README.fbsvcmgr a14a2159b2 Implemented CORE-2197: added support for -nodbtriggers switch in gbak into services API 17 years ago
README.garbage_collector 902671a044 Misc. 20 years ago
README.gbak 4d22040f90 Fixed docs according to Adriano comments. 3 years ago
README.incompatibilities.3to4.txt 44660f8680 Add section about sequences to README.incompatibilities.3to4.txt (CORE-6084 and CORE-6376). 5 years ago
README.incompatibilities.txt 89ec718d3b Updated docs. 12 years ago
README.instsvc 08503e2be8 Update documentation for instsvc 18 years ago
README.intl b68d1dfc0c Misc. 14 years ago
README.isql_enhancements.txt a4c6a4db1c Some misc corrections per Adriano comments and documentations. 3 years ago
README.makefiles 4a80dfe3a8 Note for POSIX builders 19 years ago
README.modern_cpp.md a713260133 Update README.modern_cpp.md. 4 years ago
README.monitoring_tables cb104a6dec Update the docs 3 years ago
README.online_validation cc33027282 Misc. 10 years ago
README.parallel_features c94d96b308 Improvement #7550 : Add support for -parallel in combination with gfix -icu 2 years ago
README.performance_monitoring 59b235cea3 Small corrections 22 years ago
README.plugins.html 72a042660b Update documentation - sample of plugin was renamed 4 years ago
README.providers.html 337ef7707d Adjust docs and CMake build re. new engine name. 9 years ago
README.raw_devices b3c33aeeb6 Renamed aliases.conf to databases.conf as suggested by Dmitry 13 years ago
README.read_consistency.md 6217a01583 Update documentation. 5 years ago
README.read_password_from_file 010c3a8bd5 Remove QLI. (#6840) 4 years ago
README.replication.md b6e92f2c96 Backport the doc update 2 years ago
README.security_database.txt eac0f27e12 Renamed the package and the security database to v5 4 years ago
README.services_extension 4ab49be70c Improvement #7186 : FB4 Nbackup RDB$BACKUP_HISTORY issue 3 years ago
README.session_idle_timeouts edcac34f81 Update docs after fix for CORE-5508 8 years ago
README.sha1 a749151080 Correct some files to refer to FB2 and security2.fdb 21 years ago
README.statement_timeouts edcac34f81 Update docs after fix for CORE-5508 8 years ago
README.superclassic cec668d7fd Misc. 17 years ago
README.trace_services bf12d2adc5 Update docs 1 year ago
README.transaction_at_snapshot.md cfbcbeda3c Make it possible to start multiple transactions using the same initial transaction snapshot - CORE-6018 (#193) 7 years ago
README.trusted_authentication abde3b2cad Misc. 10 years ago
README.user.embedded c3c18f0978 Misc. 15 years ago
README.user.troubleshooting cd010ff939 Misc 17 years ago
README.wire.compression.html 11c452251d Make zlib allocate memory from our pool 11 years ago
README.xnet c5c49d5e5e Added description of XNET. 20 years ago
Using_OO_API.html 96164aba77 Docs 3 years ago
ambiguity.txt 89af0c2a66 Little corrections. 21 years ago
install_windows_manually.txt 9f2b20df1e remove version mention, split database init to seperate doc 5 years ago
ods11-index-structure.html 4569af61eb ODS11 index structure description 21 years ago

README.DiskSpaceAllocation


Since the beginning, Firebird had no rules of how to allocate disk space
for database file(s). It just writes new allocated pages in not determined
order (because of dependencies between pages to serve "careful write" strategy).

This approach is very simple but has some drawbacks :

- because of not determined order of writes, there may be such situation when
page cache contains many dirty pages at time when new allocated page must be
written but can't because out of disk space. In such cases often all other
dirty pages are lost because administrators prefer to shutdown database
before making some space on disk available. This leads to serious corruptions.

- allocating disk space by relatively small chunks may lead to significant file
fragmentation at file system level and reduce performance of large scans (for
example during backup).


Using new ODS 11.1, Firebird changes its disk space allocation algorithm to
avoid corruptions in out of disk space conditions and to give the file system a
chance to avoid fragmentation. These changes are described below.

a) Every newly allocated page is written on disk immediately before returning to
the engine. If page can't be written then allocation doesn't happen, PIP bit
is not cleared and appropriate IO error is raised. This error can't lead to
corruptions as we have a guarantee that all dirty pages in cache have disk
space allocated and can be written safely.

This change makes one additional write of every newly allocated page compared
with old behavior. So performance penalty is expected during the database file
growth. To reduce this penalty Firebird groups writes of newly allocated pages
up to 128KB at a time and tracks number of "initialized" pages at PIP header.

Note : newly allocated page will be written to disk twice only if this page
is allocated first time. I.e. if page was allocated, freed and allocated again
it will not be written twice on second allocation.

b) To avoid file fragmentation, Firebird used appropriate file system's API to
preallocate disk space by relatively large chunks. Currently such API exists
only in Windows but it was recently added into Linux API and may be implemented
in such popular file system's as ext2, etc in the future. So this feature is
currently implemented only in Windows builds of Firebird and may be implemented
in Linux builds in the future.

For better control of disk space preallocation, new setting in Firebird.conf
was introduced : DatabaseGrowthIncrement. This is upper bound of preallocation
chunk size in bytes. Default value is 128MB. When engine needs more disk space
it allocates 1/16th of already allocated space but no less than 128KB and no more
than DatabaseGrowthIncrement value. If DatabaseGrowthIncrement is set to zero then
preallocation is disabled. Space for database shadow files is not preallocated.
Also preallocation is disabled if "No reserve" option is set for database.

Note : preallocation also allows to avoid corruptions in out of disk space
condition - in such case there is a big chance that database has enough space
preallocated to operate until administrator makes some disk space available.


Author: Vlad Khorsun,