Lucy Zhang

Results 20 comments of Lucy Zhang

If cell 1 is active and I search for a term that is in cell 2, I would still expect the notebook to scroll to cell 2 even though cell...

Hi @sumngh, is this only happening for the first cell you run when you open a notebook? How long are the cells running for?

@sumngh For the query that ran for over 15 minutes, did it ever complete? Would you be able to try running that same query in a query editor and see...

Hi @sumngh, Could you try running the same query in a query editor to see if the first run also takes longer there? You can open a new query editor...

@sumngh Did you run the query in a query editor or notebook? I would like to clarify if the issue lies in notebooks or elsewhere.

Yes, in Python you can use SqlRowList to add multiple rows. See this sample: https://github.com/Azure/azure-functions-sql-extension/blob/3a5971284fc6bb6dc0d16e4d10f159220de4e9a2/samples/samples-python/AddProductsArray/__init__.py#L16

@LouisDeconinck, this seems like a functions error, not specific to SQL Bindings. Could you file an issue in the [Azure Functions Host repository](https://github.com/Azure/azure-functions-host/issues)?

@LouisDeconinck Can you create a separate issue for your question please? https://github.com/Azure/azure-functions-sql-extension/issues/new/choose Thank you!

@LouisDeconinck SQL output bindings does not have built in support for retries (https://github.com/Azure/azure-functions-sql-extension/blob/main/docs/BindingsOverview.md#retry-support-for-output-bindings). Since you are using a timer trigger, would something like this retry example help? https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-error-pages?tabs=fixed-delay%2Cisolated-process%2Cnode-v4%2Cpython-v2&pivots=programming-language-python#retry-examples

Looks like the perf tests were broken by my integration test refactor - will address that now.