Skip to content
This repository has been archived by the owner on Mar 10, 2023. It is now read-only.

Commit

Permalink
centos7: resolve page size issue on ARM64 (#29)
Browse files Browse the repository at this point in the history
* centos7: add jemalloc configure for page size

Signed-off-by: Patrick Stephens <[email protected]>

* readme: add deprecation notice

Signed-off-by: Patrick Stephens <[email protected]>
  • Loading branch information
patrick-stephens authored Mar 21, 2022
1 parent c25c9d8 commit 6687f79
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Fluent Bit Packaging

---
**IMPORTANT**

This repository is deprecated and only used for 1.8 builds of Fluent Bit.
More recent builds use [equivalent functionality](https://github.com/fluent/fluent-bit/tree/master/packaging) in the official Fluent Bit repo.

---

This repository contains Docker files used to build [Fluent Bit](http://fluentbit.io) Linux packages for different distros, the following table describe the supported targets:

| Distro | Version / Code Name | Arch | Target Option |
Expand Down
1 change: 1 addition & 0 deletions distros/centos/7.arm64v8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ RUN cd /tmp && \
cmake3 -DCMAKE_INSTALL_PREFIX=/opt/td-agent-bit/ -DCMAKE_INSTALL_SYSCONFDIR=/etc/ \
-DFLB_RELEASE=On -DFLB_TRACE=On -DFLB_TD=On \
-DFLB_SQLDB=On -DFLB_HTTP_SERVER=On \
-DFLB_JEMALLOC_OPTIONS="--with-lg-page=16 --with-lg-quantum=3" \
-DFLB_OUT_KAFKA=On ../

CMD cd "/tmp/fluent-bit-${FLB_VERSION}/build/" && make -j 4 && cpack3 -G RPM && cp *.rpm /output/
1 change: 1 addition & 0 deletions distros/centos/8.arm64v8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ RUN cd /tmp && \
cmake3 -DCMAKE_INSTALL_PREFIX=/opt/td-agent-bit/ -DCMAKE_INSTALL_SYSCONFDIR=/etc/ \
-DFLB_RELEASE=On -DFLB_TRACE=On -DFLB_TD=On \
-DFLB_SQLDB=On -DFLB_HTTP_SERVER=On \
-DFLB_JEMALLOC_OPTIONS="--with-lg-page=16 --with-lg-quantum=3" \
-DFLB_OUT_KAFKA=On ../

CMD cd "/tmp/fluent-bit-${FLB_VERSION}/build/" && make -j 2 && cpack -G RPM && cp *.rpm /output/

0 comments on commit 6687f79

Please sign in to comment.