You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@heron.apache.org by GitBox <gi...@apache.org> on 2022/02/17 04:16:12 UTC

[GitHub] [incubator-heron] thinker0 opened a new pull request #3772: Add legacy CentOS7

thinker0 opened a new pull request #3772:
URL: https://github.com/apache/incubator-heron/pull/3772


   As it is still used a lot in the legacy environment, a compiled CentOS 7 is required. CentOS 8 will be EOL...
   
   https://www.centos.org/centos-linux-eol/


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@heron.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-heron] nicknezis merged pull request #3772: Add legacy CentOS7

Posted by GitBox <gi...@apache.org>.
nicknezis merged pull request #3772:
URL: https://github.com/apache/incubator-heron/pull/3772


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@heron.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-heron] thinker0 commented on pull request #3772: Add legacy CentOS7

Posted by GitBox <gi...@apache.org>.
thinker0 commented on pull request #3772:
URL: https://github.com/apache/incubator-heron/pull/3772#issuecomment-1059761387


   ```
   % ./docker/scripts/test-unittest.sh centos 0.20.5
   Build label: 4.2.2
   Build target: bazel-out/k8-opt/bin/src/main/java/com/google/devtools/build/lib/bazel/BazelServer_deploy.jar
   Build time: Thu Dec 2 18:15:58 2021 (1638468958)
   Build timestamp: 1638468958
   Build timestamp as int: 1638468958
   Platform Linux
   Using C compiler          : /opt/rh/devtoolset-8/root/usr/bin/gcc (8.3.1)
   Using C++ compiler        : /opt/rh/devtoolset-8/root/usr/bin/g++ (8.3.1)
   Using C preprocessor      : /opt/rh/devtoolset-8/root/usr/bin/cpp (8.3.1)
   Using C++ preprocessor    : /opt/rh/devtoolset-8/root/usr/bin/cpp (8.3.1)
   Using linker              : /usr/bin/ld.bfd
   Using JDK                 : /usr/lib/jvm/java-11-openjdk
   Using Automake            : /usr/bin/automake (1.13.4)
   Using Autoconf            : /usr/bin/autoconf (2.69)
   Using Make                : /usr/bin/make (3.82)
   Using Python3             : /opt/rh/rh-python38/root/usr/bin/python3.8 (3.8.11)
   Using Libtool             : /usr/bin/libtool (2.4.2)
   Using archiver            : /usr/bin/ar
   Using coverage tool       : /usr/bin/gcov
   Using ant                 : /usr/bin/ant
   Using dwp                 : /usr/bin/dwp
   Using nm                  : /usr/bin/nm
   Using objcopy             : /usr/bin/objcopy
   Using objdump             : /usr/bin/objdump
   Using strip               : /usr/bin/strip
   
   INFO: Elapsed time: 1668.568s, Critical Path: 376.83s
   INFO: 3608 processes: 1160 internal, 2448 local.
   INFO: Build completed successfully, 3608 total actions
   Test cases: finished with 1189 passing and 0 failing out of 1189 test cases
   
   Executed 247 out of 247 tests: 247 tests pass.
   INFO: Build completed successfully, 3608 total actions
   Cleaning up scratch dir
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@heron.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-heron] thinker0 commented on pull request #3772: Add legacy CentOS7

Posted by GitBox <gi...@apache.org>.
thinker0 commented on pull request #3772:
URL: https://github.com/apache/incubator-heron/pull/3772#issuecomment-1042627139


   A Docker image is not required.
   
   However, there are users who need legacy beta-metal environments, so the centos7 part is needed.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@heron.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-heron] nicknezis commented on a change in pull request #3772: Add legacy CentOS7

Posted by GitBox <gi...@apache.org>.
nicknezis commented on a change in pull request #3772:
URL: https://github.com/apache/incubator-heron/pull/3772#discussion_r815280245



##########
File path: docker/compile/Dockerfile.centos7
##########
@@ -0,0 +1,66 @@
+#  Licensed to the Apache Software Foundation (ASF) under one
+#  or more contributor license agreements.  See the NOTICE file
+#  distributed with this work for additional information
+#  regarding copyright ownership.  The ASF licenses this file
+#  to you under the Apache License, Version 2.0 (the
+#  "License"); you may not use this file except in compliance
+#  with the License.  You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+#  Unless required by applicable law or agreed to in writing,
+#  software distributed under the License is distributed on an
+#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+#  KIND, either express or implied.  See the License for the
+#  specific language governing permissions and limitations
+#  under the License.
+
+FROM centos:centos7
+
+# This is passed to the heron build command via the --config flag
+ENV TARGET_PLATFORM linux
+

Review comment:
       ```suggestion
   
   ENV LC_ALL en_US.utf8
   
   ```




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@heron.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-heron] thinker0 edited a comment on pull request #3772: Add legacy CentOS7

Posted by GitBox <gi...@apache.org>.
thinker0 edited a comment on pull request #3772:
URL: https://github.com/apache/incubator-heron/pull/3772#issuecomment-1059761387


   ```
   % ./docker/scripts/test-unittest.sh centos7 0.20.5
   Build label: 4.2.2
   Build target: bazel-out/k8-opt/bin/src/main/java/com/google/devtools/build/lib/bazel/BazelServer_deploy.jar
   Build time: Thu Dec 2 18:15:58 2021 (1638468958)
   Build timestamp: 1638468958
   Build timestamp as int: 1638468958
   Platform Linux
   Using C compiler          : /opt/rh/devtoolset-8/root/usr/bin/gcc (8.3.1)
   Using C++ compiler        : /opt/rh/devtoolset-8/root/usr/bin/g++ (8.3.1)
   Using C preprocessor      : /opt/rh/devtoolset-8/root/usr/bin/cpp (8.3.1)
   Using C++ preprocessor    : /opt/rh/devtoolset-8/root/usr/bin/cpp (8.3.1)
   Using linker              : /usr/bin/ld.bfd
   Using JDK                 : /usr/lib/jvm/java-11-openjdk
   Using Automake            : /usr/bin/automake (1.13.4)
   Using Autoconf            : /usr/bin/autoconf (2.69)
   Using Make                : /usr/bin/make (3.82)
   Using Python3             : /opt/rh/rh-python38/root/usr/bin/python3.8 (3.8.11)
   Using Libtool             : /usr/bin/libtool (2.4.2)
   Using archiver            : /usr/bin/ar
   Using coverage tool       : /usr/bin/gcov
   Using ant                 : /usr/bin/ant
   Using dwp                 : /usr/bin/dwp
   Using nm                  : /usr/bin/nm
   Using objcopy             : /usr/bin/objcopy
   Using objdump             : /usr/bin/objdump
   Using strip               : /usr/bin/strip
   
   INFO: Elapsed time: 1668.568s, Critical Path: 376.83s
   INFO: 3608 processes: 1160 internal, 2448 local.
   INFO: Build completed successfully, 3608 total actions
   Test cases: finished with 1189 passing and 0 failing out of 1189 test cases
   
   Executed 247 out of 247 tests: 247 tests pass.
   INFO: Build completed successfully, 3608 total actions
   Cleaning up scratch dir
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@heron.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-heron] nicknezis commented on pull request #3772: Add legacy CentOS7

