e-mhui opened a new issue, #6578:
URL: https://github.com/apache/inlong/issues/6578

   ### What happened
   
   I want to write bitmap data to Doris's table, so I config Flink sql follow 
as : 
   
   ```sql
   CREATE TABLE `table_2`(
       `dt` INT,
       `page` STRING,
       `user_id` INT)
       WITH (
       'inlong.metric.labels' = 'groupId=1&streamId=1&nodeId=2',
       'sink.properties.columns' = 'dt,page,user_id,user_id=to_bitmap(user_id)',
       'connector' = 'doris-inlong',
       'fenodes' = 'xxxx:8030',
       'username' = 'root',
       'password' = 'xxx',
       'sink.multiple.enable' = 'false',
       'table.identifier' = 'db.table'
   )
   ```
   
   When I insert data, Doris returns the following error message:
   
   ```bash
   {
       "TxnId": 89129,
       "Label": "0c999dcb-6e30-4d65-82c8-b3b59a23e0b2",
       "TwoPhaseCommit": "false",
       "Status": "Fail",
       "Message": "too many filtered rows",
       "NumberTotalRows": 3,
       "NumberLoadedRows": 0,
       "NumberFilteredRows": 3,
       "NumberUnselectedRows": 0,
       "LoadBytes": 30,
       "LoadTimeMs": 6,
       "BeginTxnTimeMs": 0,
       "StreamLoadPutTimeMs": 0,
       "ReadDataTimeMs": 0,
       "WriteDataTimeMs": 4,
       "CommitAndPublishTimeMs": 0,
       "ErrorURL": 
"http://xxx.xxx.xxx.xxx:8040/api/_load_error_log?file=__shard_464/error_log_insert_stmt_304ff8ea0f483b51-70e80551f60a35a9_304ff8ea0f483b51_70e80551f60a35a9";
   }
   ----
   Reason: actual column number is more than schema column number.actual 
number: 4, column separator: [,], line delimiter: [
   ], schema number: 3; . src line [3,a3,31,0]; 
   ```
   
   ### What you expected to happen
   
   Correctly synchronize the bitmap data to the Doris table.
   
   ### How to reproduce
   
   Set the sink.properties.columns parameter in the SQL of the Doris connector.
   
   ### Environment
   
   _No response_
   
   ### InLong version
   
   master
   
   ### InLong Component
   
   InLong Sort
   
   ### Are you willing to submit PR?
   
   - [X] Yes, I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of 
Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
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]

Reply via email to