xtern commented on code in PR #4977: URL: https://github.com/apache/ignite-3/pull/4977#discussion_r1901758898
########## modules/runner/src/main/java/org/apache/ignite/internal/app/IgniteImpl.java: ########## @@ -1075,6 +1076,9 @@ public class IgniteImpl implements Ignite { clockService ); + EventLog eventLog = new EventLogImpl(clusterCfgMgr.configurationRegistry() Review Comment: Thanks. I hope I fixed it. ########## modules/sql-engine/src/main/java/org/apache/ignite/internal/sql/engine/exec/fsm/QueryExecutor.java: ########## @@ -360,4 +384,35 @@ public void stop() throws Exception { runningQueries.values().forEach(query -> query.onError(ex)); } + + private Event makeStartEvent(Query query) { + QueryInfo queryInfo = new QueryInfo(query); + Map<String, Object> fields = IgniteUtils.newLinkedHashMap(7); + + fields.put("initiator", nodeId); Review Comment: Done -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org