lymedo
lymedo
What is the solution to this issue? I'm trying to connect to an Azure Artifact from a DevOps pipeline but can't do it without receiving the Device Flow prompt.
I've finally managed to get this working in a Azure DevOps Release pipeline by including a 'NuGet authenicate' task. This now works without a Device Flow prompt in the task...
@mathbunnyru I'm afraid that I'm a newbie to docker so I'm probably not the right person to draft the PR. Thanks for the link to the recipe. I have a...
I'd picked up on the Spark version for Delta so built the image using the following: ## Dockerfile ``` FROM jupyter/pyspark-notebook:spark-3.2.1 ARG DELTA_CORE_VERSION="1.2.1" RUN pip install --quiet --no-cache-dir delta-spark==${DELTA_CORE_VERSION} &&...
Thanks for the information. Having read through the docs, it feels like I need Optimistic concurrency with conditional headers in the request. If I supplied **If-Matched || If-Not-Matched**, I assume...
With an append block blob, I'm not concerned about reading or writing to the latest version of the blob. With my consumer function being a real-time ingestion app, I just...
To elaborate... AppendBlockAsync() raises an error if the blob is not found. This requires checking if the blob exists and creating the blob if required. The downside to this is...
Hi, thanks for the response. The problem with just using CreateIfNotExistsAsync() is that it logs BlobAlreadyExists in the storage diagnostics logs for every request, which again creates a whole lot...
@kylewarren I've observed a significant drop off in conflicts so the try/catch method has definitely improved things in my scenario. It's now only logging a failure when the block is...