You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This example shows how to load data from 2 HR systems.
3
+
4
+
The data are separated into 2 folders under the input/ folder.
5
+
```
6
+
|-- input
7
+
|-- AcmeTech
8
+
|-- 32920.json
9
+
|-- 34324.json
10
+
|-- GlobalCorp
11
+
|-- DeptTable.csv
12
+
|-- EmployeeTable.csv
13
+
|-- SalaryTable.csv
14
+
```
15
+
16
+
# TLDR; How do I run it?
17
+
Check out the [HR Hub Tutorial](http://marklogic.github.io/marklogic-data-hub/getting-started/#tutorial) on the Datahub Site.
18
+
19
+
# Global Corp
20
+
Global Corp has exported the Employee data from a relational database. They are provided to you as csv files, one for each table.
21
+
22
+
# Acme Tech
23
+
Acme Tech uses a SAAS for managing employees. The data is provided as JSON documents that came straight out of the SAAS REST API.
24
+
25
+
# What is this example?
26
+
In this example we are loading the CSV table dumps from Global Corp and the JSON documents from Acme Tech into the Hub staging area. We then conform the two data sources into the final area by extracting common header fields. The header fields we extract are:
27
+
28
+
- Employee ID
29
+
- Employee Hire Date
30
+
- Employee Salary
31
+
32
+
# Wait. What is a data Hub?
33
+
Get started over at the [Data Hub Site](http://marklogic.github.io/marklogic-data-hub)
0 commit comments