Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fix import status check bug #100

Merged
merged 1 commit into from
Jan 24, 2022
Merged
Show file tree
Hide file tree
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
65 changes: 36 additions & 29 deletions app/modules/Import/Tasks/Import.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,7 @@ class Import extends React.Component<IProps, IState> {
activeStep,
});
if (errCode === 0) {
this.logTimer = setTimeout(this.readlog, 3000);
this.checkTimer = setTimeout(this.checkIsFinished, 2000);
this.checkTimer = setTimeout(this.checkTaskStatus, 3000);
}
trackEvent('import', 'import_data', 'start');
};
Expand All @@ -148,12 +147,14 @@ class Import extends React.Component<IProps, IState> {
}
};

checkIsFinished = async () => {
checkTaskStatus = async () => {
const { taskId } = this.props;
const { code, data, message: errMsg } = await this.props.checkImportStatus({
taskID: taskId,
taskAction: 'actionQuery',
});
await this.readlog();

if (code !== 0) {
message.warning(errMsg);
return;
Expand All @@ -165,50 +166,56 @@ class Import extends React.Component<IProps, IState> {
message.warning(result.taskMessage);
}
if (result?.taskStatus === ITaskStatus.statusFinished) {
message.success(intl.get('import.importFinished'));
trackEvent('import', 'import_data', 'finish');
}
this.logTimer = setTimeout(this.checkLogFinished, 3000);
service.finishImport({ taskId });
clearTimeout(this.checkTimer);
} else {
this.checkTimer = setTimeout(this.checkIsFinished, 2000);
this.checkTimer = setTimeout(this.checkTaskStatus, 3000);
}
};

checkLogFinished = async () => {
const { update } = this.props;
const empty = await this.readlog();
if (empty) {
message.success(intl.get('import.importFinished'));
this.setState({
startByte: 0,
endByte: 1000000,
});
update({
isImporting: false,
});
clearTimeout(this.logTimer);
} else {
this.logTimer = setTimeout(this.checkLogFinished, 3000);
}
};

readlog = async () => {
const { startByte, endByte } = this.state;
const { taskDir, taskId, update } = this.props;
const result: any = await service.getLog({
const { taskDir, taskId } = this.props;
const { code, data } = await service.getLog({
dir: taskDir,
startByte,
endByte,
taskId,
});
const byteLength = result.data ? getStringByteLength(result.data) : 0;
if (result.data && result.code === 0) {
this.setState(
{
const byteLength = data ? getStringByteLength(data) : 0;
if (code === 0) {
if (data) {
this.setState({
startByte: startByte + byteLength,
endByte: startByte + byteLength + 1000000,
},
() => {
this.logTimer = setTimeout(this.readlog, 2000);
},
);
this.ref.innerHTML += result.data;
} else {
if (result.code === 0) {
this.logTimer = setTimeout(this.readlog, 2000);
} else {
this.setState({
startByte: 0,
endByte: 1000000,
});
update({
isImporting: false,
});
clearTimeout(this.logTimer);
trackEvent('import', 'import_data', 'finish');
this.ref.innerHTML += data;
} else {
return true;
}
} else {
return true;
}
this.ref.scrollTop = this.ref.scrollHeight;
};
Expand Down
6 changes: 1 addition & 5 deletions app/modules/Schema/CreateSpace/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,7 @@ import { RouteComponentProps, withRouter } from 'react-router-dom';

import { Instruction } from '#app/components';
import GQLCodeMirror from '#app/components/GQLCodeMirror';
import {
nameRulesFn,
numberRulesFn,
replicaRulesFn,
} from '#app/config/rules';
import { nameRulesFn, numberRulesFn, replicaRulesFn } from '#app/config/rules';
import { IDispatch, IRootState } from '#app/store';
import { getSpaceCreateGQL } from '#app/utils/gql';
import { trackEvent, trackPageView } from '#app/utils/stat';
Expand Down
33 changes: 12 additions & 21 deletions app/utils/import.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import _ from 'lodash';
import intl from 'react-intl-universal';

import { handleVidStringName } from './function';

export function configToJson(payload) {
const {
currentSpace,
Expand Down Expand Up @@ -42,7 +43,7 @@ export function configToJson(payload) {
address: host,
},
},
logPath: taskDir + '/import.log',
logPath: `${taskDir}/import.log`,
files,
};
return configJson;
Expand All @@ -57,9 +58,7 @@ export function edgeDataToJSON(
const limit = activeStep === 2 || activeStep === 3 ? 10 : undefined;
const files = config.map(edge => {
const edgePorps: any[] = [];
_.sortBy(edge.props, t => {
return t.mapping;
}).forEach(prop => {
_.sortBy(edge.props, t => t.mapping).forEach(prop => {
switch (prop.name) {
case 'rank':
if (prop.mapping !== null) {
Expand Down Expand Up @@ -95,7 +94,7 @@ export function edgeDataToJSON(
const edgeConfig = {
path: edge.file.path,
failDataPath: `${taskDir}/err/${edge.name}Fail.csv`,
batchSize: 10,
batchSize: 60,
limit,
type: 'csv',
csv: {
Expand All @@ -109,7 +108,7 @@ export function edgeDataToJSON(
srcVID: edge.srcVID,
dstVID: edge.dstVID,
rank: edge.rank,
withRanking: edge.rank?.index !== undefined ? true : false,
withRanking: edge.rank?.index !== undefined,
props: edgePorps,
},
},
Expand All @@ -129,9 +128,7 @@ export function vertexDataToJSON(
const files = config.map(vertex => {
const tags = vertex.tags.map(tag => {
const props = tag.props
.sort((p1, p2) => {
return p1.mapping - p2.mapping;
})
.sort((p1, p2) => p1.mapping - p2.mapping)
.map(prop => {
if (prop.mapping === null && prop.isDefault) {
return null;
Expand All @@ -151,7 +148,7 @@ export function vertexDataToJSON(
const vertexConfig: any = {
path: vertex.file.path,
failDataPath: `${taskDir}/err/${vertex.name}Fail.csv`,
batchSize: 10,
batchSize: 60,
limit,
type: 'csv',
csv: {
Expand Down Expand Up @@ -187,7 +184,7 @@ export function getStringByteLength(str: string) {
const len = str.length;
for (let i = 0, n = len; i < n; i++) {
const c = str.charCodeAt(i);
if ((c >= 0x0001 && c <= 0x007e) || (0xff60 <= c && c <= 0xff9f)) {
if ((c >= 0x0001 && c <= 0x007e) || (c >= 0xff60 && c <= 0xff9f)) {
bytesCount += 1;
} else {
bytesCount += 2;
Expand Down Expand Up @@ -224,7 +221,7 @@ export function getGQLByConfig(payload) {
}
if (prop.mapping !== null) {
// HACK: Processing keyword
tagField.push('`' + prop.name + '`');
tagField.push(`\`${prop.name}\``);
const value =
prop.type === 'string'
? `"${columns[prop.mapping]}"`
Expand All @@ -233,10 +230,7 @@ export function getGQLByConfig(payload) {
}
});
NGQL.push(
'INSERT VERTEX ' +
'`' +
tag.name +
'`' +
`${'INSERT VERTEX ' + '`'}${tag.name}\`` +
`(${tagField}) VALUES ${handleVidStringName(
columns[vertexConfig.idMapping],
spaceVidType,
Expand Down Expand Up @@ -266,7 +260,7 @@ export function getGQLByConfig(payload) {
prop.mapping !== null
) {
// HACK: Processing keyword
edgeField.push('`' + prop.name + '`');
edgeField.push(`\`${prop.name}\``);
const value =
prop.type === 'string'
? `"${columns[prop.mapping]}"`
Expand All @@ -279,10 +273,7 @@ export function getGQLByConfig(payload) {
? ''
: `@${columns[edgeConfig.props[2].mapping]}`;
NGQL.push(
'INSERT EDGE ' +
'`' +
edgeConfig.type +
'`' +
`${'INSERT EDGE ' + '`'}${edgeConfig.type}\`` +
`(${edgeField.join(',')}) VALUES ${handleVidStringName(
columns[edgeConfig.props[0].mapping],
spaceVidType,
Expand Down