You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/docs/asciidoc/release_notes.adoc
+18-1Lines changed: 18 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,9 @@ For known issues, consult <<known-issues>>.
37
37
38
38
The following was fixed or changed since Jaybird 6.0.0:
39
39
40
-
* ...
40
+
* Improvement: backported deferred blob open optimization from Jaybird 7 (https://github.com/FirebirdSQL/jaybird/issues/842[#842])
41
+
+
42
+
See also <<blob-performance-defer-open>>.
41
43
42
44
=== Jaybird 6.0.0
43
45
@@ -774,6 +776,21 @@ If the length is larger than the maximum segment size, or if the offset is non-z
774
776
775
777
Similar to the improvements for reading, we were also able to realise some other optimizations (in both pure Java and JNA), by avoiding allocation of a number of intermediate objects, but this has only marginal effects on the throughput.
776
778
779
+
[#blob-performance-defer-open]
780
+
==== Deferred blob open
781
+
782
+
Added in: Jaybird 6.0.1, backported from Jaybird 7
783
+
784
+
In the pure Java implementation, performance of reading and writing blobs was improved by deferring the server-side opening or creating of a blob until an actual server-side operation (putting or getting a segment, or getting blob info).
785
+
The open or create blob request is pipelined with the subsequent operation, avoiding a round trip to the server.
786
+
This is especially noticeable in connections with high latency.
787
+
788
+
Artificial testing on local WiFi with small blobs shows around 85% increase in throughput (comparing a 6.0.1-SNAPSHOT against 6.0.0).
789
+
790
+
This optimization is available for Firebird 2.1 and higher, but formally only supported for Firebird 3.0 and higher.
791
+
792
+
For native connections, a similar optimization -- but only for reading blobs -- is available when using a Firebird 5.0.2 or higher fbclient, independent of the Jaybird version.
0 commit comments