You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@iotdb.apache.org by "changxue (Jira)" <ji...@apache.org> on 2023/03/13 04:38:00 UTC

[jira] [Created] (IOTDB-5668) [tsfile]load the tsfile which is from export-tsfile failed with 701

changxue created IOTDB-5668:
-------------------------------

             Summary: [tsfile]load the tsfile which is from export-tsfile failed with 701
                 Key: IOTDB-5668
                 URL: https://issues.apache.org/jira/browse/IOTDB-5668
             Project: Apache IoTDB
          Issue Type: Bug
    Affects Versions: 1.1.0-SNAPSHOT
            Reporter: changxue
            Assignee: yusicheng


[tsfile]load the tsfile which is from export-tsfile failed with 701

build:
version 1.1.0-SNAPSHOT (Build: 1139928)


reproduction:
1. start 1c1d with default configuration
2. run commands below on start-cli.sh
{code}
create timeseries root.ln.wf01.wt01.status with datatype=BOOLEAN,encoding=PLAIN;
insert into root.ln.wf01.wt01(time, status) values (1, true);
select * from root.ln.wf01.wt01;

create timeseries root.ln.wf01.wt01.temperature with datatype=FLOAT,encoding=RLE;
insert into root.ln.wf01.wt01(time, temperature) values (1, 2.6);
insert into root.ln.wf01.wt01(time, status, temperature) values (2, true, 35);
insert into root.ln.wf01.wt01(time, status, temperature) values (3, false, 35.5);
{code}
3.  export tsfile:
{code}
./export-tsfile.sh -q "select * from root.ln.wf01.wt01" -h 127.0.0.1 -p 6667 -u root -pw root -td .
{code}

4. load tsfile:
{code}
changxuedeMacBook-Pro-2:tools changxue$ ./load-tsfile.sh -f /Users/changxue/Downloads/apache-iotdb-1.1.0-SNAPSHOT-all-bin/tools/dump0.tsfile 
---------------------
Start Loading TsFile
---------------------
start loading TsFiles, please wait...
Msg: 701: Auto create or verify schema error when executing statement LoadTsFileStatement{file=/Users/changxue/Downloads/apache-iotdb-1.1.0-SNAPSHOT-all-bin/tools/dump0.tsfile, deleteAfterLoad=true, sgLevel=1, verifySchema=true, tsFiles Size=1}.
{code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)