techdocsmith commented on code in PR #14601:
URL: https://github.com/apache/druid/pull/14601#discussion_r1265970162


##########
web-console/src/views/load-data-view/load-data-view.tsx:
##########
@@ -2656,18 +2657,24 @@ export class LoadDataView extends 
React.PureComponent<LoadDataViewProps, LoadDat
               });
             }}
           >
-            Use the new type-aware schema discovery capability. Avoid this if 
you are appending to a
-            datasource created with string-only schema discovery of Druid and 
want to preserve
-            schema compatibility. For more information see the{' '}
-            <ExternalLink
-              href={`${getLink(
-                'DOCS',
-              
)}/ingestion/schema-design.html#schema-auto-discovery-for-dimensions`}
-            >
-              documentation
-            </ExternalLink>
-            .
-          </Switch>
+            <Radio value="type-aware-discovery">
+              Use the new type-aware schema discovery capability. This will 
discover columns with
+              the best type, columns with multiple values will be ingested as 
ARRAY types. For more
+              information see the{' '}
+              <ExternalLink
+                href={`${getLink(
+                  'DOCS',
+                
)}/ingestion/schema-design.html#schema-auto-discovery-for-dimensions`}
+              >
+                documentation
+              </ExternalLink>
+              .
+            </Radio>
+            <Radio value="string-only-discovery">
+              Use classic string-only schema discovery. This will discover all 
new columns as
+              strings, columns with multiple values will be ingested as 
multi-value-strings.

Review Comment:
   ```suggestion
                 Use classic string-only schema discovery to discover all new 
columns as
                 strings. Columns with multiple values will be ingested as 
multi-value-strings.
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to