Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 53 additions & 0 deletions dac/ui-lib/icons/dremio/sources/VAST-Data.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
55 changes: 55 additions & 0 deletions dac/ui/src/art/sources/VAST-Data.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions dac/ui/src/constants/sourceTypes.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export const REDSHIFT = "REDSHIFT";
export const S3 = "S3";
export const ELASTIC = "ELASTIC";
export const HBASE = "HBASE";
export const VASTDATA = "VASTDATA";
export const HDFS = "HDFS";
export const HIVE = "HIVE";
export const HIVE3 = "HIVE3";
Expand Down Expand Up @@ -59,6 +60,7 @@ export const sourceProperties = [
{ label: "Amazon OpenSearch Service", sourceType: AMAZONELASTIC },
{ label: "Elasticsearch", sourceType: ELASTIC },
{ label: "HBase", sourceType: HBASE, beta: true },
{ label: "VASTDATA", sourceType: VASTDATA, beta: true },
{ label: "HDFS", sourceType: HDFS },
{ label: "Hive 2.x", sourceType: HIVE },
{ label: "Hive 3.x", sourceType: HIVE3 },
Expand Down
1 change: 1 addition & 0 deletions dac/ui/src/customData/vlhfList.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[
{ "sourceType": "HBASE", "tags": ["community"] },
{ "sourceType": "VASTDATA", "tags": ["community"] },
{ "sourceType": "TERADATA" },
{ "sourceType": "CASSANDRA", "disabled": true },
{ "sourceType": "SALESFORCE", "disabled": true },
Expand Down
16 changes: 16 additions & 0 deletions dac/ui/src/mocks/sourceFormConfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,22 @@
}
]
},
{
"label": "VASTDATA",
"sourceType": "VASTDATA",
"elements": [
{
"type": "number",
"propertyName": "port",
"label": "Port",
"value": 2181
},
{
"type": "property_list",
"propertyName": "propertyList"
}
]
},
{
"label": "HDFS",
"sourceType": "HDFS",
Expand Down
3 changes: 2 additions & 1 deletion dac/ui/src/mocks/sourceFormListConfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@
{ "label": "Sample Source", "sourceType": "SampleSource" },
{ "label": "AWS Glue Catalog", "sourceType": "AWSGLUE" },
{ "label": "Google Cloud Storage", "sourceType": "GCS" },
{ "label": "Sample", "sourceType": "SAMPLE_SOURCE" }
{ "label": "Sample", "sourceType": "SAMPLE_SOURCE" },
{ "label": "VASTDATA", "sourceType": "VASTDATA"}
]
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ public String getMessage() {
case "HBASE":
return "HBase source type is not installed. Please download it from Dremio Hub: https://github.com/dremio-hub.";

case "VASTDATA":
return "VASTDATA source type is not installed.";

case "ADL":
if ("true".equals(ResourceBundle.getBundle("mapr-distribution").getString("maprDistribution"))) {
return "The Azure Data Lake source type is not available in the MapR edition of Dremio.";
Expand Down