-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added automated Viz setup - alpha Added images for Lab 6 instructions Added images for streaming lite labs Change Lab 6 from Hue to CDP Data Visualization Enabled unauthenticated app access. Added viz app status / health check. Fixed a typo ("yum" -> "git") Fixing Kudu timestamp column issue Merging addional images for streaming lite workshop from zBrainiac/edge2ai-workshop Merging streaming_flink and streaming_lite content from zBrainiac/edge2ai-workshop Modified source topic name from iot_enriched to iot (for lite labs) Resolving conflicts with upstream Typo fix Update README.adoc Update streaming_lite.adoc Updated Lab 6 instructions for CDV Updated Lab 7 instructions for lite workshop Updated images for Lab 7 instructions Updated web forms to improve registration process, fixed small issue in cdsw setup script. "This commit does not contain secrets"
- Loading branch information
1 parent
fa9a1cc
commit ba2f90e
Showing
40 changed files
with
1,651 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
.DS_Store | ||
.idea/ | ||
__pycache__/ | ||
.vscode/ | ||
edge2ai.code-workspace |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
{ | ||
"type": "record", | ||
"name": "SensorReading", | ||
"namespace": "com.cloudera.example", | ||
"doc": "This is a sample sensor reading", | ||
"fields": [ | ||
{ | ||
"name": "sensor_id", | ||
"doc": "Sensor identification number.", | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "sensor_ts", | ||
"doc": "Timestamp of the collected readings.", | ||
"type": "long" | ||
}, | ||
{ | ||
"name": "is_healthy", | ||
"doc": "Flag indicating health (healthy == 1)", | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "response", | ||
"doc": "response record", | ||
"type": { | ||
"type": "record", | ||
"name": "CDSWResponse", | ||
"namespace": "com.cloudera.example", | ||
"doc": "This is a CDSW Model response", | ||
"fields": [ | ||
{ | ||
"name": "result", | ||
"doc": "Result", | ||
"type": "int" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"name": "sensor_0", | ||
"doc": "Reading #0.", | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "sensor_1", | ||
"doc": "Reading #1.", | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "sensor_2", | ||
"doc": "Reading #2.", | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "sensor_3", | ||
"doc": "Reading #3.", | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "sensor_4", | ||
"doc": "Reading #4.", | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "sensor_5", | ||
"doc": "Reading #5.", | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "sensor_6", | ||
"doc": "Reading #6.", | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "sensor_7", | ||
"doc": "Reading #7.", | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "sensor_8", | ||
"doc": "Reading #8.", | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "sensor_9", | ||
"doc": "Reading #9.", | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "sensor_10", | ||
"doc": "Reading #10.", | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "sensor_11", | ||
"doc": "Reading #11.", | ||
"type": "int" | ||
}, | ||
{ | ||
"name": "city", | ||
"doc": "closest city", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "lat", | ||
"doc": "geo location", | ||
"type": "double" | ||
}, | ||
{ | ||
"name": "lon", | ||
"doc": "geo location", | ||
"type": "double" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.