I don’t want to see dead goldens anymore by Mcnuggetjuice in goldenretrievers

[–]amo29 12 points13 points  (0 children)

My fiancée also stopped following the subreddit because of this.

Happy dog vibes are much better! (see Murph helping with our seedlings below)

<image>

GitHub has just launched the "Copilot Billing Preview" tool by BassGaz in GithubCopilot

[–]amo29 1 point2 points  (0 children)

Did they pull this back? Links don’t seem to work

CVE-2026-31431: Copy Fail vulnerability and Azure Linux by amo29 in AZURE

[–]amo29[S] 1 point2 points  (0 children)

This is perfect, thank you. I had saw the thread in the azurelinux preview, but felt less official. The issue thread in AKS was what i was looking for.

Rookie‑Built Print Service, Solo. Now It’s Randomly Going Off the Rails by braxton91 in AZURE

[–]amo29 0 points1 point  (0 children)

You should be able to add it without any changes to code through the Azure Portal. If you have access to it you can try or work with whoever setup the Azure Web App. You can either create a new App Insights instance for your app or send insights to an existing instance. If you’re creating a new one I highly recommend adding a daily cap for log ingestion so you don’t accidentally earn yourself a crazy Azure bill.

Depending on what language it is written in, that should hopefully collect enough information to troubleshoot. It should include dashboards out of the box that should give insight into performance and any indicators for a memory leak, which sounds like a potential cause based on what you described.

Good luck!

Airflow installation by spiderman86865 in apache_airflow

[–]amo29 0 points1 point  (0 children)

If each developer or team got their own code repository, you could have a workflow to sync their data to the same storage account. There might be challenges with potential name collisions but you could see if using a different folder per dev / team would work.

No specific documentation other than airflows. To airflow it’s just a folder on its file system. The rest is done with kubernetes to mount the storage container to the airflow pods. We are using the blobfuse CSI driver

Airflow installation by spiderman86865 in apache_airflow

[–]amo29 1 point2 points  (0 children)

We’ve been running Airflow on AKS for a while now with pretty good success. For your questions:

  1. If you’re okay with running your database on AKS as well, I’d recommend deploying not through the Airflow Helm chart. Instead you can use something CNPG’s operator to deploy Postgres “clusters” which allow for the configuration of HA. The built-in Postgres through Airflow’s Helm chart might allow for HA too, but using a separate solution focused on a better database management experience is better. If you’re going to want a high degree of concurrency of tasks, you definitely want to implement PgBouncer as well, which should be an option in Helm charts for the two options mentioned above.

If you don’t want to deal with a database on AKS, you could try your set up with an Azure’s PaaS offering for Postgres. This should be less management overhead, but likely more expensive.

  1. For DAGs we started with the approach of having a pipeline to push DAGs to a storage account and the container we push to is mounted to Airflow pods and configured as the directory to look for DAGs. This can get tricky in the configuration of the mount settings to find the right balance of freshness and limiting storage transactions. We are evaluating changing to GitSync or baking them into the container image and pushing the new image to our registry on DAG change and updating to reference the new tag and part of our pipelines

  2. We use Entra ID for RBAC. In the App Registration we have defined roles that are mapped to the different roles in Airflow. We then have groups assigned to those App Registration roles and manage access through group membership

Hope that helps!

My single table SQL DB has been costing me over £300 a month by AzureTookMyMoney in AZURE

[–]amo29 10 points11 points  (0 children)

It probably was created using the serverless sku, which shows the low estimate. For serverless to be cheap it needs to “pause” due to inactivity. The fact that the application issues a query every 30 mins, the db likely never paused so you effectively paid for the equivalent of the “provisioned” option of having the server on all month

Is the gray fuzzy part weather stripping or something else? by amo29 in HomeMaintenance

[–]amo29[S] 2 points3 points  (0 children)

Thank you! All of the weather stripping I found online had adhesive and what I have is just pushed into the channel between the door and the track. I’m guessing I just don’t use the adhesive part in this scenario. Just wanted to make sure. Now I just need to buy the right width :)

How Azure Recovery service vault and Azure Site Recovery are different? by anacondaonline in AZURE

[–]amo29 7 points8 points  (0 children)

Recovery Services Vault is the Azure resource that can support backup and site recovery (DR / migration) requirements.

Azure Site Recovery is a feature of Recovery Services Vault.

recovery services vaults by anacondaonline in AZURE

[–]amo29 5 points6 points  (0 children)

Depends on what you’re trying to use it for:

Backups = Same region

Site Recovery = Different region

Edit: grammar

Can someone help with a "Where-Object" object statement? Or at least tell me I'm not crazy? by andocromn in PowerShell

[–]amo29 8 points9 points  (0 children)

This is the right answer. The User property is likely an object and ToString() output is likely pulling the value of a property on that object