Dotnet 8 - native aot

2024. 1. 1. 00:00ASPNET

반응형

Native AOT 란

: 컴파일 시점에서 AOT 컴파일 11을 수행해서 바이트 코드(IL)가 아닌 네이티브 코드로 컴파일 하는 기술

 

장점

  • 시작 실행 시 JIT(Just-In-Time) 컴파일 과정이 없으므로 빠르게 프로그램 시작
  • JIT 과정이 없으므로 메모리 사용량이 보다 낮음
  • 런타임 라이브러리 의존성이 없는 실행 파일 생성
  • 타 프로그래밍 언어에 C 스타일로 라이브러리 제공 가능

성능비교 

 

물론 기본적으로 위와 같이 빠른 성능을 내는 것으로 나오지만

실제 실행시 조금 다를 수 있다. 

Native aot 는 초기실행에 성능 이점이 있으나 stress test 등에서는 runtime 보다 느린 경우가 많다. 

이유는 dynamic PGO 같은 jit 관련 runtime 최적화를 수행하기 힘들기 때문이다. 

물론 앞으로 좀더 performance 관련하여 성능향상이 있을것이다. 

https://devblogs.microsoft.com/dotnet/performance-improvements-in-net-8/#tiering-and-dynamic-pgo

 

Performance Improvements in .NET 8 - .NET Blog

.NET 7 was super fast, .NET 8 is faster. Take an in-depth tour through over 500 pull requests that make that a reality.

devblogs.microsoft.com

 

visual studio 2022 에서 project template 에서 아래 그림에 있는 template 을 선택하자 

그러면 간단한 web api project 가 생성된다. 

기존 project 와 몇가지 다른 점이 있다. 

대표적으로 CreateBuilder 가 CreateSlimBuilder 로 변경 되었다. 

var builder = WebApplication.CreateSlimBuilder(args);

그리고 아래와 같이 serializer option 이 추가 되었다. 

builder.Services.ConfigureHttpJsonOptions(options =>
{
    options.SerializerOptions.TypeInfoResolverChain.Insert(0, AppJsonSerializerContext.Default);
});

Native AOT 가 Reflection 을 처리 하지 못하기 때문에 

JsonSerializer 에 대한 SourceGenerator level 에서의 구현이 필요하다. 

public record Todo(int Id, string? Title, DateOnly? DueBy = null, bool IsComplete = false);

[JsonSerializable(typeof(Todo[]))]
internal partial class AppJsonSerializerContext : JsonSerializerContext
{

}

 

launchSettings.json 변경사항

{
  "$schema": "http://json.schemastore.org/launchsettings.json",
-  "iisSettings": {
-     "windowsAuthentication": false,
-     "anonymousAuthentication": true,
-     "iisExpress": {
-       "applicationUrl": "http://localhost:11152",
-       "sslPort": 0
-     }
-   },
  "profiles": {
    "http": {
      "commandName": "Project",
      "dotnetRunMessages": true,
      "launchBrowser": true,
      "launchUrl": "todos",
      "applicationUrl": "http://localhost:5102",
        "environmentVariables": {
          "ASPNETCORE_ENVIRONMENT": "Development"
        }
      },
-     "IIS Express": {
-       "commandName": "IISExpress",
-       "launchBrowser": true,
-       "launchUrl": "todos",
-      "environmentVariables": {
-       "ASPNETCORE_ENVIRONMENT": "Development"
-      }
-    }
  }
}

IIS 관련 setting 이 전부 삭제되었다. 

 

이제 실행해 보면 정상적으로 실행 될것이다. 

csproj 파일을 열고 다음 속성을 추가 해보자

<Project Sdk="Microsoft.NET.Sdk.Web">

  <PropertyGroup>
    <!-- Other properties omitted for brevity -->
    <EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
  </PropertyGroup>

</Project>

위 속성을 추가하고 true 를 설정하면 

obj/Debug/net8.0/generated/  밑에 sourcegenerator 에 의해 생성된 code 들을 확인 할 수 있다.

 

 

관련영상

https://youtu.be/EjjY_Nf7y3U

 

 

반응형

'ASPNET' 카테고리의 다른 글

Dotnet Object Mapper (Automapper vs Mapster)  (0) 2024.03.04
MediatR vs Wolverine  (1) 2024.02.26
dotnet 8 으로 migration 하기  (1) 2023.11.27