Hi,
I have a dremio application running on a container that has 2 data sources configured:
- A Greenplum database
- A MySQL database
I noticed that when I query something like this:
SELECT * FROM greenplum.TABLE1
INNER JOIN mysql.TABLE2
ON …
Dremio selects only data from both databases and performs the join internally.
I would like to know if there is a way to reproduce the same behavior when using only one database:
SELECT * FROM mysql.TABLE1
INNER JOIN mysql.TABLE2
ON …
The purpose is to avoid performing JOINS and other heavy operations on this legacy mysql server.
Is there a configuration, or a way to do this? A co-worker tried to perform this using virtual datasets but without success.
Thanks in advance.