Summary: The article reports on three studies showing how early cardinality understanding predicts later math readiness, and how parental factors—especially the complexity of number talk and parental math anxiety—shape preschoolers' quantitative development. It highlights the role of home conversations and child executive function in supporting early math skills, with evidence drawn from longitudinal research.

This piece is of interest to psychology enthusiasts because it integrates developmental cognition with social and environmental influences, illustrating how both individual cognitive capacities and parental attitudes contribute to early mathematical learning.

Article Title: Parental math anxiety linked to lower quantitative skills in young children

Link to PsyPost Article: https://www dot psypost.org/parental-math-anxiety-linked-to-lower-quantitative-skills-in-young-children/

Copy and paste broken link above into your browser and replace "dot" with "." for link to work. We have to do it this way to avoid displaying copyrighted images.

#parenteffect #cardinality #earlymath #executivefunction #mathanxiety

VictoriaMetrics present at - #SREday 2025 in #UK !

📍 Location: Everyman Canary Wharf
📅 September 18th at 4:30 PM BST

@dianatodea , #VictoriaMetrics Developer Advocate will present “Cutting Through Metrics #Cardinality Noise with VictoriaMetrics”.

#KnowledgeSharing post:

Yesterday I talked about #metrics #cardinality and churn, and how they can affect #Prometheus server performance.

Today I want to talk about unbounded cardinality, which is when there is no fixed maximum value for the cardinality of a time series. Unbounded cardinality is not only detrimental to Prometheus server performance, but it also introduces a lot of metrics noise, leading to degraded #observability.

A common example of unbounded cardinality is mapping an HTTP server's request path to a label. At a glance this may seem like a good idea, for example to identify which requests are taking the longest to serve. However, this only works if the received requests represent valid traffic. A client that is scraping the site or a malicious actor performing reconnaissance will throw the dictionary at the server, and a small site serving a dozen or so legitimate pages will produce millions of idle time series from all these requests that were seen only once.

My recommendation for HTTP request metrics is to only produce aggregate metrics. For example, instead of producing metrics for every request path, instead produce metrics for the routes configured on the server. This does not mean that observability granularity needs to be sacrificed: Metrics can be complemented with #traces for each HTTP request, and aggressive sampling can be applied to the traces so that only the "interesting" ones are kept - the exceptions, requests taking too long, with too big of a payload, etc.

#KnowledgeSharing session:

When dealing with low performance problems in #Prometheus servers, the two most common causes are high cardinality and high churn rate.

#cardinality represents how variable a metric is, as a combination of the variability of its labels. For example, a metric with five labels where each can have ten different values has a cardinality of 10**5. This means that in the worst case, your Prometheus server will be storing 100k data points per scrape for this time series alone. At this scale, every little optimisation counts. Reducing the variability of a single label by half reduces the cardinality of the time series by half, saving you 50k data points per scrape. Similarly, reducing the variability of each label by just one point makes the time series cardinality 9**5, which comes to just over 59k.

#ChurnRate is the rate in which old time series are replaced with new ones. For example, a workload that runs as a cron job and includes the PID as a label will churn every time the job executes, because it will be a new process. High churn rate tends to kill Prometheus server performance because it invalidates the in-memory caches of the server, leading to higher write costs.

One thing to point out is that churn rate and cardinality are not necessarily coupled. Yes, higher cardinality will lead to higher churn rate, but a metric that cycles labels between numbers 1 and 100 can still cause churn, and a series with high cardinality labels (such as VM names when running thousands of VMs) does not imply high churn if the labels stay consistent. However, time series that significantly impact Prometheus server performance do frequently show high cardinality and high churn rate at the same time.

In #VictoriaMetrics #Cloud ☁️, #MCP Server now supports nearly all read-only #APIs 📡 — just like the #VMUI 🖥️, but via natural language 💬!
📊 #Query metrics
🧾 Export data
🧠 #Trace queries
🛠️ Debug configs
🚨 Inspect #alerts
📉 Explore #cardinality
⚙️ Check usage
Find more information in the latest Q2 #Blog post release 👉 https://hubs.li/Q03x1z8m0

New feature in #VictoriaMetrics

#Cardinality Explorer is now even more powerful:

Integrates with the Metrics usage tracker to show how many times and when a specific metric name was queried.
Makes it significantly easier to identify #metrics that are stored but never used, helping to reduce unnecessary resource consumption and improve #performance.

Find more information in the docs:
https://docs.victoriametrics.com/#cardinality-explorer

VictoriaMetrics

Documentation for VictoriaMetrics, VictoriaLogs, Operator, Managed VictoriaMetrics and vmanomaly

Infinity in Mathematics

In mathematics, there are different types of infinity, primarily categorized by their size or cardinality.

Knowledge Zone

Evolution of the notation for the empty set:
0 - George Boole 🇬🇧 (1847)
𝑂 - Georg Cantor 🇩🇪 (1880)
{} - Gottlob Frege 🇩🇪 (1882)
Λ - Giuseppe Peano 🇮🇹 (1889)
∅ - Andre Weil 🇫🇷 (1939)

"Much later, my own part in these discussions earned me the respect of my daughter Nicolette, when she learned the symbol Ø for the empty set at school and I told her that I had been personally responsible for its adoption." - Andre Weil

#Set #EmptySet #NullSet #Null #Zero #Cardinality

How to make high cardinality work in time series databases: Part 1 | Last9

Part 1 of the series of posts which talk about engineering design decisions to make high cardinality work in time-series databases