To build the Data Collector you will need the following software :
- Git 1.9+
- Oracle JDK 8+ (1.8, 11, or 14)
- Docker 1.10+ (required only if running integration tests, older versions may work but are not tested.)
- Maven 3.6.3+
- Node 0.10.32+1 (macOS,
brew install nodejs
: Linux, nodejs.org or Packages from NodeSource) - npm (macOS,
brew install nodejs
: Linux, nodejs.org or Packages from NodeSource) - bower 1.8.2 (macOS,
npm -g install bower
: Linux,sudo npm -g install bower
) - grunt-cli (macOS,
npm -g install grunt-cli
: Linux,sudo npm -g install grunt-cli
) - md5sum (macOS,
brew install md5sha1sum
)
brew cask install java<version>
# latest version (Java 14)
brew cask install java
# LTS version (Java 11)
brew cask install java11
Setup your JAVA_HOME path in your .zshrc or .bash_profile for your primary Java version and add an export for each installed Java version.
export JAVA_HOME=$(/usr/libexec/java_home -v11.8)
export JAVA_8_HOME=$(/usr/libexec/java_home -v1.8)
export JAVA_11_HOME=$(/usr/libexec/java_home -v11)
export JAVA_14_HOME=$(/usr/libexec/java_home -v14)
Add an alias to your .zshrc or .bash_profile for each installed Java version. The alias exports JAVA_HOME with the selected JAVA_VERSION_HOME.
alias java8='export JAVA_HOME=$JAVA_8_HOME'
alias java11='export JAVA_HOME=$JAVA_11_HOME'
alias java14='export JAVA_HOME=$JAVA_14_HOME'
If you're building master branch, then you need to install API and Plugin API modules to your maven cache first before compiling Data Collector. Released versions are published to public maven repositories and for them this step can be skipped.
-
You can do that by getting the latest code from Github
git clone http://github.com/streamsets/datacollector-api
and
git clone http://github.com/streamsets/datacollector-plugin-api
-
And install each of these to your local maven repository
mvn clean install -DskipTests
You also need the artifacts for datacollector-edge installed into your local maven repository.
-
Ensure you have the prerequisites listed for building datacollector-edge
-
Get the latest version of datacollector-edge from Github
git clone https://github.com/streamsets/datacollector-edge.git
-
Gradle is used in this project as a build tool, so in order to install it to your local maven repository execute:
./gradlew goClean dist publishToMavenLocal
Finally, get the latest Data Collector code from Github
git clone http://github.com/streamsets/datacollector
From within the Data Collector directory, execute:
mvn package -Pdist,ui -DskipTests
To start the Data Collector, execute:
dist/target/streamsets-datacollector-3.21.0-SNAPSHOT/streamsets-datacollector-3.21.0-SNAPSHOT/bin/streamsets dc
For Data Collector CLI, execute:
dist/target/streamsets-datacollector-3.21.0-SNAPSHOT/streamsets-datacollector-3.21.0-SNAPSHOT/bin/streamsets cli
To skip the RAT report during the build use the -DskipRat
option.
From within the Data Collector directory, execute:
mvn install -Pdist -DskipTests
Once the dependencies are installed, run the integration tests:
mvn failsafe:integration-test -DfailIfNoTests=false
In case you want to run a specific integration class (here the module basic-lib is executed with integration tests in 'HttpProcessorIT'):
mvn -pl basic-lib failsafe:integration-test -Dit.test="HttpProcessorIT" -DfailIfNoTests=false
From within the Data Collector directory, execute:
mvn clean package -Drelease -DskipTests -P-rpm
The release tarball will be created at:
release/target/streamsets-datacollector-all-3.21.0-SNAPSHOT-CATALOG.tgz
Extract the tarball to your preferred location :
tar xf streamsets-datacollector-all-3.21.0-SNAPSHOT-CATALOG.tgz
To start the DataCollector, execute:
streamsets-datacollector-all-3.21.0-SNAPSHOT-CATALOG/bin/streamsets dc
Extract the tarball to your preferred location :
tar xf streamsets-datacollector-all-3.21.0-SNAPSHOT.tgz
To start the DataCollector, execute:
streamsets-datacollector-all-3.21.0-SNAPSHOT/bin/streamsets dc
Recent changes in Node might cause the build to fail with an error similar to:
[INFO] --------------------------------------
[INFO] BOWER INSTALL
[INFO] --------------------------------------
[INFO] grunt version :
grunt-cli v1.2.0
grunt v0.4.5
[INFO] --------------------------------------
[INFO] GRUNT TEST --NO-COLOR
[INFO] --------------------------------------
grunt[12558]: ../src/node_contextify.cc:629:static void node::contextify::ContextifyScript::New(const FunctionCallbackInfo<v8::Value> &): Assertion `args[1]->IsString()' failed.
1: node::Abort() [/usr/local/bin/node]
2: node::MakeCallback(v8::Isolate*, v8::Local<v8::Object>, char const*, int, v8::Local<v8::Value>*, node::async_context) [/usr/local/bin/node]
3: node::contextify::ContextifyScript::New(v8::FunctionCallbackInfo<v8::Value> const&) [/usr/local/bin/node]
4: v8::internal::FunctionCallbackArguments::Call(v8::internal::CallHandlerInfo*) [/usr/local/bin/node]
5: v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<true>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments) [/usr/local/bin/node]
6: v8::internal::Builtin_Impl_HandleApiCall(v8::internal::BuiltinArguments, v8::internal::Isolate*) [/usr/local/bin/node]
Upgrade Node to the current version (at the time of writing, this was 10.7.0) and execute the following commands from the datacollector directory:
cd datacollector-ui
rm -rf node_modules
rm -rf package-lock.json
npm --force cache clean
npm install