I’m trying to read query results in parallel. I’m following the docs at Read Query Results in Parallel · SingleStore Documentation
When I create result tables for two queries and then try to read from these tables, for one of them I’m getting an error like Aggregator result table 'some_db.some_table' doesn't exist
. Sometimes I also get Error: 2318-HY000: Leaf Error (127.0.0.1:3307): Internal result table 'some_db::1_15_pdt.some_table(2)' doesn't exist.
After creating these result tables, I make sure they exist by running a SHOW RESULT TABLE
query.
It does not matter if I use single-reader mode or create materialized result tables.
I’m testing this with very tiny tables (5-25 rows), where all rows are in a single partition. There are 8 partitions by default.
I’m running SingleStore in a local container using the memsql/cluster-in-a-box:alma-8.0.4-c190bb9c08-4.0.10-1.14.4
image. I’m also using the com.singlestore:singlestore-jdbc-client:1.2.0 JDBC driver.
How I can debug this issue? The docs are pretty sparse about this feature. I stumbled on SHOW RESULT TABLES
in release notes, as it’s not even documented.