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

Service,Defrag/Perflib,错误,Azure · 浏览次数 : 207

小编点评

抱歉,我无法生成内容带排版。我无法提供排版信息或帮助您生成排版内容。

正文

问题描述

在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/

 

 

 

 

与【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)

【Azure 云服务】为Azure云服务配置上自签名的SSL证书步骤

问题描述 在使用Azure Cloud Service(云服务),默认的情况下都是使用的 HTTP 服务,通过 Visual Studio 2022 创建的默认 Cloud Service项目中,在ServiceDefinition.csdef 服务定义文件中,值默认开启了HTTP 80的Endpo

【Azure Cloud Service(Extended Support)】如何使用外延服务迁移应用?

问题一:迁移到云服务扩展后,之前经典版的云服务的部署槽会变成单一的部署槽,关于两个云服务扩展版之间的部署交换能否提供一个演示? 对于具有双槽的云服务(Classic),根据文档中的建议,在迁移到云服务(外延支持)时需要先删除过渡槽,将生产槽作为一个独立的云服务进行迁移。 在完成生产槽的迁移后,创建另

【Azure 云服务】指标哪去了?在执行 Swap (交换生产部署和Staging部署) 操作后看不见云服务的旧指标

问题描述 打开云服务(Cloud Service)的Metrics页面,发现过去了指标不见了? 以虚点构成无数据的图表。 问题解答 查看云服务的活动日志(Activity Logs),发现最近执行的操作有: 1) 发布Staging 部署,把新版本应用先部署到预生产环境 2) 点击 Swap 按钮,

【Azure Cloud Service】云服务升级后,查看配置文件发现编码变为utf-16

问题描述 通过Migrate to ARM,把经典云服务升级成云服务(外延支持)后,在查看云服务的配置XML文件,发现文件的编码格式由 UTF-8 改变为 UTF-16 由此,引发了三个问题 1)Cloud Service是否支持 UTF-8, UTF-16 这两种编码呢? 2)为什么 Cloud

【Azure 云服务】Cloud Service Worker Role Workerrole突然停机,查看Events发现 Defrag Error (0x8900002D)

问题描述 Cloud Service Worker Role Workerrole突然停机,查看Events,发现是错误源为 Defrag。 错误消息: The volume Windows was not optimized because an error was encountered: Ne

【Azure 云服务】云服务(经典)迁移到云服务(外延支持)的八个问题

问题一:云服务( 经典)迁移到外延支持云服务是否需要停机? 通过平台的迁移工具(即验证、准备、提交)进行迁移没有停机时间。但是如果需要准备满足迁移条件,如删除对等互联,使用其他vnet资源则需要额外的停机时间。也就是说,平台的迁移操作不会停机,除非做了一些可能造成停机的准备工作。 问题二:是否需要用

【Azure 云服务】云服务(经典) 迁移至云服务(外延支持) 的相关疑问

问题描述 根据微软官方文档说明,云服务(经典)已弃用。所以关于它有以下的一些疑问: 一:迁移时候的停机时间问题? 二:云服务(经典) 与 云服务(外延支持) 的区别是什么? 三:注意事项有那些呢?如 TLS证书与保管库,当前订阅环境并没有使用保管库,需要做什么样的操作对应? 云服务迁移完成后,原来的

含辞未吐,声若幽兰,史上最强免费人工智能AI语音合成TTS服务微软Azure(Python3.10接入)

所谓文无第一,武无第二,云原生人工智能技术目前呈现三足鼎立的态势,微软,谷歌以及亚马逊三大巨头各擅胜场,不分伯仲,但目前微软Azure平台不仅仅只是一个PaaS平台,相比AWS,以及GAE,它应该是目前提供云计算人工智能服务最全面的一个平台,尤其是语音合成领域,论AI语音的平顺、自然以及拟真性,无平

【Azure Redis 缓存】Azure Redis 4.0 被扫描到漏洞,如何修补呢?

问题描述 在安全级别要求高的公司中,任何系统都会进行安全扫描。比如Azure 云上的Redis服务,也在扫描的范围中,最后发现Redis 4.0存在以下漏洞: CVE-2019-10192:https://nvd.nist.gov/vuln/detail/CVE-2019-10192 CVE-201