Hello everyone,
I’m currently working with the Internet Computer and facing an issue regarding instruction limits for composite queries. To give you some background, I’ve written a composite_query
that calls two other queries via ic_cdk::api::call
. Those other queries are also within the same canister as the composite_query
. Individually, these queries stay within the 5 billion instruction limit. However, when combined in composite_query
, the composite_query throws the instruction limit exceeded error.
The crux of my query is this: if composite_query
were to call other canisters instead, would the computation within those calls be included in the instruction limit for composite_query
?
@jennifertran suggested I initiate a new forum post to discuss this, as it might bring fresh perspectives, particularly from @ulan who might not see it if in the comments of the Composite Query Proposal.
I look forward to any insights or suggestions you might have.