Web console: Data loader should allow for multiline JSON messages in kafka (#13709)

* stricter

* data loader should allow for mulit-line json

* add await

* kinesis also
This commit is contained in:
Vadim Ogievetsky 2023-01-25 21:23:18 -08:00 committed by GitHub
parent 6164c420a1
commit 3b62d7929c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 33 additions and 8 deletions

View File

@ -64,6 +64,10 @@ exports.SQL_KEYWORDS = [
'OVER',
'PARTITION BY',
'WINDOW',
'RANGE',
'PRECEDING',
'FOLLOWING',
'EXTEND',
];
exports.SQL_EXPRESSION_PARTS = [

View File

@ -2133,7 +2133,12 @@ export function updateIngestionType(
return newSpec;
}
export function issueWithSampleData(sampleData: string[]): JSX.Element | undefined {
export function issueWithSampleData(
sampleData: string[],
spec: Partial<IngestionSpec>,
): JSX.Element | undefined {
if (isStreamingSpec(spec)) return;
if (sampleData.length) {
const firstData = sampleData[0];
@ -2166,14 +2171,18 @@ export function fillInputFormatIfNeeded(
sampleData: string[],
): Partial<IngestionSpec> {
if (deepGet(spec, 'spec.ioConfig.inputFormat.type')) return spec;
return deepSet(spec, 'spec.ioConfig.inputFormat', guessInputFormat(sampleData));
return deepSet(
spec,
'spec.ioConfig.inputFormat',
guessInputFormat(sampleData, isStreamingSpec(spec)),
);
}
function noNumbers(xs: string[]): boolean {
return xs.every(x => isNaN(Number(x)));
}
export function guessInputFormat(sampleData: string[]): InputFormat {
export function guessInputFormat(sampleData: string[], canBeMultiLineJson = false): InputFormat {
let sampleDatum = sampleData[0];
if (sampleDatum) {
sampleDatum = String(sampleDatum); // Really ensure it is a string
@ -2261,6 +2270,11 @@ export function guessInputFormat(sampleData: string[]): InputFormat {
numColumns: lineAsTsvPipe.length,
});
}
// If the object is a single json object spanning multiple lines than the first one will just start with `{`
if (canBeMultiLineJson && sampleDatum.startsWith('{')) {
return { type: 'json', useJsonNodeReader: true };
}
}
return inputFormatFromType({ type: 'regex' });

View File

@ -114,6 +114,7 @@ function generateInputFormatFields(streaming: boolean) {
streaming
? {
name: 'useJsonNodeReader',
title: 'Use JSON node reader',
type: 'boolean',
defined: typeIs('json'),
disabled: (inputFormat: InputFormat) => inputFormat.assumeNewlineDelimited,

View File

@ -19,6 +19,8 @@
import axios, { AxiosError, AxiosInstance, AxiosRequestConfig } from 'axios';
import * as JSONBig from 'json-bigint-native';
import { nonEmptyString } from '../utils';
export class Api {
static instance: AxiosInstance;
@ -32,11 +34,11 @@ export class Api {
(error: AxiosError) => {
const responseData = error.response?.data;
const message = responseData?.message;
if (typeof message === 'string') {
if (nonEmptyString(message)) {
return Promise.reject(new Error(message));
}
if (error.config.method?.toLowerCase() === 'get' && typeof responseData === 'string') {
if (error.config.method?.toLowerCase() === 'get' && nonEmptyString(responseData)) {
return Promise.reject(new Error(responseData));
}

View File

@ -36,7 +36,11 @@ export function isNumberLikeNaN(x: NumberLike): boolean {
return isNaN(Number(x));
}
export function nonEmptyArray(a: any): a is unknown[] {
export function nonEmptyString(s: unknown): s is string {
return typeof s === 'string' && s !== '';
}
export function nonEmptyArray(a: unknown): a is unknown[] {
return Array.isArray(a) && Boolean(a.length);
}

View File

@ -76,7 +76,7 @@ export interface TasksCardProps {
export const TasksCard = React.memo(function TasksCard(props: TasksCardProps) {
const [cardState] = useQueryManager<Capabilities, TaskCountsAndCapacity>({
processQuery: async capabilities => {
const taskCounts = getTaskCounts(capabilities);
const taskCounts = await getTaskCounts(capabilities);
if (!capabilities.hasOverlordAccess()) return taskCounts;
const capacity = await getClusterCapacity();

View File

@ -1364,7 +1364,7 @@ export class LoadDataView extends React.PureComponent<LoadDataViewProps, LoadDat
l.input ? l.input.raw : undefined,
);
const issue = issueWithSampleData(sampleLines);
const issue = issueWithSampleData(sampleLines, spec);
if (issue) {
AppToaster.show({
icon: IconNames.WARNING_SIGN,