ChudaykinAlex 9d191e82c0 GREATEST and LEAST (SQL:2023 - T054) (#8532) 9 mesi fa
..
license 6fd54c9871 Fix licenses urls , sourcecode tree is moved to SVN from CVS 13 anni fa
sql.extensions 9d191e82c0 GREATEST and LEAST (SQL:2023 - T054) (#8532) 9 mesi fa
Firebird_conf.txt 82da31ccfd Remove the WNET protocol (#7082) 4 anni fa
README.DiskSpaceAllocation 1b83fbc2c8 A bit better wording. 18 anni fa
README.IPv6 13aa5420f2 Allow to enforce IPv4 or IPv6 in URL-like connection string. 9 anni fa
README.NTSecurity df59a7a41a misc 18 anni fa
README.Optimizer.txt 854da4e241 Misc. 21 anni fa
README.SecureRemotePassword.html 77d6529b6c Doc cleanup 7 anni fa
README.Win32LibraryInstallation.txt 6a47a28ba0 More Win32 1.5 -> HEAD synchronisation. Updated documentation regarding gds32.dll and instclient.exe 22 anni fa
README.build.macosx.md b31d37b787 MacOS: build libicu and static libc++ using vcpkg. 2 anni fa
README.build.mingw.html f2b24d02ca Misc. 12 anni fa
README.build.msvc.html ee088c22e3 Rework messages processing, simplifying the build and avoiding store generated files in git. (#6958) 4 anni fa
README.build.posix.html a462bb86de Fix spelling (#8468) 10 mesi fa
README.coding.style 4ca32b84ec An additional related to previous commit 22 anni fa
README.connection_string_charset.txt 7a110f4be0 CORE-2929 - 'Invalid ESCAPE sequence' when connecting to the database 15 anni fa
README.connection_strings 5df7d8f197 Introduce ODS 14 for v6 (#8208) 1 anno fa
README.external_routines.txt 9e6a713f0f Misc. 16 anni fa
README.fb_cancel_operation 0b2a994c27 Misc 16 anni fa
README.fb_shutdown 618dbbde26 misc: fix spelling (#8496) 10 mesi fa
README.fbsvcmgr a14a2159b2 Implemented CORE-2197: added support for -nodbtriggers switch in gbak into services API 17 anni fa
README.garbage_collector 902671a044 Misc. 20 anni fa
README.gbak 4d22040f90 Fixed docs according to Adriano comments. 3 anni fa
README.incompatibilities.3to4.txt 44660f8680 Add section about sequences to README.incompatibilities.3to4.txt (CORE-6084 and CORE-6376). 5 anni fa
README.incompatibilities.txt f0c402b780 Fix spelling (#8476) 10 mesi fa
README.instsvc 08503e2be8 Update documentation for instsvc 18 anni fa
README.intl b68d1dfc0c Misc. 14 anni fa
README.isql_enhancements.txt 3f188ec758 Fix #8409 - Error message "SQL -104 / Unexpected end of command" appears in a trace log when 'SET AUTOTERM ON;' is used. 1 anno fa
README.makefiles e0662447cf misc: fix spelling (#8495) 10 mesi fa
README.modern_cpp.md 93acbd1aef Update allowed C++ version (#7654) 2 anni fa
README.monitoring_tables e0662447cf misc: fix spelling (#8495) 10 mesi fa
README.online_validation cc33027282 Misc. 10 anni fa
README.parallel_features c94d96b308 Improvement #7550 : Add support for -parallel in combination with gfix -icu 2 anni fa
README.performance_monitoring 59b235cea3 Small corrections 22 anni fa
README.plugins.html 5df7d8f197 Introduce ODS 14 for v6 (#8208) 1 anno fa
README.providers.html 5df7d8f197 Introduce ODS 14 for v6 (#8208) 1 anno fa
README.raw_devices b3c33aeeb6 Renamed aliases.conf to databases.conf as suggested by Dmitry 13 anni fa
README.read_consistency.md 6217a01583 Update documentation. 5 anni fa
README.read_password_from_file 010c3a8bd5 Remove QLI. (#6840) 4 anni fa
README.replication.md a39e0cc94e Misc 2 anni fa
README.security_database.txt 875f0a25a3 New release version in scripts 2 anni fa
README.services_extension 4ab49be70c Improvement #7186 : FB4 Nbackup RDB$BACKUP_HISTORY issue 3 anni fa
README.session_idle_timeouts edcac34f81 Update docs after fix for CORE-5508 8 anni fa
README.sha1 a749151080 Correct some files to refer to FB2 and security2.fdb 21 anni fa
README.statement_timeouts edcac34f81 Update docs after fix for CORE-5508 8 anni fa
README.superclassic cec668d7fd Misc. 17 anni fa
README.trace_services e8765cfb7a Update docs 1 anno fa
README.transaction_at_snapshot.md cfbcbeda3c Make it possible to start multiple transactions using the same initial transaction snapshot - CORE-6018 (#193) 7 anni fa
README.trusted_authentication abde3b2cad Misc. 10 anni fa
README.user.embedded c3c18f0978 Misc. 15 anni fa
README.user.troubleshooting cd010ff939 Misc 17 anni fa
README.wire.compression.html 11c452251d Make zlib allocate memory from our pool 11 anni fa
README.xnet c5c49d5e5e Added description of XNET. 20 anni fa
Using_OO_API.html 658abd2044 Fixed #8429: Segfault when already destroyed callback interface is used 1 anno fa
ambiguity.txt 89af0c2a66 Little corrections. 21 anni fa
install_windows_manually.txt 9f2b20df1e remove version mention, split database init to seperate doc 5 anni fa
ods11-index-structure.html 4569af61eb ODS11 index structure description 21 anni fa

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,