0

I am new to Apache iceberg. I would like to know if there is a way I can inspect the queries that are submitted to iceberg. Is there a way to do that?

hba
  • 7,406
  • 10
  • 63
  • 105

1 Answers1

0

Strictly speaking, iceberg is not a service and you can't submit tasks to it.

But if you just want to get all the events that try to query the iceberg table, you can create a listener to listen for all the events that take place in iceberg, including scanning of course. You can take a look at the org.apache.iceberg.events package under iceberg-api module. Hope it will help you.

liliwei
  • 294
  • 1
  • 8