【Azure 云服务】Azure Cloud Service中的错误事件 Error Event(Defrag/Perflib) 解答

简介: 【Azure 云服务】Azure Cloud Service中的错误事件 Error Event(Defrag/Perflib) 解答

问题描述

在Azure Cloud Service的实例中,收集到各种 Error Event 内容,本文针对所收集的三种Event进行解析。

1: This operation is not supported on this filesystem. (0x89000020) 

<Event xmlns='http://schemas.microsoft.com/win/2004/08/events/event'>

    <System>

        <Provider Name='Microsoft-Windows-Defrag' />

        <EventID Qualifiers='32768'>257</EventID>

        <Level>2</Level>

        <Task>0</Task>

        <Keywords>0x80000000000000</Keywords>

        <TimeCreated SystemTime='2021-11-08T02:30:00.000000000Z' />

        <EventRecordID>2465</EventRecordID>

        <Channel>Application</Channel>

        <Computer>RD00155D439EE2</Computer>

        <Security />

    </System>

    <EventData>

        <Data>SYSTEM</Data>

        <Data>This operation is not supported on this filesystem. (0x89000020)</Data>

        <Binary>00000000A40500005105000000000000629468641336AAB85B55B1B5B038000000000000</Binary>

    </EventData>

</Event>

 2: Perflib 1010 D:\Windows\System32\winspool.drv

<Event xmlns='http://schemas.microsoft.com/win/2004/08/events/event'>

    <System>

        <Provider Name='Microsoft-Windows-Perflib' Guid='{13B197BD-7CEE-4B4E-8DD0-59314CE374CE}' EventSourceName='Perflib' />

        <EventID Qualifiers='49152'>1010</EventID>

        <Version>0</Version>

        <Level>2</Level>

        <Task>0</Task>

        <Opcode>0</Opcode>

        <Keywords>0x80000000000000</Keywords>

        <TimeCreated SystemTime='2021-11-08T01:54:07.000000000Z' />

        <EventRecordID>2464</EventRecordID>

        <Correlation />

        <Execution ProcessID='0' ThreadID='0' />

        <Channel>Application</Channel>

        <Computer>RD00155D43BA04</Computer>

        <Security />

    </System>

    <UserData>

        <EventXML xmlns='Perflib'>

            <param1>D:\Windows\System32\winspool.drv</param1>

            <param2>Spooler</param2>

            <binaryDataSize>8</binaryDataSize>

            <binaryData>BA06000000000000</binaryData>

        </EventXML>

    </UserData>

</Event>

 3: 1008 D:\Windows\System32\bitsperf.dll

<Event xmlns='http://schemas.microsoft.com/win/2004/08/events/event'>

    <System>

        <Provider Name='Microsoft-Windows-Perflib' Guid='{13B197BD-7CEE-4B4E-8DD0-59314CE374CE}' EventSourceName='Perflib' />

        <EventID Qualifiers='49152'>1008</EventID>

        <Version>0</Version>

        <Level>2</Level>

        <Task>0</Task>

        <Opcode>0</Opcode>

        <Keywords>0x80000000000000</Keywords>

        <TimeCreated SystemTime='2021-11-08T01:54:07.000000000Z' />

        <EventRecordID>2463</EventRecordID>

        <Correlation />

        <Execution ProcessID='0' ThreadID='0' />

        <Channel>Application</Channel>

        <Computer>RD00155D43BA04</Computer>

        <Security />

    </System>

    <UserData>

        <EventXML xmlns='Perflib'>

            <param1>BITS</param1>

            <param2>D:\Windows\System32\bitsperf.dll</param2>

            <binaryDataSize>8</binaryDataSize>

            <binaryData>0200000000000000</binaryData>

        </EventXML>

    </UserData>

</Event>

 

问题解答

1: This operation is not supported on this filesystem. (0x89000020)

<Event xmlns='http://schemas.microsoft.com/win/2004/08/events/event'>
    <System>
        <Provider Name='Microsoft-Windows-Defrag' />
        <EventID Qualifiers='32768'>257</EventID>
        <Level>2</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime='2021-11-08T02:30:00.000000000Z' />
        <EventRecordID>2465</EventRecordID>
        <Channel>Application</Channel>
        <Computer>RD00155D439EE2</Computer>
        <Security />
    </System>
    <EventData>
        <Data>SYSTEM</Data>
        <Data>This operation is not supported on this filesystem. (0x89000020)</Data>
        <Binary>00000000A40500005105000000000000629468641336AAB85B55B1B5B038000000000000</Binary>
    </EventData>
</Event>

Defrag 是windows系统的磁盘上进行碎片文件进行整理以提高系统性能。 以上的错误就是Windows在进行碎片整理时出的错误。

Event ID: 257. The volume was not optimized because an error was encountered: This operation is not supported on this filesystem. (0x89000020) : https://social.technet.microsoft.com/Forums/en-US/ee11d4c9-a95c-4536-a438-bf9bbffcec4f/event-id-257-the-volume-was-not-optimized-because-an-error-was-encountered-this-operation-is-not

Defrag: https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/defrag

 

2: Perflib 1010 D:\Windows\System32\winspool.drv