Posted by GitBox <gi...@apache.org>.
nicknezis commented on pull request #3772:
URL: https://github.com/apache/incubator-heron/pull/3772#issuecomment-1042625424


   Yes Centos 8 update was a short term solution to the Python issues. We should switch to use CentOS Stream, which is not EOL. https://quay.io/repository/centos/centos?tab=tags
   
   Other options are Rocky Linux and RHEL's UBI images. At work we are moving from Centos to RHEL and Rocky.
   
   Do we really need to add the Centos 7 Docker image? At this point, no one should be using a Centos 7 Heron image when there are better alternatives.  Is the desire to add it just for compilation testing?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@heron.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-heron] thinker0 edited a comment on pull request #3772: Add legacy CentOS7

Posted by GitBox <gi...@apache.org>.
thinker0 edited a comment on pull request #3772:
URL: https://github.com/apache/incubator-heron/pull/3772#issuecomment-1042627139


   A Docker image is not required.
   
   However, there are users who need legacy bere-metal environments, so the centos7 part is needed.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@heron.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-heron] thinker0 edited a comment on pull request #3772: Add legacy CentOS7

Posted by GitBox <gi...@apache.org>.
thinker0 edited a comment on pull request #3772:
URL: https://github.com/apache/incubator-heron/pull/3772#issuecomment-1042627139


   A Docker image is not required.
   
   However, there are users who need legacy bare-metal environments, so the centos7 part is needed.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@heron.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-heron] thinker0 commented on pull request #3772: Add legacy CentOS7

Posted by GitBox <gi...@apache.org>.
thinker0 commented on pull request #3772:
URL: https://github.com/apache/incubator-heron/pull/3772#issuecomment-1042786296


   #3773


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@heron.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-heron] nicknezis commented on pull request #3772: Add legacy CentOS7

Posted by GitBox <gi...@apache.org>.
nicknezis commented on pull request #3772:
URL: https://github.com/apache/incubator-heron/pull/3772#issuecomment-1042636469


   Ahh ok. For testing purposes then. Thanks. I still wonder if it's our responsibility to maintain the older image. We don't build all images in any automated tests. The docker images and documentation were horrible out of date when we did our recent "fix the build" effort. I think this is why I'm questioning the need for it. But if you know of specific customers that need it, and having the Dockerfile helps, and we will maintain it... then I guess it's ok. We'll see how well we do.
   
   We should also rename the `centos8` image to `rocky8`. Change the `FROM` line to `FROM rockylinux:8.5`. This will address the Centos 8 EOL concern. Then we'll have both Centos 7 and Rocky 8.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@heron.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org