Skip to content

Commit 3df0f1e

Browse files
committed
Remove Explore References from cdap-integration-tests
1 parent 06fd39f commit 3df0f1e

29 files changed

+3
-1891
lines changed

conf/ambari.json

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
"version": "6.0.0-1"
1212
},
1313
"cdap_site": {
14-
"explore.executor.container.memory.mb": "2048",
1514
"metrics.processor.memory.mb": "512",
1615
"security.keytab.path": "/etc/security/keytabs/${name}.headless.keytab",
1716
"security.authorization.extension.jar.path": "/opt/cdap/master/ext/security/cdap-ranger-binding-0.1.5.jar"

conf/cdap.json

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"config": {
33
"cdap": {
44
"cdap_site": {
5-
"explore.enabled": "true",
65
"cdap.ugi.cache.expiration.ms": "60000",
76
"cdap.http.client.read.timeout.ms":"120000",
87
"dataset.executor.container.memory.mb": "1024",

conf/distributed.json

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"config": {
33
"cdap": {
44
"cdap_site": {
5-
"explore.executor.container.memory.mb": "2048",
65
"metrics.processor.memory.mb": "512"
76
}
87
},

conf/singlenode.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
"metrics.memory.mb": "512",
77
"stream.container.memory.mb": "512",
88
"data.tx.memory.mb": "350",
9-
"log.saver.container.memory.mb": "768",
10-
"explore.executor.container.memory.mb": "1100"
9+
"log.saver.container.memory.mb": "768"
1110
}
1211
},
1312
"hadoop": {

integration-test-remote/src/test/java/io/cdap/cdap/app/etl/batch/ETLMapReduceTest.java

-398
Large diffs are not rendered by default.

integration-test-remote/src/test/java/io/cdap/cdap/app/etl/batch/HivePluginTest.java

-182
This file was deleted.

integration-test-remote/src/test/java/io/cdap/cdap/apps/appimpersonation/FileGeneratorApp.java

-7
Original file line numberDiff line numberDiff line change
@@ -77,18 +77,11 @@ public void configure() {
7777
if (config.resultPerms != null) {
7878
builder.setFilePermissions(config.resultPerms);
7979
}
80-
if (config.resultDatabase != null) {
81-
builder.setExploreDatabaseName(config.resultDatabase);
82-
}
8380

8481
createDataset(RAW, PartitionedFileSet.class, builder
8582
// Properties for file set
8683
.setInputFormat(TextInputFormat.class)
8784
.setOutputFormat(TextOutputFormat.class)
88-
// enable explore
89-
.setEnableExploreOnCreate(true)
90-
.setExploreFormat("text")
91-
.setExploreSchema("record STRING")
9285
.build());
9386
addWorker(new FileGeneratorWorker());
9487
}

integration-test-remote/src/test/java/io/cdap/cdap/apps/appimpersonation/FileProcessorApp.java

-4
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,6 @@ public void configure() {
6868
// Properties for file set
6969
.setInputFormat(TextInputFormat.class)
7070
.setOutputFormat(TextOutputFormat.class)
71-
// enable explore
72-
.setEnableExploreOnCreate(true)
73-
.setExploreFormat("text")
74-
.setExploreSchema("record STRING")
7571
.build());
7672
addWorkflow(new FileProcessWorkflow());
7773
addMapReduce(new FileProcessMapReduce());

integration-test-remote/src/test/java/io/cdap/cdap/apps/explore/dataset/CounterTable.java

-55
This file was deleted.

0 commit comments

Comments
 (0)