1. 18 5月, 2020 1 次提交
  2. 20 1月, 2020 1 次提交
  3. 15 1月, 2020 1 次提交
  4. 10 12月, 2019 1 次提交
  5. 12 7月, 2019 1 次提交
  6. 28 5月, 2019 2 次提交
  7. 25 2月, 2019 1 次提交
  8. 16 1月, 2019 1 次提交
  9. 03 11月, 2018 1 次提交
  10. 19 9月, 2018 2 次提交
  11. 17 7月, 2018 1 次提交
  12. 27 2月, 2018 1 次提交
  13. 09 1月, 2018 1 次提交
    • T
      [FLINK-7903] [tests] Add flip6 build profile · 2d97cc18
      Till Rohrmann 提交于
      The flip6 build profile only runs the Flip-6 related test cases. Moreover,
      all Flip-6 related test cases are excluded when not running the flip6 build
      profile. This should reduce testing time when adding more and more Flip-6
      test cases.
      
      Include flink-test-utils-junit in all submodules to make the Category marker interfaces Flip6 and OldAndFlip6 available
      
      This closes #4889.
      2d97cc18
  14. 06 1月, 2018 1 次提交
  15. 22 11月, 2017 1 次提交
  16. 13 11月, 2017 1 次提交
    • N
      [FLINK-7973] Fix shading and relocating Hadoop for the S3 filesystems · 0e5fb0b7
      Nico Kruber 提交于
      - do not shade everything, especially not JDK classes!
      -> instead define include patterns explicitly
      - do not shade core Flink classes (only those imported from flink-hadoop-fs)
      - hack around Hadoop loading (unshaded/non-relocated) classes based on names in
        the core-default.xml by overwriting the Configuration class (we may need to
        extend this for the mapred-default.xml and hdfs-defaults.xml):
      -> provide a core-default-shaded.xml file with shaded class names and copy and
        adapt the Configuration class of the respective Hadoop version to load this
        file instead of core-default.xml.
      
      Add checkstyle suppression pattern for the Hadoop Configuration classes
      
      Also fix the (integration) tests not working because they tried to load the
      relocated classes which are apparently not available there
      
      Remove minimizeJar from shading of flink-s3-fs-presto because this was
      causing "java.lang.ClassNotFoundException:
      org.apache.flink.fs.s3presto.shaded.org.apache.commons.logging.impl.LogFactoryImpl"
      since these classes are not statically imported and thus removed when
      minimizing.
      
      Fix s3-fs-presto not shading org.HdrHistogram
      
      Fix log4j being relocated in the S3 fs implementations
      
      Add shading checks to travis
      0e5fb0b7
  17. 07 11月, 2017 1 次提交
  18. 04 11月, 2017 1 次提交
  19. 01 11月, 2017 1 次提交
  20. 14 10月, 2017 1 次提交
    • S
      [FLINK-5706] [file systems] Add S3 file systems without Hadoop dependencies · 991af365
      Stephan Ewen 提交于
      This adds two implementations of a file system that write to S3.
      Both are not actual re-implementations but wrap other implementations and shade dependencies.
      
      (1) A wrapper around Hadoop's s3a file system. By pulling a smaller dependency tree and
          shading all dependencies away, this keeps the appearance of Flink being Hadoop-free,
          from a dependency perspective.
      
      (2) The second S3 file system is from the Presto Project.
          Initial simple tests seem to indicate that it responds slightly faster
          and in a bit more lightweight manner to write/read/list requests, compared
          to the Hadoop s3a FS, but it has some semantical differences.
      
      This closes #4818
      991af365