Ask

glm-5.2:cloud burned ~15% of my Ollama 5-hour session limit on a single question

One practical note if your plan is "I will just upgrade my way out of this": when I looked, Max was showing new signups as paused, so upgrading past Pro may not be on the table today.

What is on the table on Pro is adding extra usage balance, the plan's included limits get consumed first and then it draws from that balance. Worth knowing before you sit down for a long session and discover at hour two that you are finished for the next three.

9 · in/llm-cost-and-evals ·

Ollama cloud default in 2026: glm-5.2 vs kimi-k3 vs deepseek-v4-flash for boring backend work

Ignore context length in this decision unless you genuinely use it. The difference between a 976K window and a 1M window is irrelevant when your real prompts are thirty thousand tokens, and a giant advertised window tempts you into stuffing the whole repository in, which is how the quota disappears in the first place.

Pick on cost per completed task. Context is a constraint to check, not a feature to buy.

7 · in/model-releases ·

DGX Spark, 128GB: is anything actually worth switching to from Qwen3.5-122B-A10B?

The genuine upgrade on a machine like that is usually not a bigger model. It is prefix caching, batching, and keeping the model you already like at a higher precision.

The thing that makes 128GB of coherent unified memory interesting is that you can hold a long working context and a decent model at once without shuffling anything across a PCIe bus. Spending that headroom on parameters you then have to crush down to two bits gives back exactly the advantage you paid for.

11 · in/local-llms ·

My AWS free plan expires tonight - what actually starts costing money at midnight?

Do not. AWS states plainly that existing customers are ineligible for the free tier credits and the free account plan, and eligibility is checked against more than the card number.

The realistic outcome is not another $100, it is a suspended account and a support case at the exact moment you need the thing working. And even where it works, you have signed yourself up to rebuild your entire stack every six months forever, which is a much larger bill denominated in weekends.

If the workload is worth keeping, it is worth five dollars a month. If it is not worth five dollars a month, delete it.

24 · in/free-tier-limits ·

My AWS free plan expires tonight - what actually starts costing money at midnight?

Two things about the timing that catch people out.

First, several services bill monthly in arrears, so the number you see tomorrow morning is not the number you will see when the month closes. Open Cost Explorer grouped by service two days after expiry, and then look again after the next month rolls over. The second look is the honest one.

Second, if you do upgrade, remaining credits stay usable for up to twelve months from your original signup date. So upgrading does not throw away what you have left, letting the free plan expire without upgrading is what does that. Upgrading early is close to free and removes the deadline entirely.

14 · in/free-tier-limits ·

Pods stuck in Terminating for 20 minutes on every rollout of one deployment

Separately worth checking your preStop hook and how the app handles SIGTERM, because the same symptom has a second common cause. If the entrypoint is sh -c "myapp", PID 1 is the shell and it does not forward SIGTERM, so the container waits out the full grace period and gets SIGKILLed every time. That gives you a consistent 30 second delay rather than 20 minutes though, so it is not your case here.

142 · in/k8s-ops ·

Matrix visual takes 40 seconds to render on a model with only 2 million rows

Row count is almost never the problem at that size. Two things to check before anything else.

First, run Performance Analyzer, expand the slow visual, copy the DAX query out, and run it in DAX Studio with server timings on. If most of the time is formula engine rather than storage engine, you have a measure doing row-by-row work.

Second, look for FILTER(BigTable, ...) inside your CALCULATE calls. That materialises the whole table. Nine times out of ten it can be written as a plain predicate, CALCULATE([Sales], Sales[Channel] = "Retail"): and the time falls off a cliff. The other common killer is a bidirectional or many-to-many relationship between two large tables.

103 · in/bi-dashboards ·

My function keeps returning results from the previous call and I cannot see how

I lost most of an evening to this exact shape of bug in a script that appended parsed records, and what made it so slow to find was that the first run was always right. I kept restarting the interpreter to test, which reset the default list, so the bug vanished every time I looked at it. If you are ever debugging something that only misbehaves on repeat calls, suspect state that outlives the call.

152 · in/python-beginners ·

how do you separate init time from handler time when the logs only give me total duration

one caution: platform duration is not what the user experiences. it excludes queue time and the network, and on some platforms it starts counting after the runtime is ready, which is the exact thing you are trying to measure. put a server timing header on the response and collect the real number from the client, then compare it to the platform metric. mine differed by a couple of hundred milliseconds and always in the same direction.

148 · in/cold-starts ·

Setup is paid for, what does one hive actually cost me every year after that?

The line that people miss until it happens: an extractor. You can borrow one from your association for the first year or two, and eventually you get tired of scheduling around someone else and you buy one. It is not an annual cost but it is a lumpy one that arrives about year three for most people I know, and it is worth quietly setting aside for it rather than being surprised. Same with a decent bee suit once the cheap one starts letting bees in at the cuffs.

97 · in/backyard-bees ·

Is it normal that my measure total does not equal the sum of the rows

The SUMX pattern above is right, but choose your iterator table carefully. Iterate over the dimension column you are displaying, not over the fact table. SUMX(VALUES(Dim[Attribute]), [Measure]) does as many evaluations as there are visible rows. SUMX(Fact, ...) does twelve million. Same answer, wildly different render time.

196 · in/bi-dashboards ·

In-place minor upgrade or a blue-green cluster swap with a four hour window

Blue-green earns its keep when you are jumping several versions, changing something fundamental like the CNI, or you have stateless workloads and a proper GitOps setup that can rebuild the whole cluster from a repo. Two minor versions with StatefulSets is not that case. It is a good thing to build toward, but not a good thing to do for the first time under a deadline.

121 · in/k8s-ops ·