Apache Gobblin (incubating) 0.13.0
[GOBBLIN-556] Gobblin AvroUtils reads and writes UTF rather than chars[]

Closes #2417 from erwa/gobblin-556-read-write-utf
2 files changed
tree: 73d89132c6f9cbe8f96eca974d483a796de497c8
  1. .github/
  2. bin/
  3. buildSrc/
  4. conf/
  5. config/
  6. dev/
  7. gobblin-admin/
  8. gobblin-api/
  9. gobblin-audit/
  10. gobblin-aws/
  11. gobblin-cluster/
  12. gobblin-compaction/
  13. gobblin-config-management/
  14. gobblin-core/
  15. gobblin-core-base/
  16. gobblin-data-management/
  17. gobblin-distribution/
  18. gobblin-docker/
  19. gobblin-docs/
  20. gobblin-example/
  21. gobblin-hive-registration/
  22. gobblin-metastore/
  23. gobblin-metrics-libs/
  24. gobblin-modules/
  25. gobblin-oozie/
  26. gobblin-rest-service/
  27. gobblin-restli/
  28. gobblin-runtime/
  29. gobblin-runtime-hadoop/
  30. gobblin-salesforce/
  31. gobblin-service/
  32. gobblin-test/
  33. gobblin-test-harness/
  34. gobblin-test-utils/
  35. gobblin-tunnel/
  36. gobblin-utility/
  37. gobblin-yarn/
  38. gradle/
  39. ligradle/
  40. maven-nexus/
  41. maven-sonatype/
  42. travis/
  43. .gitignore
  44. .travis.yml
  45. build.gradle
  46. CHANGELOG.md
  47. defaultEnvironment.gradle
  48. DISCLAIMER
  49. gobblin-flavored-build.gradle
  50. gradle.properties
  51. gradlew
  52. gradlew.bat
  53. HEADER
  54. LICENSE
  55. mkdocs.yml
  56. NOTICE
  57. query_github_issues.py
  58. README.md
  59. readthedocs.yml
  60. settings.gradle
README.md

Apache Gobblin Build Status Documentation Status

Apache Gobblin is a universal data ingestion framework for extracting, transforming, and loading large volume of data from a variety of data sources, e.g., databases, rest APIs, FTP/SFTP servers, filers, etc., onto Hadoop. Apache Gobblin handles the common routine tasks required for all data ingestion ETLs, including job/task scheduling, task partitioning, error handling, state management, data quality checking, data publishing, etc. Gobblin ingests data from different data sources in the same execution framework, and manages metadata of different sources all in one place. This, combined with other features such as auto scalability, fault tolerance, data quality assurance, extensibility, and the ability of handling data model evolution, makes Gobblin an easy-to-use, self-serving, and efficient data ingestion framework.

Requirements

  • Java >= 1.8
  • gradle-wrapper.jar version 2.13

If building the distribution with tests turned on:

  • Maven version 3.5.3

Instructions to download gradle wrapper

Run the following command for downloading the gradle-wrapper.jar from Gobblin git repository to gradle/wrapper directory.

wget --no-check-certificate -P gradle/wrapper https://github.com/apache/incubator-gobblin/raw/0.12.0/gradle/wrapper/gradle-wrapper.jar (or) curl --insecure -L https://github.com/apache/incubator-gobblin/raw/0.12.0/gradle/wrapper/gradle-wrapper.jar > gradle/wrapper/gradle-wrapper.jar

Alternatively, you can download it manually from: https://github.com/apache/incubator-gobblin/blob/0.12.0/gradle/wrapper/gradle-wrapper.jar

Make sure that you download it to gradle/wrapper directory.

Instructions to run Apache RAT (Release Audit Tool)

  1. Extract the archive file to your local directory.
  2. Download gradle-wrapper.jar (version 2.13) and place it in the gradle/wrapper folder. See ‘Instructions to download gradle wrapper’ above.
  3. Run ./gradlew rat. Report will be generated under build/rat/rat-report.html

Instructions to build the distribution

  1. Extract the archive file to your local directory.
  2. Download gradle-wrapper.jar (version 2.13) and place it in the gradle/wrapper folder. See ‘Instructions to download gradle wrapper’ above.
  3. Skip tests and build the distribution: Run ./gradlew build -x findbugsMain -x test -x rat -x checkstyleMain The distribution will be created in build/gobblin-distribution/distributions directory. (or)
  4. Run tests and build the distribution (requires Maven): Run ./gradlew build The distribution will be created in build/gobblin-distribution/distributions directory.

Quick Links

  • Documentation: Check out the Gobblin documentation for a complete description of Gobblin's features
  • Powered By: Check out the list of companies known to use Gobblin
  • Architecture: The Gobblin Architecture page has a full explanation of Gobblin's architecture
  • Getting Started with Gobblin: Refer to the Getting Started Guide on how to get started with Gobblin
  • Building Gobblin (from master branch): Refer to the page Building Gobblin for directions on how to build Gobblin
  • Javadocs: The full JavaDocs for each released version of Gobblin can be found here
  • Gobblin chat room: Gitter chat room for Gobblin developers and users here