ydb-platform / ydb

YDB is an open source Distributed SQL Database that combines high availability and scalability with strong consistency and ACID transactions
https://ydb.tech
Apache License 2.0
3.98k stars 560 forks source link

Add query handler to work through ExecuteScript #8574

Open StekPerepolnen opened 1 month ago

StekPerepolnen commented 1 month ago

Query execution support.

This functionality described in public API (execute query, fetch result, list operation) and allow user to execute script asynchronous and save result set by configurable ttl.

To support this functionality on UI we need:

Operation list page and listing

Execute script button and http handler

Fetch Result http handler and adapter for viewing

StekPerepolnen commented 1 month ago

added new handles query_execute and query_fetch in the viewer. I will add support from grpc_service

It is also known that grps operations does not return errors in case of problems and crashes on timeout. it is necessary to return an error in these cases