Lets say I have 20 SnappyData nodes.
And, I have a table like this:
example_timeseries_table
id int not null,
value varchar(128) not null,
time timestamp not null
foo varchar(128) not null,
PARTITION BY COLUMN time
And, I make the query:
select sum(value) from example_timeseries_table where foo = 'xyz'
Does SnappyData call out to all 20 nodes, collect the results and then return the response? If so, how would I improve how to make this type of query? Should the table be designed differently to make "foo" a PARTITION column?