Igor Gusev created IGNITE-26446:
-----------------------------------
Summary: Dropping a table right after creating breaks leases
Key: IGNITE-26446
URL: https://issues.apache.org/jira/browse/IGNITE-26446
Project: Ignite
Issue Type: Task
Reporter: Igor Gusev
If you drop a table you just created, it causes issues with leases and makes
the cluster unresponsive.
{code:java}
sqlScript(""
+ "CREATE TABLE Person (\n"
+ " id int PRIMARY KEY,\n"
+ " city_id int,\n"
+ " name varchar,\n"
+ " age int,\n"
+ " company varchar\n"
+ ");"
+ "DROP TABLE Person;"
);{code}
This causes lease update warnings in log and no other commands can be executed.
{code:java}
2025-09-16 15:24:25:383 +0300
[WARNING][%defaultNode%JRaft-FSMCaller-Disruptor-metastorage_group_stripe_0-0][LeaseUpdater]
Lease update invocation failed because of outdated lease data on this node.
{code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)