Skip to content
Merged
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
11 changes: 6 additions & 5 deletions web-console/src/views/load-data-view/info-messages.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,20 +67,21 @@ export const ParserMessage = React.memo(function ParserMessage(props: ParserMess
<FormGroup>
<Callout>
<p>
Druid requires flat data (non-nested, non-hierarchical). Each row should represent a
discrete event.
You can{' '}
<ExternalLink href={`${getLink('DOCS')}/querying/nested-columns.html`}>
directly ingest nested data
</ExternalLink>{' '}
into COMPLEX&lt;json&gt; columns.
</p>
{canFlatten && (
<p>
If you have nested data, you can{' '}
<ExternalLink href={`${getLink('DOCS')}/ingestion/index.html#flattenspec`}>
flatten
</ExternalLink>{' '}
it here. If the provided flattening capabilities are not sufficient, please pre-process
your data before ingesting it into Druid.
it here.
</p>
)}
<p>Ensure that your data appears correctly in a row/column orientation.</p>
<LearnMore href={`${getLink('DOCS')}/ingestion/data-formats.html`} />
</Callout>
</FormGroup>
Expand Down