File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ All notable changes to this project will be documented in this file.
72
72
- hive: Fix compilation of x86 in CI due to lower disk usage to prevent disk running full ([ #619 ] ).
73
73
- hive: Provide logging dependency previously bundled with the hadoop yarn client ([ #688 ] ).
74
74
- all: Use correct hbase versions ([ #734 ] )
75
+ - airflow: fix missing libstdc++.so.6 error message when running the image ([ #778 ] )
75
76
76
77
### Removed
77
78
@@ -137,6 +138,7 @@ All notable changes to this project will be documented in this file.
137
138
[ #768 ] : https://github.com/stackabletech/docker-images/pull/768
138
139
[ #771 ] : https://github.com/stackabletech/docker-images/pull/771
139
140
[ #777 ] : https://github.com/stackabletech/docker-images/pull/777
141
+ [ #778 ] : https://github.com/stackabletech/docker-images/pull/778
140
142
141
143
## [ 24.3.0] - 2024-03-20
142
144
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ COPY airflow/licenses /licenses
78
78
79
79
# Update image and install python
80
80
RUN microdnf update && \
81
- microdnf install \
81
+ microdnf install \
82
82
ca-certificates \
83
83
cyrus-sasl \
84
84
git \
Original file line number Diff line number Diff line change @@ -34,7 +34,9 @@ set -euo pipefail
34
34
# The side effect of this is slightly (in the range of 100s of milliseconds) slower load for any
35
35
# binary started and a little memory used for Heap allocated by initialization of libstdc++
36
36
# This overhead is not happening for binaries that already link dynamically libstdc++
37
- LD_PRELOAD=" /usr/lib/$( uname -m) -linux-gnu/libstdc++.so.6"
37
+ # LD_PRELOAD="/usr/lib/$(uname -m)-linux-gnu/libstdc++.so.6"
38
+ # Stackable: The path to this file is different on UBI
39
+ LD_PRELOAD=/usr/lib64/libstdc++.so.6
38
40
export LD_PRELOAD
39
41
40
42
function run_check_with_retries {
You can’t perform that action at this time.
0 commit comments