Showing results for 2020 - Page 17 of 18 - .NET Blog

Feb 27, 2020
3
0

Provisional Mode

maoni
maoni

A coworker asked me what this “PMFullGC” trigger reason he’s seeing in GCStats means. I thought it’d be useful to share the info here.PM stands for Provisional Mode which means after a GC starts, it can change its mind about the kind of GC it’s doing. But what does that mean exactly? So normally when we start a GC, the first things we do are-And af...

.NET
Feb 26, 2020
5
0

ASP.NET Core Apps Observability

Francisco Beltrao
Francisco Beltrao

Based on interactions with customers using .NET Core in different environments, this article explores options for adding observability to .NET Core apps. Looking specifically into OpenTelemetry and Application Insights SDKs to add observability to a sample distributed application.

ASP.NETASP.NET Core.NET Core
Feb 25, 2020
5
0

.NET Framework February 2020 Preview of Quality Rollup

Tara Overfield
Tara Overfield

Today, we are releasing the February 2020 Preview of Quality Rollup Updates for .NET Framework. Quality and Reliability This release contains the following quality and reliability improvements. CLR1 WCF2 Workflow Winforms 1 Common Language Runtime (CLR) 2 Windows Communication Foundation (WCF) Getting the Update The P...

.NET.NET Framework
Feb 18, 2020
14
0

.NET Core February 2020 Updates – 2.1.16, 3.0.3, and 3.1.2

Rahul Bhandari (MSFT)
Rahul Bhandari (MSFT)

Today, we are releasing the .NET Core February 2020 Update. These updates only contain non-security fixes. See the individual release notes for details on updated packages. NOTE: If you are a Visual Studio user, there are MSBuild version requirements so use only the .NET Core SDK supported for each Visual Studio version. Information needed to make...

.NET
Feb 11, 2020
3
0

.NET Framework February 2020 Security and Quality Rollup

Tara Overfield
Tara Overfield

Today, we are releasing the February 2020 Security and Quality Rollup Updates for .NET Framework. Security The February Security and Quality Rollup Update does not contain any new security fixes. See January 2020 Security and Quality Rollup for the latest security updates. Quality and Reliability This release contains the following quality and ...

.NET.NET FrameworkWPF
Feb 10, 2020
0
1

Using .NET for Apache® Spark™ to Analyze Log Data

Brigit Murtaugh
Brigit Murtaugh

.NET for Apache Spark makes Apache® Spark™, and thus the exciting world of big data analytics, accessible to .NET developers. .NET for Spark can be used for processing batches of data, real-time streams, machine learning, and ad-hoc query. In this post, we explore how to use .NET for Spark to perform log analysis.

Apache.NET
Feb 8, 2020
6
0

Garbage Collection at Food Courts

maoni
maoni

When I first started working on the GC, my predecessor was explaining the GC tuning to me. I told him that I thought it sounded like how I saw janitors work at food courts (I frequented food courts at the time 😀). And he concurred. What I said was if you observe at a food court, in order to be productive, the janitor tries to collect a sizable amo...

.NET
Feb 6, 2020
28
1

.NET Interactive is here! | .NET Notebooks Preview 2

Maria Naggaga
Maria Naggaga

In November 2019, we announced .NET support for Jupyter notebooks with both C# and F# support. Today we are excited to announce Preview 2 of the .NET Notebook experience. Preview 2 includes C#, F#, and PowerShell support.

.NET
Feb 6, 2020
0
0

GC Handles

maoni
maoni

A customer asked me about analyzing perf related to GC handles. I feel like aside from pinned handles in general handles are not talked about much so this topic warrants some explanation, especially since this is a user facing feature. For some background info, GC handles are indeed generational so when we are doing ephemeral GCs we only need to s...

.NET