Skip to content

Commit

Permalink
IMPLY-3544 hdfs fix (#1)
Browse files Browse the repository at this point in the history
* IMPLY-4472 hdfs fix attempt [2]

* IMPLY-4472 remove another extension

* IMPLY-4472 quotes fix

* IMPLY-3544 string space fix

* IMPLY-3544 parameter fix
  • Loading branch information
viatcheslavmogilevsky authored Sep 28, 2020
1 parent d5ee5b7 commit 28a73e9
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -540,15 +540,14 @@ def hdfsDeepStorageTests = { stageName, jdkVersion, envMap ->
integrationTestsWrapper(stageName, jdkVersion, envMap) {
writeFile file: "${WORKSPACE}/jenkins/hdfs-config", text: "druid_storage_type=hdfs\n" +
"druid_storage_storageDirectory=/druid/segments\n" +
"druid_extensions_loadList=[\"druid-hdfs-storage\", \"druid-parquet-extensions\", \"druid-orc-extensions\"]\n" +
"druid_extensions_loadList=[\"druid-hdfs-storage\"]\n" +
"druid_indexer_logs_type=hdfs\n" +
"druid_indexer_logs_directory=/druid/indexing-logs"
sh script: """
${MVN_OPTS}
${MVN} verify -P integration-tests -pl integration-tests \
-Dgroups=hdfs-deep-storage -Dstart.hadoop.docker=true \${JVM_RUNTIME} -Doverride.config.path=${WORKSPACE}/jenkins/hdfs-config -Dextra.datasource.name.suffix='' -Dit.test=ITHdfsToHdfsParallelIndexTest \
-ff ${MAVEN_SKIP} -Djacoco.skip=true
""", label: "hdfs-deep-storage with ${env.JVM_RUNTIME}"
sh script: MVN_OPTS + "\n" + MVN +
' verify -P integration-tests -pl integration-tests' +
" -Doverride.config.path=${WORKSPACE}/jenkins/hdfs-config" +
' -Dgroups=hdfs-deep-storage -Dstart.hadoop.docker=true ${JVM_RUNTIME} -Ddruid.test.config.extraDatasourceNameSuffix="" -Dit.test=ITHdfsToHdfsParallelIndexTest' +
" -ff ${MAVEN_SKIP} -Djacoco.skip=true", label: "hdfs-deep-storage with ${env.JVM_RUNTIME}"
}
}

Expand Down

0 comments on commit 28a73e9

Please sign in to comment.