[X] I had searched in the issues and found no similar issues.
Version
2.1.4
What's Wrong?
When create paimon catalog used local file system via 'file:', can't get any data from select sql.
And be.WARNING log reported :
W20240619 10:40:28.923295 14875 file_system.cpp:35] [NOT_FOUND]failed to open file:/bigdata/paimon/test.db/
test1/bucket-0/data-f5fd76ac-0ef3-41dc-bfe9-9510c6b66a7c-0.orc
on the other hand, show databases and show create table work well
What You Expected?
please fix this, let doris can read paimon data from local file system.
How to Reproduce?
in flink sql client, create paimon catalog and insert some data.
CREATE CATALOG paimon WITH (
'type' = 'paimon',
'warehouse' = 'file:///bigdata/paimon'
);
USE CATALOG paimon;
create database test;
create table test.test1 (
id INT PRIMARY KEY NOT ENFORCED,
tchar CHAR(100),
tdecimal DECIMAL(12,3)
);
in doris, create paimon catalog and select ,would report a warning.
Search before asking
Version
2.1.4
What's Wrong?
When create paimon catalog used local file system via 'file:', can't get any data from select sql. And be.WARNING log reported :
on the other hand,
show databases
andshow create table
work wellWhat You Expected?
please fix this, let doris can read paimon data from local file system.
How to Reproduce?
in flink sql client, create paimon catalog and insert some data.
in doris, create paimon catalog and select ,would report a warning.
Anything Else?
in Release 2.1.2 , doris works well
Are you willing to submit PR?
Code of Conduct