Vladislav Pyatkov created IGNITE-14646:
------------------------------------------
Summary: Support asynchronous table creation
Key: IGNITE-14646
URL: https://issues.apache.org/jira/browse/IGNITE-14646
Project: Ignite
Issue Type: Improvement
Reporter: Vladislav Pyatkov
Today we are using a dirty hack for waiting to create a table in
{{TableManagerImpl#createTable}} method:
{code}
Table tbl = null;
while (tbl == null) {
Thread.sleep(50);
tbl = table(name);
}
{code}
It needs to implement this through a future without a waiting loop.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)