thesumery opened a new issue, #5928:
URL: https://github.com/apache/inlong/issues/5928
### What happened
when I test inlong sort link and wanto to verify the correctness of audit
data, but I find there is no audit data when I test sort link loading data into
iceberg;
### What you expected to happen
Audit data is normally stored when I test sort link loading data into
iceberg;
### How to reproduce
1. prepare a mysql 5.7+ and flink 1.13 and inlong audit env
2. create a mysql table and insert some data
```
use inlong;
create table if not exists `inlong_input13` (
`id` bigint,
`name` varchar(63),
PRIMARY KEY(id)
);
insert into inlong_input13 (id, name) values (1, 'haha');
insert into inlong_input13 (id, name) values (2, 'xixi');
```
3. create a sort link in flink client
```
CREATE TABLE inlong_input13 (
`id` bigint,
`name` STRING,
PRIMARY KEY(id) NOT ENFORCED
) WITH (
'connector' = 'mysql-cdc-inlong',
'hostname' = 'localhost',
'port' = '3306',
'username' = 'root',
'password' = '123456',
'database-name' = 'inlong',
'table-name' = 'inlong_input13',
'scan.incremental.snapshot.enabled'='true');
CREATE TABLE inlong_iceberg13 (
id bigint,
name string,
PRIMARY KEY(id) NOT ENFORCED
) WITH (
'connector'='iceberg-inlong',
'catalog-name'='hive_prod',
'catalog-database'='inlong',
'catalog-table'='inlong_iceberg13',
'uri'='thrift://localhost:9083',
'warehouse'='hdfs://localhost:8020/hive/warehouse',
'sink.ignore.changelog' = 'true',
'inlong.group_stream_node'='group_1&stream_2&node_3',
--验证metric的,可加可不加,加了那么指标就会发送给带groupId的指标就会发送给pushgateway
'metrics.audit.proxy.hosts'='localhost:10081'
);
```
4. check there has any data in inlong audit storage database.
### 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]