Hi everyone, i am getting an error when i try to c...
# troubleshooting
a
Hi everyone, i am getting an error when i try to create a hybrid table. I create the realtime table first succesfully but when i try to create offline table afterwards it gives me this error. I have been using the same schema and config file with no problem before upgrading to 0.11.0
{"code":400,"error":"TableConfigs: mytable already exists. Use PUT to update existing config"}
i use commands below inside the controller shell to create my tables.
bin/pinot-admin.sh AddTable -schemaFile schema.json -tableConfigFile offline.json -exec
bin/pinot-admin.sh AddTable -schemaFile schema.json -tableConfigFile realtime.json -exec
n
looks like a bug introduced in this PR https://github.com/apache/pinot/pull/9228
can you use swagger API for now?
a
which endpoint should i use to add my tables?
n
Post /tables under Tables tab in swagger
a
thank you, it did the work 🙏