2021-03-08 15:39:49 -08:00
|
|
|
|
const fs = require("fs");
|
|
|
|
|
|
2021-08-10 19:46:02 -04:00
|
|
|
|
function list_ids_in_directory(directory, hardcoded_labels) {
|
|
|
|
|
if (hardcoded_labels === undefined) {
|
|
|
|
|
hardcoded_labels = {};
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-11 11:17:53 -07:00
|
|
|
|
const files = fs.readdirSync(`../${directory}`).sort();
|
2021-03-08 15:39:49 -08:00
|
|
|
|
let ids = [];
|
|
|
|
|
for (const name of files) {
|
|
|
|
|
if (fs.lstatSync(`../${directory}/${name}`).isDirectory()) {
|
|
|
|
|
// Recurse into the directory.
|
|
|
|
|
const inner_ids = list_ids_in_directory(`${directory}/${name}`);
|
|
|
|
|
ids = ids.concat(inner_ids);
|
|
|
|
|
} else {
|
|
|
|
|
if (name.endsWith(".md")) {
|
2021-05-11 11:17:53 -07:00
|
|
|
|
const slug = name.replace(/\.md$/, "");
|
2022-02-17 15:15:39 -05:00
|
|
|
|
const id = `${directory}/${slug}`;
|
2021-08-10 19:46:02 -04:00
|
|
|
|
|
|
|
|
|
if (id in hardcoded_labels) {
|
|
|
|
|
label = hardcoded_labels[id];
|
|
|
|
|
ids.push({ type: "doc", id, label });
|
|
|
|
|
} else {
|
|
|
|
|
ids.push({ type: "doc", id });
|
|
|
|
|
}
|
2021-03-08 15:39:49 -08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return ids;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-28 14:38:13 -07:00
|
|
|
|
// note: to handle errors where you don't want a markdown file in the sidebar, add it as a comment.
|
|
|
|
|
// this will fix errors like `Error: File not accounted for in sidebar: ...`
|
2021-03-05 00:12:12 -08:00
|
|
|
|
module.exports = {
|
|
|
|
|
// users
|
|
|
|
|
// architects
|
|
|
|
|
// modelers
|
|
|
|
|
// developers
|
|
|
|
|
// operators
|
|
|
|
|
|
|
|
|
|
overviewSidebar: {
|
2022-08-26 16:29:01 -05:00
|
|
|
|
"What is DataHub?": [
|
|
|
|
|
// By the end of this section, readers should understand the core use cases that DataHub addresses,
|
|
|
|
|
// target end-users, high-level architecture, & hosting options
|
|
|
|
|
|
|
|
|
|
// "docs/wip/what-is-datahub",
|
2021-03-05 00:12:12 -08:00
|
|
|
|
"docs/features",
|
2021-11-24 12:41:07 -08:00
|
|
|
|
{
|
|
|
|
|
Architecture: [
|
|
|
|
|
"docs/architecture/architecture",
|
|
|
|
|
"docs/components",
|
|
|
|
|
"docs/architecture/metadata-ingestion",
|
|
|
|
|
"docs/architecture/metadata-serving",
|
|
|
|
|
],
|
|
|
|
|
},
|
2022-08-26 16:29:01 -05:00
|
|
|
|
"docs/demo", // rename this to "DataHub Demo"
|
2021-05-25 18:51:24 -07:00
|
|
|
|
"docs/saas",
|
2021-03-05 00:12:12 -08:00
|
|
|
|
],
|
2022-08-26 16:29:01 -05:00
|
|
|
|
"Get Started": [
|
|
|
|
|
// The goal of this section is to provide the bare-minimum steps required to:
|
|
|
|
|
// - Get DataHub Running
|
|
|
|
|
// - Optionally configure SSO
|
|
|
|
|
// - Add/invite Users
|
|
|
|
|
// - Create Polices & assign roles
|
|
|
|
|
// - Ingest at least one source (ie. data warehouse)
|
|
|
|
|
// - Understand high-level options for enriching metadata
|
2022-10-26 18:29:11 -05:00
|
|
|
|
"docs/get-started-with-datahub",
|
2022-07-01 20:35:55 +01:00
|
|
|
|
{
|
2022-08-26 16:29:01 -05:00
|
|
|
|
"Self-Hosted DataHub": [
|
|
|
|
|
"docs/quickstart",
|
|
|
|
|
// "docs/wip/configure-sso",
|
2022-07-01 20:35:55 +01:00
|
|
|
|
"docs/authentication/guides/add-users",
|
2022-08-26 16:29:01 -05:00
|
|
|
|
// "docs/wip/invite-with-email-link",
|
|
|
|
|
// "docs/wip/create-policies",
|
|
|
|
|
// "docs/wip/guide-ingest-your-first-metadata-source",
|
|
|
|
|
// "docs/wip/guide-enrich-your-metadata", // remove this; add in enrichment detail in ingest-your-first-source
|
2022-07-01 20:35:55 +01:00
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
2022-08-26 16:29:01 -05:00
|
|
|
|
"Managed DataHub": [
|
|
|
|
|
// {
|
|
|
|
|
// type: "doc",
|
|
|
|
|
// id: "docs/wip/managed-datahub-setup",
|
|
|
|
|
// className: "saasOnly",
|
|
|
|
|
// },
|
|
|
|
|
// {
|
|
|
|
|
// type: "doc",
|
|
|
|
|
// id: "docs/wip/configure-sso",
|
|
|
|
|
// className: "saasOnly",
|
|
|
|
|
// },
|
|
|
|
|
"docs/authentication/guides/add-users",
|
|
|
|
|
// "docs/wip/invite-with-email-link",
|
|
|
|
|
// "docs/wip/create-policies",
|
2022-05-02 00:18:15 -07:00
|
|
|
|
{
|
2022-08-26 16:29:01 -05:00
|
|
|
|
type: "doc",
|
|
|
|
|
id: "docs/managed-datahub/saas-slack-setup",
|
|
|
|
|
className: "saasOnly",
|
2022-05-02 00:18:15 -07:00
|
|
|
|
},
|
2022-09-27 11:31:19 -07:00
|
|
|
|
{
|
|
|
|
|
type: "doc",
|
|
|
|
|
id: "docs/managed-datahub/approval-workflows",
|
|
|
|
|
className: "saasOnly",
|
|
|
|
|
},
|
2022-08-26 16:29:01 -05:00
|
|
|
|
// "docs/wip/guide-ingest-your-first-metadata-source",
|
|
|
|
|
// "docs/wip/guide-enrich-your-metadata",
|
2022-05-02 00:18:15 -07:00
|
|
|
|
],
|
2021-08-08 16:40:51 -04:00
|
|
|
|
},
|
2022-08-26 16:29:01 -05:00
|
|
|
|
],
|
|
|
|
|
"Ingest Metadata": [
|
|
|
|
|
// The purpose of this section is to provide a deeper understanding of how ingestion works.
|
|
|
|
|
// Readers should be able to find details for ingesting from all systems, apply transformers, understand sinks,
|
|
|
|
|
// and understand key concepts of the Ingestion Framework (Sources, Sinks, Transformers, and Recipes)
|
2021-08-08 16:40:51 -04:00
|
|
|
|
{
|
2022-08-26 16:29:01 -05:00
|
|
|
|
Overview: [
|
|
|
|
|
"metadata-ingestion/README",
|
|
|
|
|
// "docs/wip/ingestion-overview",
|
|
|
|
|
"docs/ui-ingestion",
|
|
|
|
|
],
|
2021-08-08 16:40:51 -04:00
|
|
|
|
},
|
2022-08-26 16:29:01 -05:00
|
|
|
|
|
2022-09-20 11:45:46 -07:00
|
|
|
|
// {
|
|
|
|
|
// "Shift Left": [
|
|
|
|
|
// // "docs/wip/importance-of-shift-left",
|
|
|
|
|
// ],
|
|
|
|
|
// },
|
2021-12-07 23:39:59 +05:30
|
|
|
|
{
|
2022-08-26 16:29:01 -05:00
|
|
|
|
Sources: [
|
|
|
|
|
// collapse these; add push-based at top
|
2022-04-24 17:12:21 -07:00
|
|
|
|
{
|
|
|
|
|
Airflow: ["docs/lineage/airflow", "docker/airflow/local_airflow"],
|
|
|
|
|
},
|
2022-01-04 01:41:09 -08:00
|
|
|
|
"metadata-integration/java/spark-lineage/README",
|
2022-04-24 17:12:21 -07:00
|
|
|
|
"metadata-ingestion/integration_docs/great-expectations",
|
|
|
|
|
"metadata-integration/java/datahub-protobuf/README",
|
2022-08-26 16:29:01 -05:00
|
|
|
|
//"metadata-ingestion/source-docs-template",
|
|
|
|
|
{
|
|
|
|
|
type: "autogenerated",
|
|
|
|
|
dirName: "docs/generated/ingestion/sources", // '.' means the current docs folder
|
|
|
|
|
},
|
2021-12-07 23:39:59 +05:30
|
|
|
|
],
|
|
|
|
|
},
|
2022-04-24 17:12:21 -07:00
|
|
|
|
{
|
2022-08-26 16:29:01 -05:00
|
|
|
|
Sinks: list_ids_in_directory("metadata-ingestion/sink_docs"),
|
2022-04-24 17:12:21 -07:00
|
|
|
|
},
|
2022-09-07 03:14:14 +05:30
|
|
|
|
{
|
|
|
|
|
Transformers: [
|
|
|
|
|
"metadata-ingestion/docs/transformer/intro",
|
|
|
|
|
"metadata-ingestion/docs/transformer/dataset_transformer",
|
|
|
|
|
],
|
|
|
|
|
},
|
2021-12-10 11:02:09 +05:30
|
|
|
|
{
|
2022-08-26 16:29:01 -05:00
|
|
|
|
"Advanced Guides": [
|
|
|
|
|
{
|
|
|
|
|
"Scheduling Ingestion": [
|
|
|
|
|
"metadata-ingestion/schedule_docs/intro",
|
|
|
|
|
"metadata-ingestion/schedule_docs/cron",
|
|
|
|
|
"metadata-ingestion/schedule_docs/airflow",
|
2022-09-20 10:34:42 +01:00
|
|
|
|
"metadata-ingestion/schedule_docs/kubernetes",
|
2022-08-26 16:29:01 -05:00
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
// {
|
|
|
|
|
// type: "doc",
|
|
|
|
|
// id: "docs/wip/remote-ingestion-executor-on-AWS",
|
|
|
|
|
// className: "saasOnly",
|
|
|
|
|
// },
|
2022-01-27 15:31:25 -08:00
|
|
|
|
"docs/platform-instances",
|
2022-05-02 00:18:15 -07:00
|
|
|
|
"metadata-ingestion/docs/dev_guides/stateful",
|
2022-11-23 11:13:30 +05:30
|
|
|
|
"metadata-ingestion/docs/dev_guides/classification",
|
2022-09-21 09:02:50 -07:00
|
|
|
|
"metadata-ingestion/docs/dev_guides/add_stateful_ingestion_to_source",
|
2022-05-02 00:18:15 -07:00
|
|
|
|
"metadata-ingestion/docs/dev_guides/sql_profiles",
|
2021-12-10 11:02:09 +05:30
|
|
|
|
],
|
|
|
|
|
},
|
2021-08-08 16:40:51 -04:00
|
|
|
|
],
|
2022-08-26 16:29:01 -05:00
|
|
|
|
"Enrich Metadata": [
|
|
|
|
|
// The purpose of this section is to provide direction on how to enrich metadata when shift-left isn’t an option
|
|
|
|
|
// "docs/wip/csv-enrichment",
|
|
|
|
|
// "docs/wip/ui-based-enrichment",
|
2022-11-16 18:38:31 -06:00
|
|
|
|
"docs/enrich-metadata",
|
2022-08-26 16:29:01 -05:00
|
|
|
|
"docs/domains",
|
2022-10-27 16:50:54 -07:00
|
|
|
|
"docs/glossary/business-glossary",
|
2022-08-26 16:29:01 -05:00
|
|
|
|
"docs/tags",
|
2022-06-24 16:59:45 -04:00
|
|
|
|
{
|
2022-08-26 16:29:01 -05:00
|
|
|
|
Lineage: ["docs/lineage/intro", "docs/lineage/sample_code"],
|
2022-06-24 16:59:45 -04:00
|
|
|
|
},
|
|
|
|
|
],
|
2022-08-26 16:29:01 -05:00
|
|
|
|
|
|
|
|
|
"Act on Metadata": [
|
2022-11-03 12:08:12 -05:00
|
|
|
|
"docs/act-on-metadata",
|
2021-09-22 17:30:15 -07:00
|
|
|
|
{
|
2022-08-26 16:29:01 -05:00
|
|
|
|
"Actions Framework": [
|
|
|
|
|
"docs/actions/README",
|
|
|
|
|
"docs/actions/quickstart",
|
|
|
|
|
"docs/actions/concepts",
|
2021-09-22 17:30:15 -07:00
|
|
|
|
{
|
2022-08-26 16:29:01 -05:00
|
|
|
|
Sources: [
|
|
|
|
|
{
|
|
|
|
|
type: "autogenerated",
|
|
|
|
|
dirName: "docs/actions/sources",
|
|
|
|
|
},
|
|
|
|
|
],
|
2021-09-22 17:30:15 -07:00
|
|
|
|
},
|
|
|
|
|
{
|
2022-08-26 16:29:01 -05:00
|
|
|
|
Events: [
|
|
|
|
|
{
|
|
|
|
|
type: "autogenerated",
|
|
|
|
|
dirName: "docs/actions/events",
|
|
|
|
|
},
|
|
|
|
|
],
|
2021-09-22 17:30:15 -07:00
|
|
|
|
},
|
|
|
|
|
{
|
2022-08-26 16:29:01 -05:00
|
|
|
|
Actions: [
|
|
|
|
|
{
|
|
|
|
|
type: "autogenerated",
|
|
|
|
|
dirName: "docs/actions/actions",
|
|
|
|
|
},
|
|
|
|
|
],
|
2021-09-22 17:30:15 -07:00
|
|
|
|
},
|
|
|
|
|
{
|
2022-08-26 16:29:01 -05:00
|
|
|
|
Guides: [
|
|
|
|
|
{
|
|
|
|
|
type: "autogenerated",
|
|
|
|
|
dirName: "docs/actions/guides",
|
|
|
|
|
},
|
|
|
|
|
],
|
2021-09-22 17:30:15 -07:00
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2022-10-26 15:00:35 -07:00
|
|
|
|
{
|
|
|
|
|
type: "doc",
|
|
|
|
|
id: "docs/tests/metadata-tests",
|
|
|
|
|
className: "saasOnly",
|
|
|
|
|
},
|
2022-08-26 16:29:01 -05:00
|
|
|
|
// "docs/wip/metadata-analytics",
|
2022-09-01 18:11:14 -05:00
|
|
|
|
"docs/act-on-metadata/impact-analysis",
|
2022-08-26 16:29:01 -05:00
|
|
|
|
// {
|
|
|
|
|
// type: "doc",
|
|
|
|
|
// id: "docs/wip/events-bridge",
|
|
|
|
|
// className: "saasOnly",
|
|
|
|
|
// },
|
|
|
|
|
// {
|
|
|
|
|
// type: "doc",
|
|
|
|
|
// id: "docs/wip/datahub-incidents", // rename this to "Incidents"
|
|
|
|
|
// className: "saasOnly",
|
|
|
|
|
// },
|
|
|
|
|
// {
|
|
|
|
|
// type: "doc",
|
|
|
|
|
// id: "docs/wip/approval-workflows",
|
|
|
|
|
// className: "saasOnly",
|
|
|
|
|
// },
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
"Deploy DataHub": [
|
|
|
|
|
// The purpose of this section is to provide the minimum steps required to deploy DataHub to the vendor of your choosing
|
|
|
|
|
"docs/deploy/aws",
|
|
|
|
|
"docs/deploy/gcp",
|
|
|
|
|
"docker/README",
|
|
|
|
|
"docs/deploy/kubernetes",
|
2022-11-22 20:41:29 +05:30
|
|
|
|
"docs/how/updating-datahub",
|
2021-09-22 17:30:15 -07:00
|
|
|
|
{
|
2022-08-26 16:29:01 -05:00
|
|
|
|
Authentication: [
|
|
|
|
|
"docs/authentication/README",
|
|
|
|
|
"docs/authentication/concepts",
|
2021-09-22 17:30:15 -07:00
|
|
|
|
{
|
2022-08-26 16:29:01 -05:00
|
|
|
|
"Frontend Authentication": [
|
|
|
|
|
"docs/authentication/guides/jaas",
|
|
|
|
|
{
|
|
|
|
|
"OIDC Authentication": [
|
|
|
|
|
"docs/authentication/guides/sso/configure-oidc-react",
|
|
|
|
|
"docs/authentication/guides/sso/configure-oidc-react-google",
|
|
|
|
|
"docs/authentication/guides/sso/configure-oidc-react-okta",
|
|
|
|
|
"docs/authentication/guides/sso/configure-oidc-react-azure",
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
],
|
2022-05-24 18:44:31 +01:00
|
|
|
|
},
|
2022-08-26 16:29:01 -05:00
|
|
|
|
"docs/authentication/introducing-metadata-service-authentication",
|
|
|
|
|
"docs/authentication/personal-access-tokens",
|
2021-09-22 17:30:15 -07:00
|
|
|
|
],
|
|
|
|
|
},
|
2022-05-31 19:01:44 -07:00
|
|
|
|
{
|
2022-08-26 16:29:01 -05:00
|
|
|
|
Authorization: [
|
|
|
|
|
"docs/authorization/README",
|
2022-08-30 21:16:01 -07:00
|
|
|
|
"docs/authorization/roles",
|
2022-08-26 16:29:01 -05:00
|
|
|
|
"docs/authorization/policies",
|
|
|
|
|
"docs/authorization/groups",
|
|
|
|
|
],
|
2022-05-31 19:01:44 -07:00
|
|
|
|
},
|
|
|
|
|
{
|
2022-08-26 16:29:01 -05:00
|
|
|
|
"Advanced Guides": [
|
|
|
|
|
"docs/how/delete-metadata",
|
2022-12-06 23:52:41 +05:30
|
|
|
|
"docs/how/configuring-authorization-with-apache-ranger",
|
2022-08-26 16:29:01 -05:00
|
|
|
|
"docs/how/backup-datahub",
|
|
|
|
|
"docs/how/restore-indices",
|
|
|
|
|
"docs/advanced/db-retention",
|
|
|
|
|
"docs/advanced/monitoring",
|
|
|
|
|
"docs/how/extract-container-logs",
|
|
|
|
|
"docs/deploy/telemetry",
|
|
|
|
|
"docs/how/kafka-config",
|
|
|
|
|
"docs/deploy/confluent-cloud",
|
|
|
|
|
"docs/advanced/no-code-upgrade",
|
|
|
|
|
],
|
2022-05-31 19:01:44 -07:00
|
|
|
|
},
|
2022-08-26 16:29:01 -05:00
|
|
|
|
],
|
|
|
|
|
"Developer Guides": [
|
|
|
|
|
// The purpose of this section is to provide developers & technical users with
|
|
|
|
|
// concrete tutorials for how to work with the DataHub CLI & APIs
|
|
|
|
|
// "docs/wip/developer-guides",
|
|
|
|
|
"docs/cli",
|
2022-05-31 19:01:44 -07:00
|
|
|
|
{
|
2022-08-26 16:29:01 -05:00
|
|
|
|
"GraphQL API": [
|
2022-05-31 19:01:44 -07:00
|
|
|
|
{
|
2022-08-26 16:29:01 -05:00
|
|
|
|
label: "Overview",
|
|
|
|
|
type: "doc",
|
|
|
|
|
id: "docs/api/graphql/overview",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
Reference: [
|
|
|
|
|
{
|
|
|
|
|
type: "doc",
|
|
|
|
|
label: "Queries",
|
|
|
|
|
id: "graphql/queries",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: "doc",
|
|
|
|
|
label: "Mutations",
|
|
|
|
|
id: "graphql/mutations",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: "doc",
|
|
|
|
|
label: "Objects",
|
|
|
|
|
id: "graphql/objects",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: "doc",
|
|
|
|
|
label: "Inputs",
|
|
|
|
|
id: "graphql/inputObjects",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: "doc",
|
|
|
|
|
label: "Interfaces",
|
|
|
|
|
id: "graphql/interfaces",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: "doc",
|
|
|
|
|
label: "Unions",
|
|
|
|
|
id: "graphql/unions",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: "doc",
|
|
|
|
|
label: "Enums",
|
|
|
|
|
id: "graphql/enums",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: "doc",
|
|
|
|
|
label: "Scalars",
|
|
|
|
|
id: "graphql/scalars",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
Guides: [
|
|
|
|
|
{
|
|
|
|
|
type: "doc",
|
|
|
|
|
label: "Getting Started",
|
|
|
|
|
id: "docs/api/graphql/getting-started",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: "doc",
|
2022-09-20 10:17:44 -07:00
|
|
|
|
label: "Working with Metadata Entities",
|
2022-08-26 16:29:01 -05:00
|
|
|
|
id: "docs/api/graphql/querying-entities",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: "doc",
|
|
|
|
|
label: "Access Token Management",
|
|
|
|
|
id: "docs/api/graphql/token-management",
|
|
|
|
|
},
|
|
|
|
|
],
|
2022-05-31 19:01:44 -07:00
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
2022-08-26 16:29:01 -05:00
|
|
|
|
OpenAPI: [
|
2022-05-31 19:01:44 -07:00
|
|
|
|
{
|
2022-08-26 16:29:01 -05:00
|
|
|
|
label: "Usage Guide",
|
|
|
|
|
type: "doc",
|
|
|
|
|
id: "docs/api/openapi/openapi-usage-guide",
|
2022-05-31 19:01:44 -07:00
|
|
|
|
},
|
2022-08-26 16:29:01 -05:00
|
|
|
|
"docs/dev-guides/timeline",
|
2022-05-31 19:01:44 -07:00
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
2022-08-26 16:29:01 -05:00
|
|
|
|
SDKs: [
|
|
|
|
|
"metadata-ingestion/as-a-library",
|
|
|
|
|
"metadata-integration/java/as-a-library",
|
2022-05-31 19:01:44 -07:00
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
2022-08-26 16:29:01 -05:00
|
|
|
|
"DataHub Metadata Model": [
|
|
|
|
|
"docs/modeling/metadata-model",
|
|
|
|
|
"docs/modeling/extending-the-metadata-model",
|
|
|
|
|
"docs/what/mxe",
|
2022-05-31 19:01:44 -07:00
|
|
|
|
{
|
2022-08-26 16:29:01 -05:00
|
|
|
|
Entities: [
|
|
|
|
|
{
|
|
|
|
|
type: "autogenerated",
|
|
|
|
|
dirName: "docs/generated/metamodel/entities", // '.' means the current docs folder
|
|
|
|
|
},
|
|
|
|
|
],
|
2022-05-31 19:01:44 -07:00
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2021-11-24 12:41:07 -08:00
|
|
|
|
{
|
2022-08-26 16:29:01 -05:00
|
|
|
|
"Developing on DataHub": [
|
|
|
|
|
"docs/developers",
|
|
|
|
|
"docs/docker/development",
|
2022-12-06 16:57:12 +05:30
|
|
|
|
"metadata-ingestion/developing",
|
2022-08-26 16:29:01 -05:00
|
|
|
|
{
|
|
|
|
|
Modules: [
|
|
|
|
|
"datahub-web-react/README",
|
|
|
|
|
"datahub-frontend/README",
|
|
|
|
|
"datahub-graphql-core/README",
|
|
|
|
|
"metadata-service/README",
|
|
|
|
|
"metadata-jobs/mae-consumer-job/README",
|
|
|
|
|
"metadata-jobs/mce-consumer-job/README",
|
|
|
|
|
],
|
|
|
|
|
},
|
2021-11-24 12:41:07 -08:00
|
|
|
|
],
|
|
|
|
|
},
|
2022-08-26 16:29:01 -05:00
|
|
|
|
"docs/debugging",
|
2022-12-06 23:52:41 +05:30
|
|
|
|
"docs/plugins",
|
2022-08-26 16:29:01 -05:00
|
|
|
|
|
2021-11-24 12:41:07 -08:00
|
|
|
|
{
|
|
|
|
|
Advanced: [
|
2022-08-26 16:29:01 -05:00
|
|
|
|
"metadata-ingestion/docs/dev_guides/reporting_telemetry",
|
|
|
|
|
"docs/advanced/mcp-mcl",
|
|
|
|
|
"docker/datahub-upgrade/README",
|
2021-11-24 12:41:07 -08:00
|
|
|
|
"docs/advanced/no-code-modeling",
|
2022-08-26 16:29:01 -05:00
|
|
|
|
"datahub-web-react/src/app/analytics/README",
|
2021-11-24 12:41:07 -08:00
|
|
|
|
"docs/advanced/aspect-versioning",
|
|
|
|
|
"docs/advanced/es-7-upgrade",
|
|
|
|
|
"docs/how/migrating-graph-service-implementation",
|
|
|
|
|
"docs/advanced/field-path-spec-v2",
|
2022-08-26 16:29:01 -05:00
|
|
|
|
"metadata-ingestion/adding-source",
|
|
|
|
|
"docs/how/add-custom-ingestion-source",
|
|
|
|
|
"docs/how/add-custom-data-platform",
|
2022-09-07 13:32:38 -07:00
|
|
|
|
"docs/advanced/browse-paths-upgrade",
|
2021-11-24 12:41:07 -08:00
|
|
|
|
],
|
|
|
|
|
},
|
2021-03-05 00:12:12 -08:00
|
|
|
|
],
|
2022-08-26 16:29:01 -05:00
|
|
|
|
"Feature Guides": [
|
|
|
|
|
// "docs/wip/tutorials",
|
|
|
|
|
"docs/how/search",
|
|
|
|
|
"docs/schema-history",
|
2022-10-27 16:50:54 -07:00
|
|
|
|
// "docs/how/ui-tabs-guide",
|
2022-08-26 16:29:01 -05:00
|
|
|
|
"docs/domains",
|
2022-10-27 16:50:54 -07:00
|
|
|
|
"docs/glossary/business-glossary",
|
2022-08-26 16:29:01 -05:00
|
|
|
|
"docs/tags",
|
2022-10-21 15:34:39 -05:00
|
|
|
|
"docs/browse",
|
2022-10-17 08:45:50 -07:00
|
|
|
|
"docs/authorization/access-policies-guide",
|
2022-10-14 21:43:50 +02:00
|
|
|
|
"docs/features/dataset-usage-and-query-history",
|
2022-10-13 10:53:53 -07:00
|
|
|
|
"docs/posts",
|
2022-10-14 22:07:41 +00:00
|
|
|
|
"docs/sync-status",
|
2022-08-26 16:29:01 -05:00
|
|
|
|
// "docs/wip/ui-ingestion-guide", -- not needed
|
|
|
|
|
// "docs/wip/personal-access-tokens-guide", -- not needed
|
|
|
|
|
|
2022-09-20 11:45:46 -07:00
|
|
|
|
// {
|
|
|
|
|
// "Advanced Tutorials": [
|
|
|
|
|
// // "docs/wip/advanced-guides",
|
|
|
|
|
// // "docs/wip/search-ranking",
|
|
|
|
|
// ],
|
|
|
|
|
// },
|
2021-03-05 00:12:12 -08:00
|
|
|
|
],
|
2022-08-26 16:29:01 -05:00
|
|
|
|
|
|
|
|
|
"Join the Community": [
|
2021-03-05 00:12:12 -08:00
|
|
|
|
"docs/slack",
|
|
|
|
|
"docs/townhalls",
|
|
|
|
|
"docs/townhall-history",
|
|
|
|
|
"docs/CODE_OF_CONDUCT",
|
2022-08-26 16:29:01 -05:00
|
|
|
|
"docs/CONTRIBUTING",
|
|
|
|
|
"docs/links",
|
2021-03-05 00:12:12 -08:00
|
|
|
|
"docs/rfc",
|
|
|
|
|
],
|
2022-08-26 16:29:01 -05:00
|
|
|
|
|
|
|
|
|
"Release History": ["releases"],
|
2022-11-30 15:19:50 +05:30
|
|
|
|
"Managed DataHub Release History": [
|
|
|
|
|
"docs/managed-datahub/release-notes/v_0_1_69",
|
2022-12-06 23:48:43 +05:30
|
|
|
|
"docs/managed-datahub/release-notes/v_0_1_70",
|
2022-11-30 15:19:50 +05:30
|
|
|
|
],
|
2022-08-26 16:29:01 -05:00
|
|
|
|
|
|
|
|
|
// "Candidates for Deprecation": [
|
|
|
|
|
// "README",
|
|
|
|
|
// "docs/roadmap",
|
|
|
|
|
// "docs/advanced/backfilling",
|
|
|
|
|
//"docs/advanced/derived-aspects",
|
|
|
|
|
//"docs/advanced/entity-hierarchy",
|
|
|
|
|
//"docs/advanced/partial-update",
|
|
|
|
|
//"docs/advanced/pdl-best-practices",
|
|
|
|
|
//"docs/introducing-metadata-service-authentication"
|
|
|
|
|
//"metadata-models-custom/README"
|
|
|
|
|
//"metadata-ingestion/examples/transforms/README"
|
|
|
|
|
//"docs/what/graph",
|
|
|
|
|
//"docs/what/search-index",
|
|
|
|
|
//"docs/how/add-new-aspect",
|
|
|
|
|
//"docs/how/build-metadata-service",
|
|
|
|
|
//"docs/how/graph-onboarding",
|
|
|
|
|
//"docs/demo/graph-onboarding",
|
|
|
|
|
//"metadata-ingestion-modules/airflow-plugin/README"
|
|
|
|
|
// "metadata-ingestion/schedule_docs/datahub", // we can delete this
|
|
|
|
|
// TODO: change the titles of these, removing the "What is..." portion from the sidebar"
|
|
|
|
|
// "docs/what/entity",
|
|
|
|
|
// "docs/what/aspect",
|
|
|
|
|
// "docs/what/urn",
|
|
|
|
|
// "docs/what/relationship",
|
|
|
|
|
// "docs/advanced/high-cardinality",
|
|
|
|
|
// "docs/what/search-document",
|
|
|
|
|
// "docs/what/snapshot",
|
|
|
|
|
// "docs/what/delta",
|
|
|
|
|
// - "docker/datahub-frontend/README",
|
|
|
|
|
// - "docker/datahub-gms/README",
|
|
|
|
|
// - "docker/datahub-mae-consumer/README",
|
|
|
|
|
// - "docker/datahub-mce-consumer/README",
|
|
|
|
|
// - "docker/datahub-ingestion/README",
|
|
|
|
|
// - "docker/elasticsearch-setup/README",
|
|
|
|
|
// - "docker/ingestion/README",
|
|
|
|
|
// - "docker/kafka-setup/README",
|
|
|
|
|
// - "docker/mariadb/README",
|
|
|
|
|
// - "docker/mysql/README",
|
|
|
|
|
// - "docker/neo4j/README",
|
|
|
|
|
// - "docker/postgres/README",
|
|
|
|
|
// - "perf-test/README",
|
|
|
|
|
// "metadata-jobs/README",
|
|
|
|
|
// "docs/how/add-user-data",
|
2022-09-01 18:11:14 -05:00
|
|
|
|
// "docs/_feature-guide-template"
|
2022-08-26 16:29:01 -05:00
|
|
|
|
// ],
|
2021-03-05 00:12:12 -08:00
|
|
|
|
},
|
|
|
|
|
};
|