<Event xmlns='http://schemas.microsoft.com/win/2004/08/events/event'>
    <System>
        <Provider Name='Microsoft-Windows-Perflib' Guid='{13B197BD-7CEE-4B4E-8DD0-59314CE374CE}' EventSourceName='Perflib' />
        <EventID Qualifiers='49152'>1010</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime='2021-11-08T01:54:07.000000000Z' />
        <EventRecordID>2464</EventRecordID>
        <Correlation />
        <Execution ProcessID='0' ThreadID='0' />
        <Channel>Application</Channel>
        <Computer>RD00155D43BA04</Computer>
        <Security />
    </System>
    <UserData>
        <EventXML xmlns='Perflib'>
            <param1>D:\\Windows\\System32\\winspool.drv</param1>
            <param2>Spooler</param2>
            <binaryDataSize>8</binaryDataSize>
            <binaryData>BA06000000000000</binaryData>
        </EventXML>
    </UserData>
</Event>

Perfilb的1010事件是在使用某个DLL时返回的错误,winspool.drv ( Windows Printer Spooler)这个文件是windows打印机的后台程序。参考:https://www.processlibrary.com/en/directory/files/winspool/22326/

 

3: 1008 D:\Windows\System32\bitsperf.dll

<Event xmlns='http://schemas.microsoft.com/win/2004/08/events/event'>
    <System>
        <Provider Name='Microsoft-Windows-Perflib' Guid='{13B197BD-7CEE-4B4E-8DD0-59314CE374CE}' EventSourceName='Perflib' />
        <EventID Qualifiers='49152'>1008</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime='2021-11-08T01:54:07.000000000Z' />
        <EventRecordID>2463</EventRecordID>
        <Correlation />
        <Execution ProcessID='0' ThreadID='0' />
        <Channel>Application</Channel>
        <Computer>RD00155D43BA04</Computer>
        <Security />
    </System>
    <UserData>
        <EventXML xmlns='Perflib'>
            <param1>BITS</param1>
            <param2>D:\\Windows\\System32\\bitsperf.dll</param2>
            <binaryDataSize>8</binaryDataSize>
            <binaryData>0200000000000000</binaryData>
        </EventXML>
    </UserData>
</Event>

这个报错内容中提到bitsperf.dll是一个用于收集performance的dll。参考: https://www.processlibrary.com/en/directory/files/bitsperf/4587/https://freek.ws/2015/05/16/how-to-fix-perflib-error-1008/

相关文章
|
4月前
【Azure 应用服务】App Service频繁出现 Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener 异常分析
【Azure 应用服务】App Service频繁出现 Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener 异常分析
|
4月前
|
API
【Azure Cloud Service】Cloud Service(Classic) 迁移失败,找不到解决方案怎么办?
【Azure Cloud Service】Cloud Service(Classic) 迁移失败,找不到解决方案怎么办?
|
4月前
|
JSON API 开发工具
【Azure 应用服务】调用Azure REST API来获取 App Service的访问限制信息(Access Restrictions)以及修改
【Azure 应用服务】调用Azure REST API来获取 App Service的访问限制信息(Access Restrictions)以及修改
|
4月前
|
Windows
【Azure 云服务】Cloud Service Worker Role Workerrole突然停机,查看Events发现 Defrag Error (0x8900002D)
【Azure 云服务】Cloud Service Worker Role Workerrole突然停机,查看Events发现 Defrag Error (0x8900002D)
【Azure 云服务】Cloud Service Worker Role Workerrole突然停机,查看Events发现 Defrag Error (0x8900002D)
|
4月前
|
C++
【Azure云服务 Cloud Service】如何在部署云服务Cloud Service时候通过启动任务Start Task来配置IIS (如开启ARR)
【Azure云服务 Cloud Service】如何在部署云服务Cloud Service时候通过启动任务Start Task来配置IIS (如开启ARR)
|
4月前
|
监控
【Azure 云服务】Azure Cloud Service 创建 Alert 指南 [基于旧版 Alert(Classic)不可用情况下]
【Azure 云服务】Azure Cloud Service 创建 Alert 指南 [基于旧版 Alert(Classic)不可用情况下]
|
4月前
|
XML 数据格式 Windows
【Azure 云服务】Azure Cloud Service (Extended Support) 云服务开启诊断日志插件 WAD Extension (Windows Azure Diagnostic) 无法正常工作的原因
【Azure 云服务】Azure Cloud Service (Extended Support) 云服务开启诊断日志插件 WAD Extension (Windows Azure Diagnostic) 无法正常工作的原因
|
4月前
|
网络协议
【Azure 应用服务】Azure Data Factory中调用Function App遇见403 - Forbidden
【Azure 应用服务】Azure Data Factory中调用Function App遇见403 - Forbidden
|
4月前
|
IDE 开发工具 C++
【Azure Cloud Service】VS 2019 发布云服务报错,有什么其它办法发布呢?
【Azure Cloud Service】VS 2019 发布云服务报错,有什么其它办法发布呢?
|
4月前
|
存储 Kubernetes API
【APIM】Azure API Management Self-Host Gateway是否可以把请求的日志发送到Application Insights呢?让它和使用Azure上托管的 Gateway一样呢?
【APIM】Azure API Management Self-Host Gateway是否可以把请求的日志发送到Application Insights呢?让它和使用Azure上托管的 Gateway一样呢?

热门文章

最新文章