We are experimenting with Ingestion Transformation...
# troubleshooting
t
We are experimenting with Ingestion Transformations, specifically having a filterConfig. It works as expected, but there seems to be no way change the filterConfig. Running
pinot-admin.sh AddTable
with a changed filterConfig updates the table description shown in the UI, but does not reflect in the data actually ingested; we had to drop and recreate the table, which workable for testing but not later. Is there a way to get Pinot to actually use the new filterConfig?
k
It will be used once the current consuming segments gets flushed to disk or when you restart the servers
You can also called reset/reload segments api
t
Thanks!