Skip to content

Commit

Permalink
Merge branch 'master' into cassandra-boot-fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Marozas committed Jul 1, 2022
2 parents cdff59a + 0fc8a65 commit 170412b
Show file tree
Hide file tree
Showing 12 changed files with 33 additions and 31 deletions.
Expand Up @@ -83,7 +83,7 @@ export const NameSourceStep = ({ state, updateState, prev, submit }: StepProps)
Advanced: Provide a custom CLI version to use for ingestion.
</Typography.Paragraph>
<Input
placeholder="0.8.38.2"
placeholder="0.8.40"
value={state.config?.version || ''}
onChange={(event) => setVersion(event.target.value)}
/>
Expand Down
2 changes: 1 addition & 1 deletion datahub-web-react/src/app/settings/SettingsPage.tsx
Expand Up @@ -17,7 +17,7 @@ const PageContainer = styled.div`

const SettingsBarContainer = styled.div`
padding-top: 20px;
height: 100vh;
min-height: 100vh;
border-right: 1px solid ${ANTD_GRAY[5]};
`;

Expand Down
23 changes: 2 additions & 21 deletions datahub-web-react/src/graphql/lineage.graphql
Expand Up @@ -141,25 +141,6 @@ fragment lineageNodeProperties on EntityWithRelationships {
}
}

fragment relationshipFieldsWithoutSiblings on EntityWithRelationships {
...lineageNodeProperties
... on Dataset {
siblings {
isPrimary
siblings {
urn
type
}
}
}
upstream: lineage(input: { direction: UPSTREAM, start: 0, count: 100 }) {
...leafLineageResults
}
downstream: lineage(input: { direction: DOWNSTREAM, start: 0, count: 100 }) {
...leafLineageResults
}
}

fragment relationshipFields on EntityWithRelationships {
...lineageNodeProperties
... on Dataset {
Expand All @@ -168,7 +149,7 @@ fragment relationshipFields on EntityWithRelationships {
siblings {
urn
type
...relationshipFieldsWithoutSiblings
...lineageNodeProperties
}
}
}
Expand Down Expand Up @@ -222,7 +203,7 @@ query getEntityLineage($urn: String!) {
siblings {
urn
type
...relationshipFieldsWithoutSiblings
...lineageNodeProperties
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion docker/datahub-gms/env/docker-without-neo4j.env
Expand Up @@ -16,7 +16,7 @@ MAE_CONSUMER_ENABLED=true
MCE_CONSUMER_ENABLED=true
PE_CONSUMER_ENABLED=true
UI_INGESTION_ENABLED=true
UI_INGESTION_DEFAULT_CLI_VERSION=0.8.38.2
UI_INGESTION_DEFAULT_CLI_VERSION=0.8.40

# Uncomment to disable persistence of client-side analytics events
# DATAHUB_ANALYTICS_ENABLED=false
Expand Down
2 changes: 1 addition & 1 deletion docker/datahub-gms/env/docker.env
Expand Up @@ -19,7 +19,7 @@ MAE_CONSUMER_ENABLED=true
MCE_CONSUMER_ENABLED=true
PE_CONSUMER_ENABLED=true
UI_INGESTION_ENABLED=true
UI_INGESTION_DEFAULT_CLI_VERSION=0.8.38.2
UI_INGESTION_DEFAULT_CLI_VERSION=0.8.40

# Uncomment to enable Metadata Service Authentication
# METADATA_SERVICE_AUTH_ENABLED=true
Expand Down
Expand Up @@ -84,7 +84,7 @@ services:
- MCE_CONSUMER_ENABLED=true
- PE_CONSUMER_ENABLED=true
- UI_INGESTION_ENABLED=true
- UI_INGESTION_DEFAULT_CLI_VERSION=0.8.38.2
- UI_INGESTION_DEFAULT_CLI_VERSION=0.8.40
hostname: datahub-gms
image: linkedin/datahub-gms:${DATAHUB_VERSION:-head}
ports:
Expand Down
2 changes: 1 addition & 1 deletion docker/quickstart/docker-compose.quickstart.yml
Expand Up @@ -90,7 +90,7 @@ services:
- MCE_CONSUMER_ENABLED=true
- PE_CONSUMER_ENABLED=true
- UI_INGESTION_ENABLED=true
- UI_INGESTION_DEFAULT_CLI_VERSION=0.8.38.2
- UI_INGESTION_DEFAULT_CLI_VERSION=0.8.40
hostname: datahub-gms
image: linkedin/datahub-gms:${DATAHUB_VERSION:-head}
ports:
Expand Down
2 changes: 1 addition & 1 deletion docs/deploy/confluent-cloud.md
Expand Up @@ -135,7 +135,7 @@ credentialsAndCertsSecrets:
springKafkaConfigurationOverrides:
security.protocol: SASL
security.protocol: SASL_SSL
sasl.mechanism: PLAIN
client.dns.lookup: use_all_dns_ips
basic.auth.credentials.source: USER_INFO
Expand Down
10 changes: 10 additions & 0 deletions docs/how/updating-datahub.md
Expand Up @@ -4,6 +4,16 @@ This file documents any backwards-incompatible changes in DataHub and assists pe

## Next

### Breaking Changes

### Potential Downtime

### Deprecations

### Other notable Changes

## `v0.8.40`

### Breaking Changes
- #5240 `lineage_client_project_id` in `bigquery` source is removed. Use `storage_project_id` instead.

Expand Down
4 changes: 2 additions & 2 deletions metadata-ingestion/src/datahub/cli/timeline_cli.py
Expand Up @@ -114,7 +114,7 @@ def get_timeline(
required=True,
multiple=True,
type=str,
help="One of tag, glossary_term, technical_schema, documentation, ownership",
help="One of tag, glossary_term, technical_schema, documentation, owner",
)
@click.option(
"--start",
Expand Down Expand Up @@ -148,7 +148,7 @@ def timeline(

all_categories = [
"TAG",
"OWNERSHIP",
"OWNER",
"GLOSSARY_TERM",
"TECHNICAL_SCHEMA",
"DOCUMENTATION",
Expand Down
11 changes: 11 additions & 0 deletions metadata-ingestion/src/datahub/entrypoints.py
Expand Up @@ -169,6 +169,17 @@ def main(**kwargs):
exc,
line_wrap=MAX_CONTENT_WIDTH,
truncate_vals=10 * MAX_CONTENT_WIDTH,
suppressed_vars=[
r".*password.*",
r".*secret.*",
r".*key.*",
r".*access.*",
# needed because sometimes secrets are in url
r".*url.*",
# needed because sqlalchemy uses it underneath
# and passes all params
r".*cparams.*",
],
suppressed_paths=[r"lib/python.*/site-packages/click/"],
**kwargs,
)
Expand Down
Expand Up @@ -42,7 +42,7 @@ authorization:

ingestion:
enabled: ${UI_INGESTION_ENABLED:true}
defaultCliVersion: '${UI_INGESTION_DEFAULT_CLI_VERSION:0.8.38.2}'
defaultCliVersion: '${UI_INGESTION_DEFAULT_CLI_VERSION:0.8.40}'

telemetry:
enabledCli: ${CLI_TELEMETRY_ENABLED:true}
Expand Down

0 comments on commit 170412b

Please sign in to comment.