qbittorrent / qBittorrent

qBittorrent BitTorrent client
https://www.qbittorrent.org
Other
26.85k stars 3.87k forks source link

Error:too many pieces in torrent #10913

Closed wojciehm closed 3 years ago

wojciehm commented 5 years ago

Please provide the following information

qBittorrent version and Operating System

Windows Server 2016, QBT 4.1.6

If on linux, libtorrent and Qt version

(type here)

What is the problem

When adding torrent file https://www.wojcieh.net/wp-content/files/VMworld2018EU.torrent I receive an error message: error: too many pieces in torrent.

What is the expected behavior

(type here)

Steps to reproduce

Download and try to use it.

Extra info(if any)

Torrent file was created on Windows 10 and QBT version 4.1.3

thalieht commented 5 years ago

Looks like a limitation in libtorrent: https://github.com/arvidn/libtorrent/search?q=too_many_pieces_in_torrent&unscoped_q=too_many_pieces_in_torrent

Chocobo1 commented 5 years ago

@wojciehm Are you able to load the torrent with other bittorrent client? utorrent couldn't load it too, could it be corrupted?

FranciscoPombal commented 5 years ago

btcheck can't open it either:

$ btcheck -lvi VMworld2018EU.torrent
String length overflow.

It looks like the contents of the torrent are making these programs bump into some hardcoded limits of their bencode decoder implementations. For example, in btcheck, this is the limit for how big a string can be:

In src/btree.h:

// (...)
#define MAX_STRING_LENGTH   (1<<25) // this is 33554432
// (...)

And this is the end of the code path that leads to the failed execution: In src/bdecode.c:

// (...)
        if (length >= MAX_STRING_LENGTH) {
            fprintf(stderr, "String length overflow.\n");
            exit(EXIT_FAILURE);
// (...)

The problem with libtorrent is probably similar.

FranciscoPombal commented 5 years ago

There appear to be 2 relevant limits in the libtorrent code (https://github.com/arvidn/libtorrent/search?q=max_pieces&unscoped_q=max_pieces):

(std::numeric_limits<int>::max)() - 1 //2147483646
0xC0000 //786432

Then, 3 possible places where the "Too many pieces" error may be triggered, based on a few different conditions:

@wojciehm Do you have the time to debug this and figure out which condition exactly is failing for libtorrent to produce this error? That way, it is possible to figure out which limit is being exceeded.

@arvidn ping, please take a look at this.

FranciscoPombal commented 5 years ago

@wojciehm @Chocobo1

I just compiled btcheck with a minor change (increased MAX_STRING_LENGTH to 1<<26).

The torrent file itself seems to be alright, though the size/piece size combination is not the best. The total file size is quite big, at 417.37 GiB, and the torrent file uses a piece size of only 256 KiB, making the total number of pieces 1 709 564 (!).

Here is the full result from btcheck:

Click to expand ```txt ~/btcheck-2.1/src$ ./btcheck -lvi VMworld2018EU.torrent Announce URL : udp://tracker.coppersurfer.tk:6969/announce announce : udp://tracker.coppersurfer.tk:6969/announce announce : udp://tracker2.christianbro.pw:6969/announce announce : udp://p4p.arenabg.com:1337/announce announce : udp://peerfect.org:6969/announce announce : udp://tracker2.wasabii.com.tw:6969/announce announce : udp://allesanddro.de:1337/announce announce : http://tracker.opentrackr.org:1337/announce announce : udp://tracker.skyts.net:6969/announce announce : udp://9.rarbg.com:2710/announce announce : udp://tracker1.wasabii.com.tw:6969/announce announce : udp://tracker.opentrackr.org:1337/announce announce : udp://tracker.zer0day.to:1337/announce announce : udp://tracker.pirateparty.gr:6969/announce announce : udp://public.popcorn-tracker.org:6969/announce announce : udp://tracker.internetwarriors.net:1337/announce announce : udp://tracker.leechers-paradise.org:6969/announce announce : udp://tracker.piratepublic.com:1337/announce announce : udp://tracker.safe.moe:6969/announce announce : udp://tracker1.xku.tv:6969/announce announce : http://p4p.arenabg.com:1337/announce Dir. Name : VMworld2018EU Total Length : 448151817858 Piece Length : 262144 Torrent Hash : 4ee9f7d495817170c155f531c3d1fe5559ffe2ae Creat. Date : Tue Nov 13 10:41:25 2018 Created By : ruTorrent (PHP Class - Adrien Gibrat) Base directory : VMworld2018EU VMworld 2018 EU - ACC1151QE - Never Trust Always Verify with Risk Analytics in Workspace ONE Intelligence.mp4 (700675549) VMworld 2018 EU - ACC1328BES - Embracing Zero Trust in the Enterprise ??? Redefining access controls with Okta.mp4 (632745466) VMworld 2018 EU - ACC1406BES - How to secure Office 365, Box and GSuite with Okta and VMware.mp4 (517341655) VMworld 2018 EU - ACC1621PE - Customer Panel: Knocking Down the Barriers to Workspace ONE Adoption.mp4 (1642584516) VMworld 2018 EU - ACC2162PE - Drive Workspace-as-a-Service and Security Transformation with Workspace ONE.mp4 (1766344659) VMworld 2018 EU - ACC2488BE - Delivering Secure and Seamless Access to All Your Apps, Devices and Data.mp4 (1582654106) VMworld 2018 EU - ACC2892BE - Learn What's New with Workspace ONE and how to Embrace a Digital Workspace!.mp4 (2013468861) VMworld 2018 EU - ACC2945BE - What's New With Workspace ONE Apps and Services.mp4 (1655020517) VMworld 2018 EU - ACC3255BE - Workspace ONE: The Art of the Possible.mp4 (1814317871) VMworld 2018 EU - BRE2129BE - Introduction to NSX SD-WAN by VeloCloud: Transforming the WAN.mp4 (1522743003) VMworld 2018 EU - BRE2165BE - SD-WAN Use Cases Designed to Optimize Your Network.mp4 (1795110246) VMworld 2018 EU - BRE2167BE - Zero to 60 in Two Seconds with VMware NSX SD-WAN by VeloCloud.mp4 (1195417106) VMworld 2018 EU - BRE2168BE - Deployment of Hybrid SD-WAN with Real-World Examples.mp4 (1334754995) VMworld 2018 EU - BRE3038BE - Consuming Cloud Provider SD-WAN Services?.mp4 (1390225144) VMworld 2018 EU - CNA1418BE - PKS? A Service Provider Perspective Learnings from a Real-World Project.mp4 (1443300616) VMworld 2018 EU - CNA1493BE - Run Docker on Existing Infrastructure with vSphere Integrated Containers.mp4 (2124465524) VMworld 2018 EU - CNA1553BE - Deep Dive: The Value of Running Kubernetes on vSphere.mp4 (1870452986) VMworld 2018 EU - CNA1634BE - Container Portfolio at VMware.mp4 (1046615415) VMworld 2018 EU - CNA1656BE - Put a Lid on It: Securing Containers and Kubernetes on vSphere and in Cloud.mp4 (1486767954) VMworld 2018 EU - CNA1674BE - Deep Dive: Run Kubernetes in Production with PKS.mp4 (1832693157) VMworld 2018 EU - CNA1816BE - Container and Kubernetes 101 for Admins.mp4 (1742041518) VMworld 2018 EU - CNA2009BE - Run Stateful Apps on Kubernetes with PKS: Highlight WebLogic Server.mp4 (1372692613) VMworld 2018 EU - CNA2084BE - Intro to VMware Cloud PKS-Managed K8s Service on Public Cloud.mp4 (1461315709) VMworld 2018 EU - CNA2141BE - Applying Software Design Patterns and Methodologies to Your IT Services.mp4 (1101089320) VMworld 2018 EU - CNA2755BE - Architecting PKS for Production: Lessons Learned from PKS Deployments.mp4 (2099388109) VMworld 2018 EU - CNA3124BE - Deep Dive: VMware Cloud PKS-K8s as a Service on Public Cloud.mp4 (1301848742) VMworld 2018 EU - CTO1189BE - Next-Gen Multi-Cloud Architecture for Machine Learning.mp4 (1115539164) VMworld 2018 EU - CTO1204BES - Optimize your Virtualized Environment with Hardware Accelerators.mp4 (1521170465) VMworld 2018 EU - CTO1875BE - Quantum Supremacy: Basics, Outlook, and Security Implications.mp4 (1666936982) VMworld 2018 EU - CTO1901BE - Inside VMware's Innovation Engine.mp4 (1869428374) VMworld 2018 EU - CTO1917BE - Emerging Technologies in the Real World.mp4 (1225470329) VMworld 2018 EU - CTO2657BE - Evolution of VMware's Microgrid: The Largest Solar Deployment in Palo Alto.mp4 (1762253714) VMworld 2018 EU - CTO2816BE - How Open Source Is Bringing Serverless On Premises.mp4 (1448595442) VMworld 2018 EU - CTO3496PE - VMware CTO Panel: What's Over the Horizon?.mp4 (1640571282) VMworld 2018 EU - CTO3509BE - VMware at the Edge: Automation, Analytics, and Real-Time Business.mp4 (1964642240) VMworld 2018 EU - CTO3584BE - An Introduction to VMware's Blockchain Technologies.mp4 (1361087171) VMworld 2018 EU - CTO3650BE - Tech-Lash: Addressing the Public's Concerns About Tech.mp4 (1751552326) VMworld 2018 EU - DC3732KE - Driving Transformation from the Data Center to the Public Cloud.mp4 (1728810207) VMworld 2018 EU - DC3845KE - Cloud and Developer Keynote: Public Clouds and Kubernetes at Scale.mp4 (1713128496) VMworld 2018 EU - DEV1031BES - Mind the Gap: Building a closer relationship between Security and DevOps.mp4 (1144006576) VMworld 2018 EU - DEV1325BE - Path to Production: Value Stream Mapping in a DevOps World.mp4 (606875134) VMworld 2018 EU - DEV1434BE - From Building Infrastructure to Building App Platforms: Your Next Career.mp4 (1135868951) VMworld 2018 EU - DEV1965QE - QuickStart DevOps Culture with VMware.mp4 (806852120) VMworld 2018 EU - DEV2403BE - DevOps Culture and Practice: From Theory to Reality - A VMware Story.mp4 (1223388268) VMworld 2018 EU - DEV2641BE - Bring Your Traditional Application to Kubernetes with PKS.mp4 (1369584380) VMworld 2018 EU - DEV3466BE - Putting It All Together: Using VMware Products to Deliver the DevOps Dream.mp4 (1051031769) VMworld 2018 EU - DEV3504BE - Development at VMware: A Look at How PowerCLI Has Evolved Over the Years.mp4 (785212644) VMworld 2018 EU - DW3727KE - The Digital Workspace Keynote: End User Computing and Mobility Live!.mp4 (1897848655) VMworld 2018 EU - END1225BE - Troubleshooting Tips and Tricks for Your iOS Deployment.mp4 (833000368) VMworld 2018 EU - END1271BES - Securely Enable Cloud Worker Productivity with Chrome Enterprise and VMware.mp4 (1096760725) VMworld 2018 EU - END1419BES - Using real-world innovation to deliver modern workplaces for industry.mp4 (1165046197) VMworld 2018 EU - END2713BE - Co-manage Workspace ONE + SCCM : Get to Windows 10 Modern Management Faster.mp4 (1175251744) VMworld 2018 EU - END2728PE - Panel: Real-World Conversations on Windows 10 App Lifecycle Management.mp4 (1437252917) VMworld 2018 EU - END2766BE - First Look at New Dell and VMware Developments That Optimize PC Management.mp4 (2070895067) VMworld 2018 EU - END2852BE - Discover The Latest Workspace ONE Intelligence Capabilities and ??Use Cases.mp4 (1575796046) VMworld 2018 EU - END2866BE - Transforming Windows 10 Management: What Every Decision Maker Needs to Know.mp4 (1284556866) VMworld 2018 EU - END2902QE - End-User Computing at VMworld: Everything You Need to Know.mp4 (760907935) VMworld 2018 EU - END2912BE - Workspace ONE Intelligence Mobile and Desktop Operations.mp4 (1374439107) VMworld 2018 EU - END2948BE - Enhanced iOS Management: From Onboarding to Update Management and Beyond.mp4 (1203158141) VMworld 2018 EU - END2962BE - Deep Dive Into New Android Enterprise Personas and Deployment Methods.mp4 (1846956631) VMworld 2018 EU - END2966BE - Expanding AirWatch to UEM for macOS Modern Management.mp4 (1191267360) VMworld 2018 EU - END2978PE - How AirWatch Customers Are Moving Beyond Mobile to UEM across all Devices.mp4 (1610511098) VMworld 2018 EU - END3460BE - Deep Dive Into What's New with Workspace ONE Unified Endpoint Management.mp4 (2078966788) VMworld 2018 EU - END3572BE - Industry 4.0: How Rugged and Workplace IoT Are Transforming Supply Chains.mp4 (1794228076) VMworld 2018 EU - HCI1059BE - Architecting VMware Site Recovery Manager to Meet Your DR Goals.mp4 (367553258) VMworld 2018 EU - HCI1070BES - End User Computing Done Right.mp4 (1052946453) VMworld 2018 EU - HCI1078BES - WestLotto Reduces Backup & Recovery Times by up to 98% with Cohesity's HCSS.mp4 (1240108815) VMworld 2018 EU - HCI1080BES - Be the change agent, not the ticket agent.mp4 (974411379) VMworld 2018 EU - HCI1246BE - Optimizing vSAN for Performance.mp4 (1468204796) VMworld 2018 EU - HCI1270BE - The Power of Storage Policy-Based Management.mp4 (1005561944) VMworld 2018 EU - HCI1329BES - Lessons Learned from Real-World vSAN Operations.mp4 (1269816634) VMworld 2018 EU - HCI1338BE - vSAN: An Ideal Storage Platform for Kubernetes-controlled Cloud-Native Apps.mp4 (1328764368) VMworld 2018 EU - HCI1469BE - The Future of vSAN and Hyperconverged Infrastructure.mp4 (1249621366) VMworld 2018 EU - HCI1477BE - New Ways to Use vRealize Operations and Log Insight for vSAN Environments.mp4 (1518228101) VMworld 2018 EU - HCI1552BE - Deploying vSAN to 300 Stores in 2 Weeks: An Automation Story.mp4 (794346945) VMworld 2018 EU - HCI1583BE - vSAN Myth Busters: Busting the Common Misconceptions About vSAN.mp4 (735816549) VMworld 2018 EU - HCI1603BE - Native vSAN Data Protection: Safeguarding Virtual Machine Data on vSAN.mp4 (1022591490) VMworld 2018 EU - HCI1705BE - Data Protection in VMware Hybrid Clouds.mp4 (1335799501) VMworld 2018 EU - HCI1768BE - What's New in vSAN: Technical Deep Dive.mp4 (1239415304) VMworld 2018 EU - HCI1884BE - NSX and Generic Network Overlays with HCI: Everything You Need to Know.mp4 (1044070312) VMworld 2018 EU - HCI1993BE - vSAN Technical Deep Dive.mp4 (1258521678) VMworld 2018 EU - HCI2019BE - Running SAP HANA on HCI Powered by vSAN.mp4 (1014548250) VMworld 2018 EU - HCI2032BE - Successful vSAN for Remote Offices and Branch Offices.mp4 (1395713582) VMworld 2018 EU - HCI2038BE - Best Practices for Deploying Hadoop Workloads on HCI Powered by vSAN.mp4 (1036251689) VMworld 2018 EU - HCI2041BE - vSAN Encryption Deep Dive.mp4 (1332783992) VMworld 2018 EU - HCI2052BE - Sizing Your HCI Environment: How To Do It Correctly and Accurately.mp4 (1067189829) VMworld 2018 EU - HCI2053BE - Hitting Refresh with HCI for Better Performance and Less Complexity.mp4 (971989326) VMworld 2018 EU - HCI2088BE - vSAN Stretched Clusters Technical Deep Dive.mp4 (1095392411) VMworld 2018 EU - HCI2103BE - Choosing the Right HCI Solution in the Multi-Cloud Era.mp4 (850529952) VMworld 2018 EU - HCI2107QE - Back to Basics: Why HCI? Why Now?.mp4 (840850941) VMworld 2018 EU - HCI2164BE - HCI Management, Current and Future.mp4 (1189931914) VMworld 2018 EU - HCI2180BE - vSAN Support Insight - Inside Out.mp4 (1042319452) VMworld 2018 EU - HCI2208BE - vSAN Hardware Guidance on Performance and Configuration.mp4 (872065257) VMworld 2018 EU - HCI2474BE - Site Recovery Manager 8.1: What's New?.mp4 (932196609) VMworld 2018 EU - HCI2513QE - Using vSAN Native Data Protection in the Real World.mp4 (961518727) VMworld 2018 EU - HCI2522BE - Getting Started with vSAN Automation.mp4 (1100849560) VMworld 2018 EU - HCI2617BE - Best Practices for Deploying Business-Critical Oracle Workloads on vSAN HCI.mp4 (1271728364) VMworld 2018 EU - HCI2681BE - The Latest and Greatest with VMware vSAN.mp4 (869502652) VMworld 2018 EU - HCI2909QER - VMs on vSAN - An End to End View.mp4 (717402999) VMworld 2018 EU - HCI2997BE - Scaling Beyond Big Data: HealthCare and Financial Data on vSAN.mp4 (1016699076) VMworld 2018 EU - HCI3041BE - Introducing Scalable File Storage on vSAN with Native File Services.mp4 (1235127097) VMworld 2018 EU - HCI3452BE - Achieving a GDPR-Ready Architecture Leveraging VMware vSAN.mp4 (968514020) VMworld 2018 EU - HCI3707BES - Infrastructure Matters: From Modernizing Servers to a VMware cloud on HCI.mp4 (1231020972) VMworld 2018 EU - HCI3728KE - Innovating Beyond HCI: How VMware is Driving the Next Data Center Revolution.mp4 (1289981503) VMworld 2018 EU - HYP1005BES - Automation & orchestration of Veeam & VMware featuring VMware Cloud on AWS.mp4 (1488454984) VMworld 2018 EU - HYP1022BES - Practical Guide for Delivering Advanced Security at Scale and Speed in SDDC.mp4 (1163730733) VMworld 2018 EU - HYP1052BES - A Hybrid Journey to Cloud.mp4 (1295722873) VMworld 2018 EU - HYP1060PES - Modern Data Protection: how to ensure your data never gets lost.mp4 (1478330383) VMworld 2018 EU - HYP1071BE - Art of Possible: Empowering Every vSphere Infrastructure to Become Hybrid.mp4 (654521242) VMworld 2018 EU - HYP1079BES - Goodbye Periodic Backup. Hello Zerto 7.mp4 (1051147468) VMworld 2018 EU - HYP1083BES - Mission Critical VMware on IBM Cloud.mp4 (1310182504) VMworld 2018 EU - HYP1084BE - Extending VMware workloads to the public cloud.mp4 (1303576714) VMworld 2018 EU - HYP1085BE - Public Cloud- A critical component of your digital transformation.mp4 (823476250) VMworld 2018 EU - HYP1139BES - Transform Your Enterprise with Kubernetes and VMs Together.mp4 (1610842935) VMworld 2018 EU - HYP1142BE - Case Study: Hybrid Cloud with vCloud Extender from Customer to Provider.mp4 (1295812374) VMworld 2018 EU - HYP1187BE - VMware Cloud on AWS: The Migration Venture.mp4 (1209019464) VMworld 2018 EU - HYP1323BES - There's a smarter way to eliminate downtime.mp4 (981742859) VMworld 2018 EU - HYP1369BES - Automate Hosted Private Clouds Everywhere using VMware Cloud Foundation.mp4 (992846831) VMworld 2018 EU - HYP1376BE - Accelerate Your Hybrid Cloud with VMware Cloud on AWS: What???s New.mp4 (1026925471) VMworld 2018 EU - HYP1377BE - VMware Cloud on AWS Security and Compliance Details.mp4 (983795867) VMworld 2018 EU - HYP1496BE - A Practitioner's Guide to Migrating Workloads to VMware Cloud on AWS.mp4 (1291054989) VMworld 2018 EU - HYP1499BE - VMware Cloud Provider Pod.mp4 (1556136771) VMworld 2018 EU - HYP1803BE - Delivering Custom Services Through vCloud Director Extensibility.mp4 (1638593102) VMworld 2018 EU - HYP1810PE - Ask the Cloud Experts.mp4 (1889614281) VMworld 2018 EU - HYP1923BE - Building Hybrid Cloud with Horizon on VMware Cloud on AWS.mp4 (1493085413) VMworld 2018 EU - HYP1950BE - Navigating Hybrid Cloud.mp4 (958644692) VMworld 2018 EU - HYP2048BE - VMware Cloud on AWS: Live, Next-Gen Integrations for Your Next-Gen Cloud.mp4 (1493351634) VMworld 2018 EU - HYP2060BE - New VMware Cloud Provider Hub - Centralized Provider Portal for VMware Cloud Services.mp4 (1331451115) VMworld 2018 EU - HYP2138BES - How Secure is Your Hybrid Cloud? Optimize for Security in a Post-GDPR World.mp4 (1056754103) VMworld 2018 EU - HYP2145BES - Hybrid cloud architecture design and best practices for VMware Cloud on AWS.mp4 (996336212) VMworld 2018 EU - HYP2406BE - VMware NSX for Service Providers: A Technical View.mp4 (999518287) VMworld 2018 EU - HYP2422BE - Enabling Cloud Marketplace Services with VMware.mp4 (800255329) VMworld 2018 EU - HYP2445BE - From On Premises to Beyond.mp4 (1112094673) VMworld 2018 EU - HYP2697PE - VMware Cloud on AWS Customer Panel.mp4 (1624599174) VMworld 2018 EU - HYP2817QE - Understanding the TCO Benefits of VMware Cloud on AWS.mp4 (826526382) VMworld 2018 EU - HYP2861BE - Multi Cloud Architectures and Evolution: Customer Perspective.mp4 (1368436419) VMworld 2018 EU - HYP2890BE - How Cloud Service Providers Deliver Multi-Cloud Management-as-a-Service.mp4 (1041108599) VMworld 2018 EU - HYP3003BES - Hello, You Had Me at Infrastructure as Code: Hybrid SDDC Cloud Automation.mp4 (999250777) VMworld 2018 EU - HYP3019BE - VMware Site Recovery: DR-as-a-Service with VMware Cloud on AWS.mp4 (1608818449) VMworld 2018 EU - HYP3025BE - Teaching Old Dogs New Tricks: High Availability for VMware Cloud on AWS.mp4 (993941022) VMworld 2018 EU - HYP3061BE - VMware on IBM Cloud: Best-in-class Enterprise Cloud with a simple way to get there.mp4 (1135468086) VMworld 2018 EU - HYP3286BE - Enabling High Capacity Workloads with Elastic EBS-backed vSAN on VMC.mp4 (1181517259) VMworld 2018 EU - HYP3696BES - Simplify operations with machine learning for secondary data and apps.mp4 (997340495) VMworld 2018 EU - HYP3705BES - Improving App Performance and Protection for VMware: NVMe, Cloud and Beyond.mp4 (638941284) VMworld 2018 EU - HYP3822BE - Dell EMC Data Protection for VMware, Simplicity Meets Power.mp4 (1205185778) VMworld 2018 EU - HYP3853BE - FREESTYLIN THE CLOUD with IBM and skateboarding legend, Rodney Mullen.mp4 (1632886842) VMworld 2018 EU - IOT1203BES - From Disruption to Business Transformation.mp4 (1559327214) VMworld 2018 EU - IOT1374BES - The 5 challenges of IoT at Enterprise Scale.mp4 (1432428906) VMworld 2018 EU - IOT1746QE - Can Blockchain Be Used as a Tool to Secure the IoT?.mp4 (433257043) VMworld 2018 EU - IOT2593BE - Project Dimension - The Easy Button for Edge Computing.mp4 (1225787841) VMworld 2018 EU - IOT2812BE - Design IoT with Security in Mind Using VMware Pulse IoT and NSX.mp4 (1356190406) VMworld 2018 EU - IOT3541BE - Take Your Hybrid Cloud Strategy to the Edge with VMware Solutions.mp4 (1150323795) VMworld 2018 EU - IOT3549QE - Make Friends with Your OT Department: The Prerequisite to IoT Success.mp4 (941852095) VMworld 2018 EU - IOT3550PE - Customers Who Take Control of the Edge with VMware Pulse IoT Solutions.mp4 (1034041007) VMworld 2018 EU - IOT3563BE - Surveillance and IoT Helping Keep the World Safe.mp4 (1599250261) VMworld 2018 EU - IOT3680BE - Deploy, Manage, and Get Value from IOT with Microsoft, Dell and VMware.mp4 (658688580) VMworld 2018 EU - LDT1011BES - Hybrid IT: HPE's composable, software-defined, dynamic datacenter vision.mp4 (1434258023) VMworld 2018 EU - LDT1012BES - Examining the Best Practices for Executing Your Multi-Cloud Environment.mp4 (1182364943) VMworld 2018 EU - LDT1252PE - A fireside chat with the VMware IT CIO Leadership Team.mp4 (1865378633) VMworld 2018 EU - LDT1324PE - Increasing Productivity by Providing a Superior Employee Experience.mp4 (1734341402) VMworld 2018 EU - LDT1433BE - Transforming IT through Infrastructure-as-Code.mp4 (1164566397) VMworld 2018 EU - LDT1515PE - Transformers: How VMware IT Transitioned to a Services-Based Organization.mp4 (1564252620) VMworld 2018 EU - LDT1719BE - Taming Security with Tools: Making Compliance a Reality.mp4 (1590344927) VMworld 2018 EU - LDT1865BE - Case Study: Measuring the Business Value of Time to Market.mp4 (825853390) VMworld 2018 EU - LDT1873BE - A Peek into the Future of VMware IT's Multi-Cloud Strategy.mp4 (1882745883) VMworld 2018 EU - LDT1899BE - Embracing a DevOps Cloud Operational Model for Private Cloud.mp4 (1245226484) VMworld 2018 EU - LDT1907BE - Achieving Happiness: Building Your Brand and Your Career.mp4 (1041948876) VMworld 2018 EU - LDT1940BE - Digital Transformation in Action: From Buzzword to Reality.mp4 (1770835271) VMworld 2018 EU - LDT2787PE - Rethinking Financial Services: Adapting to a Digital Economy.mp4 (915814971) VMworld 2018 EU - LDT3135PE - How Your Peers are REALLY Doing in Their Digital Transformation.mp4 (1504668499) VMworld 2018 EU - LDT3675BE - Status of CIO Recruitment and Leadership Traits most Desired by CEOs.mp4 (1541297746) VMworld 2018 EU - MGT1076BES - The New Era of Cloud Data Management.mp4 (1270976278) VMworld 2018 EU - MGT1081BES - Hitachi brings the Hybrid Cloud alive with Infrastructure Automation.mp4 (1298606725) VMworld 2018 EU - MGT1082BES - True tales of Multi-Cloud Integration and Automation in the Enterprise.mp4 (1652928312) VMworld 2018 EU - MGT1201BE - Self-Driving Operations: What's New with vRealize Operations.mp4 (1768908659) VMworld 2018 EU - MGT1312BE - Intro to VMware's Cloud Management Automation Services. You agile enough?.mp4 (1286097159) VMworld 2018 EU - MGT1336PE - Tales from the Trenches: Realizing the Full Value of vRealize Operations.mp4 (1377801502) VMworld 2018 EU - MGT1402BE - Billion Lyft Rides, Half Million IoT Users: How to Scale SaaS with Analytics.mp4 (1137863266) VMworld 2018 EU - MGT1440BE - Master Performance and Capacity Management with vRealize Operations.mp4 (1350893187) VMworld 2018 EU - MGT1534BE - vRealize Operations Capacity and Cost Management.mp4 (1152349702) VMworld 2018 EU - MGT1640BE - Self-Driving Operations with vRealize Operations Performance Optimization.mp4 (977252995) VMworld 2018 EU - MGT1645BE - How CloudHealth Reduces the Cost and Complexity of Multi-Cloud Operations.mp4 (1536987242) VMworld 2018 EU - MGT1652BE - Application Networking and Security with vRealize Automation and NSX-T.mp4 (958474834) VMworld 2018 EU - MGT1773BE - Container Management and VMware PKS Support for vRealize Automation.mp4 (1214705754) VMworld 2018 EU - MGT1774BE - vRealize Multi-Cloud Case Study: Borusan Industrial Group.mp4 (808679295) VMworld 2018 EU - MGT2020BE - Digital Transformation in the Public Sector: A Case Study from Qatar.mp4 (1163298795) VMworld 2018 EU - MGT2139BE - Manage IBM Power Series using vRealize Operations Manager.mp4 (944316262) VMworld 2018 EU - MGT2204BE - VMware Cloud Management: See the Mother of All Demos!.mp4 (1442948063) VMworld 2018 EU - MGT2237BES - Cisco MultiCloud integrated into your VMware environment.mp4 (1025622734) VMworld 2018 EU - MGT2242BE - What's New in vRealize Automation.mp4 (1848008484) VMworld 2018 EU - MGT2528BE - vRealize Automation Architecture and Troubleshooting Deep Dive.mp4 (843719223) VMworld 2018 EU - MGT2552BE - Troubleshooting Made Easy with vRealize Operations.mp4 (1213966098) VMworld 2018 EU - MGT2556BE - Use Cloud Services to Deploy and Maintain Apps in a Multi-Cloud Environment.mp4 (1417223990) VMworld 2018 EU - MGT2844BE - AWS App Security and Visibility with Network Insight and Log Intelligence.mp4 (1344724762) VMworld 2018 EU - MGT2915BE - Agile Cloud Management with VMware.mp4 (1413391952) VMworld 2018 EU - MGT2920BE - Automation Success Story: Enabling Agility with Cloud Automation Services.mp4 (1691499608) VMworld 2018 EU - MGT2934BE - Optimize Workload Cost and Performance Using the vRealize Suite.mp4 (791536533) VMworld 2018 EU - MGT2954BE - Real-Time Security Insights and Governance for Public Cloud Infrastructure.mp4 (1614613989) VMworld 2018 EU - MGT3026BE - Building Machine Learning Services with VMware Integrated OpenStack.mp4 (1207879890) VMworld 2018 EU - MGT3192BE - Cloud Admin Deep Dive for Multi-Cloud Monitoring and Troubleshooting.mp4 (1741516238) VMworld 2018 EU - MGT3302BE - CloudHealth: The foundation for your Cloud Centre of Excellence.mp4 (1672404106) VMworld 2018 EU - MGT3303BE - Achieving a Comprehensive Cloud Strategy Leveraging CloudHealth.mp4 (1167472388) VMworld 2018 EU - MGT3718BE - Finding the Hidden Risks and Connected Threats Across Your Public Cloud.mp4 (1107172936) VMworld 2018 EU - MGT3918BE - Amazon RDS on VMware: Database Management Services on vSphere.mp4 (709341082) VMworld 2018 EU - NET1020BES - You can still get burned when its cloudy.mp4 (692322567) VMworld 2018 EU - NET1106BE - Advanced NSX Data Center: Demystifying the VTEP, MAC, and ARP Tables.mp4 (1359573696) VMworld 2018 EU - NET1127BE - Logical Routing Deep Dive on NSX-T Data Center.mp4 (1491395381) VMworld 2018 EU - NET1128BE - Logical Routing Deep Dive on NSX Data Center for vSphere.mp4 (1270478518) VMworld 2018 EU - NET1285BE - The Future of Networking and Security with VMware NSX.mp4 (1082809889) VMworld 2018 EU - NET1327BE - VMware Cloud on AWS with NSX: Use Cases, Design, and Implementation.mp4 (1468477963) VMworld 2018 EU - NET1363BE - Building a Multi-Tenant Private Cloud with NSX-T Data Center.mp4 (1101362171) VMworld 2018 EU - NET1400BES - Creating The New Frontier in Visibility for The Data Center of the Future.mp4 (931334967) VMworld 2018 EU - NET1516BE - Introduction to NSX Cloud.mp4 (1275918160) VMworld 2018 EU - NET1536BE - Multi-Site Networking and Security with NSX Data Center.mp4 (1084658520) VMworld 2018 EU - NET1537BE - NSX-T Data Center Architecture and Benefits.mp4 (1100118859) VMworld 2018 EU - NET1549BE - Deep Dive into Operationalizing NSX-T Data Center.mp4 (1008987533) VMworld 2018 EU - NET1559BE - SDDC Reference Design with NSX Data Center for vSphere.mp4 (2064462401) VMworld 2018 EU - NET1561BE - Next-Generation Reference Design with NSX-T Data Center: Part 1.mp4 (2087539793) VMworld 2018 EU - NET1562BE - Next-Generation Reference Design with NSX-T Data Center: Part 2.mp4 (2158002523) VMworld 2018 EU - NET1586BE - Networking and Security for Small Data Centers with NSX Data Center.mp4 (1047977277) VMworld 2018 EU - NET1610BE - NSX-T Edge Services: Design and Deployment Options.mp4 (1150202858) VMworld 2018 EU - NET1642BE - NSX-PowerOps: Day2 Ops, NSX Health, Security, and Automated Documentation.mp4 (1540326279) VMworld 2018 EU - NET1677BE - Kubernetes Container Networking with NSX-T Data Center Deep Dive.mp4 (2072113276) VMworld 2018 EU - NET1723BE - Day 2 Automation of NSX Data Center Using vRealize Suite.mp4 (765010066) VMworld 2018 EU - NET1742BE - N-VDS: The next generation switch architecture with VMware NSX Data Center.mp4 (1032444282) VMworld 2018 EU - NET1754BE - NSX Cloud:Deployment Deep Dive and Architecture.mp4 (1265930841) VMworld 2018 EU - NET1879BE - vRealize Network Insight Deep Dive.mp4 (2156618169) VMworld 2018 EU - NET1894BE - NSX Design for Cloud-native Apps with Pivotal Cloud Foundry.mp4 (1547204708) VMworld 2018 EU - NET1919BE - NSX Mindset: Clouds Collide, Opportunity Strikes.mp4 (1531774199) VMworld 2018 EU - NET1945BE - Deploying NSX Data Center on a Cisco Infrastructure.mp4 (2167146680) VMworld 2018 EU - NET2068BE - Introduction to Container Networking and Security with NSX-T Data Center.mp4 (1785469944) VMworld 2018 EU - NET2409BE - Advanced NSX Services in VMware Cloud on AWS: Use Cases and Best Practices.mp4 (790944682) VMworld 2018 EU - NET2420BE - Rethinking Disaster Recovery with NSX Data Center and NSX Hybrid Connect.mp4 (1147289516) VMworld 2018 EU - NET2701BE - Virtual Cloud Network End-to-End Demo: Powered by NSX.mp4 (2138387860) VMworld 2018 EU - NET2764BE - Introduction to vRealize Network Insight.mp4 (1853943929) VMworld 2018 EU - NET2770BE - Introduction to NSX Data Center.mp4 (1520631563) VMworld 2018 EU - NET3042PE - Customer Panel on NSX Data Center.mp4 (968936109) VMworld 2018 EU - NET3193BES - VMware NSX and Getting the Most Out of Your Infrastructure.mp4 (890754251) VMworld 2018 EU - NET3409BE - Using vRealize Network Insight to Optimize the Software-Defined Data Center.mp4 (1114221789) VMworld 2018 EU - NFV1118BES - Telefonica VDC: Where Connectivity & Cloud Combine to Transform Your Business.mp4 (1040862088) VMworld 2018 EU - NFV1134BE - Service Assurance Suite Customer Case Study with Swisscom.mp4 (1158517795) VMworld 2018 EU - NFV1135BE - Making Digital Transformation a Reality with NFV: a Case Study MTS & VMware.mp4 (1848507547) VMworld 2018 EU - NFV1307BE - NSX SD-WAN by VeloCloud for Service Providers on the vCloud NFV Platform.mp4 (1701231465) VMworld 2018 EU - NFV1309BE - 5G Readiness: The Importance of Network Slicing & Service Function Chaining.mp4 (1935613326) VMworld 2018 EU - NFV1315BE - Distributed OpenStack Platform for Telco Use Cases: MEC and PoP.mp4 (1324298355) VMworld 2018 EU - NFV2220BE - Service Providers Love VMware Integrated OpenStack. Here's Why..mp4 (1050917709) VMworld 2018 EU - NFV2917BE - Breaking the Virtual Speed Limit: Data Plane Performance Tuning.mp4 (1198079736) VMworld 2018 EU - NS3729KE - The NSX Keynote: Building the Network of the Future with the Virtual Cloud Network.mp4 (1876155042) VMworld 2018 EU - PRV1101BE - VxRack SDDC Technical Deep Dive.mp4 (1359400160) VMworld 2018 EU - PRV1161BE - Compliance for the Public Sector and Private Industry.mp4 (1223501493) VMworld 2018 EU - PRV1277BE - VMware Cloud Foundation & HPE Synergy: SDDC meets Composable Infrastructure.mp4 (834327452) VMworld 2018 EU - PRV1337BE - VMware Cloud Foundation: Future Innovations.mp4 (1321128271) VMworld 2018 EU - PRV1407BES - Build your service business on the OVHCloud.mp4 (1363930739) VMworld 2018 EU - PRV1408BES - A journey to the cloud: Getting started migrating your on-premises service.mp4 (968394450) VMworld 2018 EU - PRV1409BES - The OVHCloud: Managed Private cloud powered by VMware.mp4 (992894074) VMworld 2018 EU - PRV1424BE - Case Study: Mission-Critical SDDC for the Finance Industry.mp4 (1732346654) VMworld 2018 EU - PRV1429BE - vSAN Stretched Clusters & Disaster Recovery simplified by Cloud Foundation.mp4 (2085582855) VMworld 2018 EU - PRV1431BE - An Introduction to VMware Validated Designs.mp4 (1221664092) VMworld 2018 EU - PRV1459BE - Strategies for Hybrid Cloud Workload Mobility with VMware Cloud Foundation.mp4 (933738387) VMworld 2018 EU - PRV1463BE - Building the Ultimate Hybrid Cloud with VMware Cloud Foundation.mp4 (1965579494) VMworld 2018 EU - PRV1669BE - VMware Cloud Foundation Real-World Success with Professional Services.mp4 (2067125435) VMworld 2018 EU - PRV1765BE - Advanced Operations for your VMware Cloud Foundation Based Private Cloud.mp4 (1264429059) VMworld 2018 EU - PRV1766BE - Workload Automation in your VMware Cloud Foundation Based Private Cloud.mp4 (1376210561) VMworld 2018 EU - PRV1933BER - VMware Cloud Foundation Architecture Deep Dive.mp4 (1288856739) VMworld 2018 EU - PRV2121BE - Composable Infrastructure Innovations: Cloud Foundation and HPE Synergy.mp4 (1321801307) VMworld 2018 EU - PRV2197BE - VxRail and VMware Validated Designs: Chocolate and Peanut Butter?.mp4 (1030849903) VMworld 2018 EU - PRV2201QER - Introduction to VMware Cloud Foundation.mp4 (640430642) VMworld 2018 EU - PRV2797BE - VMware Validated Design Day Two Operations in Practice.mp4 (1819457137) VMworld 2018 EU - PRV2911BE - VMware Validated Designs Technical Deep Dive.mp4 (1107447456) VMworld 2018 EU - PRV3462BE - VMware Validated Designs and Dell VxRail HCI: Better Together.mp4 (1102224493) VMworld 2018 EU - PRV3670BE - Standardized, Automated and Adaptive: The Future of Private Cloud is Here.mp4 (1224217919) VMworld 2018 EU - SAI1032BES - Enabling Hybrid Cloud Security for NSX and VMWare Cloud on AWS.mp4 (1215116300) VMworld 2018 EU - SAI1133BE - How to Design Multi-layered Security in the SDDC with NSX Data Center.mp4 (1497713595) VMworld 2018 EU - SAI1379BES - Ensuring Secure and Successful Deployments of NSX with NETSCOUT Visibility.mp4 (1208570908) VMworld 2018 EU - SAI1527BE - Deep Dive into NSX Data Center Security for Clouds, Containers, and More.mp4 (1823943994) VMworld 2018 EU - SAI1851BE - NSX Data Center Security Use Cases, Methodologies, and Tools.mp4 (2165678879) VMworld 2018 EU - SAI2026BE - Introduction to NSX Data Center for Security.mp4 (1118416508) VMworld 2018 EU - SAI2077BE - Context-Aware Micro-Segmentation with NSX Data Center.mp4 (1031236972) VMworld 2018 EU - SAI2555BE - Accelerate App Security and Availability with vRealize Network Insight.mp4 (1553451690) VMworld 2018 EU - SAI2744BE - VMware NSX Data Center Service Insertion: Advanced Network and Security.mp4 (1230741384) VMworld 2018 EU - SAI3217BE - Introduction to VMware AppDefense.mp4 (2075106086) VMworld 2018 EU - SAI3219BE - Great Power, Great Responsibility: Least Privilege Security with AppDefense.mp4 (1226335112) VMworld 2018 EU - SAI3243BE - Use Artificial Intelligence and Machine Learning to Simplify Security.mp4 (886425245) VMworld 2018 EU - SAI3770BE - Mitigating CPU Security Vulnerabilities - A look at vSphere Mitigations.mp4 (1193575492) VMworld 2018 EU - SEC3730KE - Transforming Security in a Cloud and Mobile World.mp4 (1418203281) VMworld 2018 EU - VAP1010BES - Storage Infrastructure for VMware: Software Defined to Workload Optimized.mp4 (1565658844) VMworld 2018 EU - VAP1088BE - App Failover on VMware Cloud on AWS Protected by LicenseFortress.mp4 (1049467181) VMworld 2018 EU - VAP1095BE - Virtualizing and Tuning Distributed Application Platforms.mp4 (642078245) VMworld 2018 EU - VAP1317BE - VDI, HPC and AI on VMware vSphere 6.7 and NVIDIA vGPU.mp4 (885068037) VMworld 2018 EU - VAP1425BE - Performance Deep Dive for Demanding Virtual Database Servers.mp4 (971330662) VMworld 2018 EU - VAP1492BE - Performance of SQL Server, Oracle, and SAP Workloads in VMware Cloud on AWS.mp4 (1400227129) VMworld 2018 EU - VAP1495BE - VMware Virtualization Solutions and Its Benefits in Developing Countries.mp4 (1078678564) VMworld 2018 EU - VAP1620BE - Improve App Performance with Micro-Segmentation and Distributed Routing.mp4 (1367868349) VMworld 2018 EU - VAP1820BE - SAP HANA TDI Phase 5: Greater Flexibility in Sizing VMs.mp4 (1359244027) VMworld 2018 EU - VAP1898BE - Virtualize Active Directory the Right Way.mp4 (1351827490) VMworld 2018 EU - VAP1900BE - High-Performance Big Data and Machine Learning on VMware Cloud on AWS.mp4 (1123210665) VMworld 2018 EU - VAP2010BE - Architecting and Deploying Virtualized HPC Clusters.mp4 (1198794972) VMworld 2018 EU - VAP2283BE - How EVONIK Is Running SAP Workload Using Leading SAP and VMware Technology.mp4 (1426069243) VMworld 2018 EU - VAP2294QE - SAP in the Clouds.mp4 (767300469) VMworld 2018 EU - VAP2547BE - Licensing Oracle and SQL Server on vSphere.mp4 (1166348156) VMworld 2018 EU - VAP2708BE - Heard About Mars vs. Oracle? Learn About Oracle Audits from the Experts.mp4 (1344489465) VMworld 2018 EU - VIN1004BES - What's New in Veeam Availability Suite 9.5 Update 4.mp4 (934832703) VMworld 2018 EU - VIN1077BES - Infrastructure architecture for modern privacy & security requirements.mp4 (843260487) VMworld 2018 EU - VIN1131BES - SME talk on joint actions between HCL&VMware-Datacenters transformation.mp4 (1064878968) VMworld 2018 EU - VIN1180BE - How VMware IT Upgraded to VMware vSphere 6.7 Without End-User Impact.mp4 (617907162) VMworld 2018 EU - VIN1190PES - Lessons Learned on the Journey to the Cloud, the Stories of 3 Architects.mp4 (426139082) VMworld 2018 EU - VIN1249BER - vSphere Clustering Deep Dive, Part 1: vSphere HA and DRS.mp4 (534410929) VMworld 2018 EU - VIN1293BE - Ensure Maximum Uptime and Performance of Your vCenter Server Appliance.mp4 (1005239113) VMworld 2018 EU - VIN1303BE - vSphere Security Deep Dive: Supporting TPM and Virtual TPM 2.0.mp4 (792776778) VMworld 2018 EU - VIN1305BE - vSphere Platform Security Update.mp4 (794726773) VMworld 2018 EU - VIN1370BE - How to Prepare for VCP 6 - Data Center Virtualization.mp4 (1080493629) VMworld 2018 EU - VIN1622QE - Dear IT, You Gotta Modernize Your Data Center. Let vSphere Help..mp4 (851036959) VMworld 2018 EU - VIN1633BER - Introducing vSphere Platinum and vSphere 6.7 Update 1.mp4 (609440322) VMworld 2018 EU - VIN1641BE - Focus, Plan, and Execute: A Deep Dive into Your vSphere Upgrade Journey.mp4 (1335558699) VMworld 2018 EU - VIN1759BE - Extreme Performance Series: vCenter Performance Deep Dive.mp4 (831761817) VMworld 2018 EU - VIN1782BE - Extreme Performance Series: vSphere Compute and Memory Schedulers.mp4 (1150028279) VMworld 2018 EU - VIN1859BE - vSphere SSO Domain Architecture Unplugged.mp4 (987867624) VMworld 2018 EU - VIN1909BE - End of Support: Taking Advantage of the vSphere Lifecycle to Transform.mp4 (1502025564) VMworld 2018 EU - VIN1972BE - Mastering the VMware Tools Lifecycle in Your VMware vSphere Data Center.mp4 (952083424) VMworld 2018 EU - VIN1991BE - Technical Overview of VMware ESXi Patching and Upgrading.mp4 (1012070771) VMworld 2018 EU - VIN2047BE - Persistent Memory with vSphere 6.7: Primary Use Cases and User Workflow.mp4 (976958308) VMworld 2018 EU - VIN2062BE - vSphere Networking: What's New and What's Next.mp4 (1149375444) VMworld 2018 EU - VIN2067BE - Accelerating & Optimizing Machine Learning on vSphere leveraging NVIDIA GPU.mp4 (903185387) VMworld 2018 EU - VIN2186BE - What's New with vSphere 6.7 Core Storage.mp4 (1019459855) VMworld 2018 EU - VIN2259BE - vSphere DRS Enhancements: vSphere 6.7 and Beyond.mp4 (855988309) VMworld 2018 EU - VIN2369BES - Intel's Exciting Persistent Memory Technologies and VMware vSphere.mp4 (1414355153) VMworld 2018 EU - VIN2416BE - Core Storage Best Practices.mp4 (1016493729) VMworld 2018 EU - VIN2463BE - Deciphering Successful vSphere Certificate Implementation.mp4 (1242908760) VMworld 2018 EU - VIN2527BE - Top 10 Automation Requests and How You Can Save Time.mp4 (1133264327) VMworld 2018 EU - VIN2626BE - VMware REST APIs, Python, and You: A Coding Primer.mp4 (1483697588) VMworld 2018 EU - VIN2642BE - Don't Sleep on RESTful APIs for vSphere.mp4 (770527879) VMworld 2018 EU - VIN2650BE - Designing for the Unexpected: Delivering IT on a Boat with VMware Horizon.mp4 (738421458) VMworld 2018 EU - VIN2652BE - What's New with vSphere.mp4 (947453662) VMworld 2018 EU - VIN2660BE - Make Your vSphere 6.7 Upgrade Bulletproof.mp4 (903121569) VMworld 2018 EU - VIN2863QE - Business Value of Data Center Virtualization and Private Cloud.mp4 (598486429) VMworld 2018 EU - VIN2992BE - vSphere Client Roadmap: Past, Present, and Future.mp4 (832431699) VMworld 2018 EU - VIN3353BE - Art of Managing SSL Certificates in vSphere: Troubleshooting, Tip & Tricks.mp4 (960569305) VMworld 2018 EU - VIN3396BE - A Deep Dive into Storage Policy-Based Management for Managing SDS.mp4 (713905558) VMworld 2018 EU - VIN3776BES - Virtual Volumes Deep Dive with Pure Storage.mp4 (1158853617) VMworld 2018 EU - VIN3820QE - Transforming Virtual Infrastructure with All-Flash Storage.mp4 (762090905) VMworld 2018 EU - WIN1236BE - The Secret Sauce Behind VMware's Internal Horizon Desktop Deployments.mp4 (1148748386) VMworld 2018 EU - WIN1717BE - Design Deep Dive: Cloud Burst with Horizon 7 on VMware Cloud Powered by AWS.mp4 (2072185498) VMworld 2018 EU - WIN1824QE - How to Deploy a Desktop Solution in One Hour with Horizon Cloud on Azure.mp4 (941312495) VMworld 2018 EU - WIN2006BE - Optimizing VMware Horizon and NVIDIA vGPU for the Best VDI User Experience.mp4 (1362419077) VMworld 2018 EU - WIN2384BE - Solve Your Citrix Problems with VMware Technologies.mp4 (1188622489) VMworld 2018 EU - WIN2537BE - What's New in Horizon 7.mp4 (1485679784) VMworld 2018 EU - WIN3048BE - What's New with Horizon Cloud on Microsoft Azure.mp4 (1454938783) VMworld 2018 EU - WIN3100BE - Understand and Leverage the Latest Enhancements with Blast Extreme.mp4 (902989525) VMworld 2018 EU - WIN3213BE - Leverage Intelligence and Monitoring for Virtual Desktops and Apps.mp4 (1188797786) VMworld 2018 EU - WIN3450BE - Best Practices for Deploying Horizon on vSAN and VxRail.mp4 (582793059) VMworld 2018 EU - WIN3451BE - Architecting Horizon 7 Enterprise: The Official Reference Architecture.mp4 (1849449865) VMworld 2018 EU - WIN3480BE - Beyond Horizon 7: Moving to a Digital Workspace with Workspace ONE.mp4 (589833535) VMworld 2018 EU - WIN3486BE - Horizon 7 on VMware Cloud on AWS: What You Need to Know.mp4 (1100007943) VMworld 2018 EU - WIN3492BE - JMP: The Easy Button for Delivering and Managing Virtual Desktops and Apps.mp4 (1115200696) VMworld 2018 EU - WIN3503PE - Customer Panel: What You Need to Know About Deploying VDI.mp4 (953412764) VMworld 2018 EU - WIN3535BE - Is VDI Dead?.mp4 (760880683) VMworld 2018 EU - WIN3706PES - Become the office hero with Dell & VMware desktop virtualization solutions.mp4 (1865707914) ```

@arvidn What do you think about relaxing the hardcoded limits of libtorrent a bit to accomodate decoding bigger .torrent files like this one? With increasing file sizes, .torrent files like this will appear more and more. Granted, some of the responsibility falls upon the author of the .torrent file to make decent decisions about the piece size, but still.

Maybe libtorrent could allow big (read: "arbitrary") memory allocations for decoding .torrent files behind a flag/configure setting?

qBittorrent could then make use of such functionality to show a dialog along the lines of "Warning: this .torrent file is very big/contains many pieces. Attempting to open it may take a long time and/or consume a lot of system resources. Proceed?" when opening big files. I think it is not only important to protect against intentionally malicious torrent files, but also to give the user the option to make their own decisions for edge cases like these.

arvidn commented 5 years ago

how does this look? https://github.com/arvidn/libtorrent/pull/3877 anyone want to give it a try in qbt?

FranciscoPombal commented 5 years ago

@arvidn Just tested your PR, and added a few questions there. @Chocobo1 I'm not really sure how to test this in qBittorrent. Can you help?

Anyway, here is the output of dump_torrent (I redacted the value of the pieces key because it is too big):

Click to expand ```txt ~/libtorrent/examples$ ./dump_torrent VMworld2018EU.torrent 2000000 100 1710000 # default tokens limit and recursion limit, custom piece limit slightly above what is needed for this particular file decoding. recursion limit: 100 total item count limit: 2000000 ----- raw info ----- { 'announce': 'udp://tracker.coppersurfer.tk:6969/announce', 'announce-list': [ [ 'udp://tracker.coppersurfer.tk:6969/announce', 'udp://tracker2.christianbro.pw:6969/announce', 'udp://p4p.arenabg.com:1337/announce', 'udp://peerfect.org:6969/announce', 'udp://tracker2.wasabii.com.tw:6969/announce', 'udp://allesanddro.de:1337/announce', 'http://tracker.opentrackr.org:1337/announce', 'udp://tracker.skyts.net:6969/announce', 'udp://9.rarbg.com:2710/announce', 'udp://tracker1.wasabii.com.tw:6969/announce', 'udp://tracker.opentrackr.org:1337/announce', 'udp://tracker.zer0day.to:1337/announce', 'udp://tracker.pirateparty.gr:6969/announce', 'udp://public.popcorn-tracker.org:6969/announce', 'udp://tracker.internetwarriors.net:1337/announce', 'udp://tracker.leechers-paradise.org:6969/announce', 'udp://tracker.piratepublic.com:1337/announce', 'udp://tracker.safe.moe:6969/announce', 'udp://tracker1.xku.tv:6969/announce', 'http://p4p.arenabg.com:1337/announce' ] ], 'created by': 'ruTorrent (PHP Class - Adrien Gibrat)', 'creation date': 1542105685, 'info': { 'files': [ { 'length': 700675549, 'path': [ 'VMworld 2018 EU - ACC1151QE - Never Trust Always Verify with Risk Analytics in Workspace ONE Intelligence.mp4' ] }, { 'length': 632745466, 'path': [ 'VMworld 2018 EU - ACC1328BES - Embracing Zero Trust in the Enterprise ??? Redefining access controls with Okta.mp4' ] }, { 'length': 517341655, 'path': [ 'VMworld 2018 EU - ACC1406BES - How to secure Office 365, Box and GSuite with Okta and VMware.mp4' ] }, { 'length': 1642584516, 'path': [ 'VMworld 2018 EU - ACC1621PE - Customer Panel: Knocking Down the Barriers to Workspace ONE Adoption.mp4' ] }, { 'length': 1766344659, 'path': [ 'VMworld 2018 EU - ACC2162PE - Drive Workspace-as-a-Service and Security Transformation with Workspace ONE.mp4' ] }, { 'length': 1582654106, 'path': [ 'VMworld 2018 EU - ACC2488BE - Delivering Secure and Seamless Access to All Your Apps, Devices and Data.mp4' ] }, { 'length': 2013468861, 'path': [ 'VMworld 2018 EU - ACC2892BE - Learn What's New with Workspace ONE and how to Embrace a Digital Workspace!.mp4' ] }, { 'length': 1655020517, 'path': [ 'VMworld 2018 EU - ACC2945BE - What's New With Workspace ONE Apps and Services.mp4' ] }, { 'length': 1814317871, 'path': [ 'VMworld 2018 EU - ACC3255BE - Workspace ONE: The Art of the Possible.mp4' ] }, { 'length': 1522743003, 'path': [ 'VMworld 2018 EU - BRE2129BE - Introduction to NSX SD-WAN by VeloCloud: Transforming the WAN.mp4' ] }, { 'length': 1795110246, 'path': [ 'VMworld 2018 EU - BRE2165BE - SD-WAN Use Cases Designed to Optimize Your Network.mp4' ] }, { 'length': 1195417106, 'path': [ 'VMworld 2018 EU - BRE2167BE - Zero to 60 in Two Seconds with VMware NSX SD-WAN by VeloCloud.mp4' ] }, { 'length': 1334754995, 'path': [ 'VMworld 2018 EU - BRE2168BE - Deployment of Hybrid SD-WAN with Real-World Examples.mp4' ] }, { 'length': 1390225144, 'path': [ 'VMworld 2018 EU - BRE3038BE - Consuming Cloud Provider SD-WAN Services?.mp4' ] }, { 'length': 1443300616, 'path': [ 'VMworld 2018 EU - CNA1418BE - PKS? A Service Provider Perspective Learnings from a Real-World Project.mp4' ] }, { 'length': 2124465524, 'path': [ 'VMworld 2018 EU - CNA1493BE - Run Docker on Existing Infrastructure with vSphere Integrated Containers.mp4' ] }, { 'length': 1870452986, 'path': [ 'VMworld 2018 EU - CNA1553BE - Deep Dive: The Value of Running Kubernetes on vSphere.mp4' ] }, { 'length': 1046615415, 'path': [ 'VMworld 2018 EU - CNA1634BE - Container Portfolio at VMware.mp4' ] }, { 'length': 1486767954, 'path': [ 'VMworld 2018 EU - CNA1656BE - Put a Lid on It: Securing Containers and Kubernetes on vSphere and in Cloud.mp4' ] }, { 'length': 1832693157, 'path': [ 'VMworld 2018 EU - CNA1674BE - Deep Dive: Run Kubernetes in Production with PKS.mp4' ] }, { 'length': 1742041518, 'path': [ 'VMworld 2018 EU - CNA1816BE - Container and Kubernetes 101 for Admins.mp4' ] }, { 'length': 1372692613, 'path': [ 'VMworld 2018 EU - CNA2009BE - Run Stateful Apps on Kubernetes with PKS: Highlight WebLogic Server.mp4' ] }, { 'length': 1461315709, 'path': [ 'VMworld 2018 EU - CNA2084BE - Intro to VMware Cloud PKS-Managed K8s Service on Public Cloud.mp4' ] }, { 'length': 1101089320, 'path': [ 'VMworld 2018 EU - CNA2141BE - Applying Software Design Patterns and Methodologies to Your IT Services.mp4' ] }, { 'length': 2099388109, 'path': [ 'VMworld 2018 EU - CNA2755BE - Architecting PKS for Production: Lessons Learned from PKS Deployments.mp4' ] }, { 'length': 1301848742, 'path': [ 'VMworld 2018 EU - CNA3124BE - Deep Dive: VMware Cloud PKS-K8s as a Service on Public Cloud.mp4' ] }, { 'length': 1115539164, 'path': [ 'VMworld 2018 EU - CTO1189BE - Next-Gen Multi-Cloud Architecture for Machine Learning.mp4' ] }, { 'length': 1521170465, 'path': [ 'VMworld 2018 EU - CTO1204BES - Optimize your Virtualized Environment with Hardware Accelerators.mp4' ] }, { 'length': 1666936982, 'path': [ 'VMworld 2018 EU - CTO1875BE - Quantum Supremacy: Basics, Outlook, and Security Implications.mp4' ] }, { 'length': 1869428374, 'path': [ 'VMworld 2018 EU - CTO1901BE - Inside VMware's Innovation Engine.mp4' ] }, { 'length': 1225470329, 'path': [ 'VMworld 2018 EU - CTO1917BE - Emerging Technologies in the Real World.mp4' ] }, { 'length': 1762253714, 'path': [ 'VMworld 2018 EU - CTO2657BE - Evolution of VMware's Microgrid: The Largest Solar Deployment in Palo Alto.mp4' ] }, { 'length': 1448595442, 'path': [ 'VMworld 2018 EU - CTO2816BE - How Open Source Is Bringing Serverless On Premises.mp4' ] }, { 'length': 1640571282, 'path': [ 'VMworld 2018 EU - CTO3496PE - VMware CTO Panel: What's Over the Horizon?.mp4' ] }, { 'length': 1964642240, 'path': [ 'VMworld 2018 EU - CTO3509BE - VMware at the Edge: Automation, Analytics, and Real-Time Business.mp4' ] }, { 'length': 1361087171, 'path': [ 'VMworld 2018 EU - CTO3584BE - An Introduction to VMware's Blockchain Technologies.mp4' ] }, { 'length': 1751552326, 'path': [ 'VMworld 2018 EU - CTO3650BE - Tech-Lash: Addressing the Public's Concerns About Tech.mp4' ] }, { 'length': 1728810207, 'path': [ 'VMworld 2018 EU - DC3732KE - Driving Transformation from the Data Center to the Public Cloud.mp4' ] }, { 'length': 1713128496, 'path': [ 'VMworld 2018 EU - DC3845KE - Cloud and Developer Keynote: Public Clouds and Kubernetes at Scale.mp4' ] }, { 'length': 1144006576, 'path': [ 'VMworld 2018 EU - DEV1031BES - Mind the Gap: Building a closer relationship between Security and DevOps.mp4' ] }, { 'length': 606875134, 'path': [ 'VMworld 2018 EU - DEV1325BE - Path to Production: Value Stream Mapping in a DevOps World.mp4' ] }, { 'length': 1135868951, 'path': [ 'VMworld 2018 EU - DEV1434BE - From Building Infrastructure to Building App Platforms: Your Next Career.mp4' ] }, { 'length': 806852120, 'path': [ 'VMworld 2018 EU - DEV1965QE - QuickStart DevOps Culture with VMware.mp4' ] }, { 'length': 1223388268, 'path': [ 'VMworld 2018 EU - DEV2403BE - DevOps Culture and Practice: From Theory to Reality - A VMware Story.mp4' ] }, { 'length': 1369584380, 'path': [ 'VMworld 2018 EU - DEV2641BE - Bring Your Traditional Application to Kubernetes with PKS.mp4' ] }, { 'length': 1051031769, 'path': [ 'VMworld 2018 EU - DEV3466BE - Putting It All Together: Using VMware Products to Deliver the DevOps Dream.mp4' ] }, { 'length': 785212644, 'path': [ 'VMworld 2018 EU - DEV3504BE - Development at VMware: A Look at How PowerCLI Has Evolved Over the Years.mp4' ] }, { 'length': 1897848655, 'path': [ 'VMworld 2018 EU - DW3727KE - The Digital Workspace Keynote: End User Computing and Mobility Live!.mp4' ] }, { 'length': 833000368, 'path': [ 'VMworld 2018 EU - END1225BE - Troubleshooting Tips and Tricks for Your iOS Deployment.mp4' ] }, { 'length': 1096760725, 'path': [ 'VMworld 2018 EU - END1271BES - Securely Enable Cloud Worker Productivity with Chrome Enterprise and VMware.mp4' ] }, { 'length': 1165046197, 'path': [ 'VMworld 2018 EU - END1419BES - Using real-world innovation to deliver modern workplaces for industry.mp4' ] }, { 'length': 1175251744, 'path': [ 'VMworld 2018 EU - END2713BE - Co-manage Workspace ONE + SCCM : Get to Windows 10 Modern Management Faster.mp4' ] }, { 'length': 1437252917, 'path': [ 'VMworld 2018 EU - END2728PE - Panel: Real-World Conversations on Windows 10 App Lifecycle Management.mp4' ] }, { 'length': 2070895067, 'path': [ 'VMworld 2018 EU - END2766BE - First Look at New Dell and VMware Developments That Optimize PC Management.mp4' ] }, { 'length': 1575796046, 'path': [ 'VMworld 2018 EU - END2852BE - Discover The Latest Workspace ONE Intelligence Capabilities and ??Use Cases.mp4' ] }, { 'length': 1284556866, 'path': [ 'VMworld 2018 EU - END2866BE - Transforming Windows 10 Management: What Every Decision Maker Needs to Know.mp4' ] }, { 'length': 760907935, 'path': [ 'VMworld 2018 EU - END2902QE - End-User Computing at VMworld: Everything You Need to Know.mp4' ] }, { 'length': 1374439107, 'path': [ 'VMworld 2018 EU - END2912BE - Workspace ONE Intelligence Mobile and Desktop Operations.mp4' ] }, { 'length': 1203158141, 'path': [ 'VMworld 2018 EU - END2948BE - Enhanced iOS Management: From Onboarding to Update Management and Beyond.mp4' ] }, { 'length': 1846956631, 'path': [ 'VMworld 2018 EU - END2962BE - Deep Dive Into New Android Enterprise Personas and Deployment Methods.mp4' ] }, { 'length': 1191267360, 'path': [ 'VMworld 2018 EU - END2966BE - Expanding AirWatch to UEM for macOS Modern Management.mp4' ] }, { 'length': 1610511098, 'path': [ 'VMworld 2018 EU - END2978PE - How AirWatch Customers Are Moving Beyond Mobile to UEM across all Devices.mp4' ] }, { 'length': 2078966788, 'path': [ 'VMworld 2018 EU - END3460BE - Deep Dive Into What's New with Workspace ONE Unified Endpoint Management.mp4' ] }, { 'length': 1794228076, 'path': [ 'VMworld 2018 EU - END3572BE - Industry 4.0: How Rugged and Workplace IoT Are Transforming Supply Chains.mp4' ] }, { 'length': 367553258, 'path': [ 'VMworld 2018 EU - HCI1059BE - Architecting VMware Site Recovery Manager to Meet Your DR Goals.mp4' ] }, { 'length': 1052946453, 'path': [ 'VMworld 2018 EU - HCI1070BES - End User Computing Done Right.mp4' ] }, { 'length': 1240108815, 'path': [ 'VMworld 2018 EU - HCI1078BES - WestLotto Reduces Backup & Recovery Times by up to 98% with Cohesity's HCSS.mp4' ] }, { 'length': 974411379, 'path': [ 'VMworld 2018 EU - HCI1080BES - Be the change agent, not the ticket agent.mp4' ] }, { 'length': 1468204796, 'path': [ 'VMworld 2018 EU - HCI1246BE - Optimizing vSAN for Performance.mp4' ] }, { 'length': 1005561944, 'path': [ 'VMworld 2018 EU - HCI1270BE - The Power of Storage Policy-Based Management.mp4' ] }, { 'length': 1269816634, 'path': [ 'VMworld 2018 EU - HCI1329BES - Lessons Learned from Real-World vSAN Operations.mp4' ] }, { 'length': 1328764368, 'path': [ 'VMworld 2018 EU - HCI1338BE - vSAN: An Ideal Storage Platform for Kubernetes-controlled Cloud-Native Apps.mp4' ] }, { 'length': 1249621366, 'path': [ 'VMworld 2018 EU - HCI1469BE - The Future of vSAN and Hyperconverged Infrastructure.mp4' ] }, { 'length': 1518228101, 'path': [ 'VMworld 2018 EU - HCI1477BE - New Ways to Use vRealize Operations and Log Insight for vSAN Environments.mp4' ] }, { 'length': 794346945, 'path': [ 'VMworld 2018 EU - HCI1552BE - Deploying vSAN to 300 Stores in 2 Weeks: An Automation Story.mp4' ] }, { 'length': 735816549, 'path': [ 'VMworld 2018 EU - HCI1583BE - vSAN Myth Busters: Busting the Common Misconceptions About vSAN.mp4' ] }, { 'length': 1022591490, 'path': [ 'VMworld 2018 EU - HCI1603BE - Native vSAN Data Protection: Safeguarding Virtual Machine Data on vSAN.mp4' ] }, { 'length': 1335799501, 'path': [ 'VMworld 2018 EU - HCI1705BE - Data Protection in VMware Hybrid Clouds.mp4' ] }, { 'length': 1239415304, 'path': [ 'VMworld 2018 EU - HCI1768BE - What's New in vSAN: Technical Deep Dive.mp4' ] }, { 'length': 1044070312, 'path': [ 'VMworld 2018 EU - HCI1884BE - NSX and Generic Network Overlays with HCI: Everything You Need to Know.mp4' ] }, { 'length': 1258521678, 'path': [ 'VMworld 2018 EU - HCI1993BE - vSAN Technical Deep Dive.mp4' ] }, { 'length': 1014548250, 'path': [ 'VMworld 2018 EU - HCI2019BE - Running SAP HANA on HCI Powered by vSAN.mp4' ] }, { 'length': 1395713582, 'path': [ 'VMworld 2018 EU - HCI2032BE - Successful vSAN for Remote Offices and Branch Offices.mp4' ] }, { 'length': 1036251689, 'path': [ 'VMworld 2018 EU - HCI2038BE - Best Practices for Deploying Hadoop Workloads on HCI Powered by vSAN.mp4' ] }, { 'length': 1332783992, 'path': [ 'VMworld 2018 EU - HCI2041BE - vSAN Encryption Deep Dive.mp4' ] }, { 'length': 1067189829, 'path': [ 'VMworld 2018 EU - HCI2052BE - Sizing Your HCI Environment: How To Do It Correctly and Accurately.mp4' ] }, { 'length': 971989326, 'path': [ 'VMworld 2018 EU - HCI2053BE - Hitting Refresh with HCI for Better Performance and Less Complexity.mp4' ] }, { 'length': 1095392411, 'path': [ 'VMworld 2018 EU - HCI2088BE - vSAN Stretched Clusters Technical Deep Dive.mp4' ] }, { 'length': 850529952, 'path': [ 'VMworld 2018 EU - HCI2103BE - Choosing the Right HCI Solution in the Multi-Cloud Era.mp4' ] }, { 'length': 840850941, 'path': [ 'VMworld 2018 EU - HCI2107QE - Back to Basics: Why HCI? Why Now?.mp4' ] }, { 'length': 1189931914, 'path': [ 'VMworld 2018 EU - HCI2164BE - HCI Management, Current and Future.mp4' ] }, { 'length': 1042319452, 'path': [ 'VMworld 2018 EU - HCI2180BE - vSAN Support Insight - Inside Out.mp4' ] }, { 'length': 872065257, 'path': [ 'VMworld 2018 EU - HCI2208BE - vSAN Hardware Guidance on Performance and Configuration.mp4' ] }, { 'length': 932196609, 'path': [ 'VMworld 2018 EU - HCI2474BE - Site Recovery Manager 8.1: What's New?.mp4' ] }, { 'length': 961518727, 'path': [ 'VMworld 2018 EU - HCI2513QE - Using vSAN Native Data Protection in the Real World.mp4' ] }, { 'length': 1100849560, 'path': [ 'VMworld 2018 EU - HCI2522BE - Getting Started with vSAN Automation.mp4' ] }, { 'length': 1271728364, 'path': [ 'VMworld 2018 EU - HCI2617BE - Best Practices for Deploying Business-Critical Oracle Workloads on vSAN HCI.mp4' ] }, { 'length': 869502652, 'path': [ 'VMworld 2018 EU - HCI2681BE - The Latest and Greatest with VMware vSAN.mp4' ] }, { 'length': 717402999, 'path': [ 'VMworld 2018 EU - HCI2909QER - VMs on vSAN - An End to End View.mp4' ] }, { 'length': 1016699076, 'path': [ 'VMworld 2018 EU - HCI2997BE - Scaling Beyond Big Data: HealthCare and Financial Data on vSAN.mp4' ] }, { 'length': 1235127097, 'path': [ 'VMworld 2018 EU - HCI3041BE - Introducing Scalable File Storage on vSAN with Native File Services.mp4' ] }, { 'length': 968514020, 'path': [ 'VMworld 2018 EU - HCI3452BE - Achieving a GDPR-Ready Architecture Leveraging VMware vSAN.mp4' ] }, { 'length': 1231020972, 'path': [ 'VMworld 2018 EU - HCI3707BES - Infrastructure Matters: From Modernizing Servers to a VMware cloud on HCI.mp4' ] }, { 'length': 1289981503, 'path': [ 'VMworld 2018 EU - HCI3728KE - Innovating Beyond HCI: How VMware is Driving the Next Data Center Revolution.mp4' ] }, { 'length': 1488454984, 'path': [ 'VMworld 2018 EU - HYP1005BES - Automation & orchestration of Veeam & VMware featuring VMware Cloud on AWS.mp4' ] }, { 'length': 1163730733, 'path': [ 'VMworld 2018 EU - HYP1022BES - Practical Guide for Delivering Advanced Security at Scale and Speed in SDDC.mp4' ] }, { 'length': 1295722873, 'path': [ 'VMworld 2018 EU - HYP1052BES - A Hybrid Journey to Cloud.mp4' ] }, { 'length': 1478330383, 'path': [ 'VMworld 2018 EU - HYP1060PES - Modern Data Protection: how to ensure your data never gets lost.mp4' ] }, { 'length': 654521242, 'path': [ 'VMworld 2018 EU - HYP1071BE - Art of Possible: Empowering Every vSphere Infrastructure to Become Hybrid.mp4' ] }, { 'length': 1051147468, 'path': [ 'VMworld 2018 EU - HYP1079BES - Goodbye Periodic Backup. Hello Zerto 7.mp4' ] }, { 'length': 1310182504, 'path': [ 'VMworld 2018 EU - HYP1083BES - Mission Critical VMware on IBM Cloud.mp4' ] }, { 'length': 1303576714, 'path': [ 'VMworld 2018 EU - HYP1084BE - Extending VMware workloads to the public cloud.mp4' ] }, { 'length': 823476250, 'path': [ 'VMworld 2018 EU - HYP1085BE - Public Cloud- A critical component of your digital transformation.mp4' ] }, { 'length': 1610842935, 'path': [ 'VMworld 2018 EU - HYP1139BES - Transform Your Enterprise with Kubernetes and VMs Together.mp4' ] }, { 'length': 1295812374, 'path': [ 'VMworld 2018 EU - HYP1142BE - Case Study: Hybrid Cloud with vCloud Extender from Customer to Provider.mp4' ] }, { 'length': 1209019464, 'path': [ 'VMworld 2018 EU - HYP1187BE - VMware Cloud on AWS: The Migration Venture.mp4' ] }, { 'length': 981742859, 'path': [ 'VMworld 2018 EU - HYP1323BES - There's a smarter way to eliminate downtime.mp4' ] }, { 'length': 992846831, 'path': [ 'VMworld 2018 EU - HYP1369BES - Automate Hosted Private Clouds Everywhere using VMware Cloud Foundation.mp4' ] }, { 'length': 1026925471, 'path': [ 'VMworld 2018 EU - HYP1376BE - Accelerate Your Hybrid Cloud with VMware Cloud on AWS: What???s New.mp4' ] }, { 'length': 983795867, 'path': [ 'VMworld 2018 EU - HYP1377BE - VMware Cloud on AWS Security and Compliance Details.mp4' ] }, { 'length': 1291054989, 'path': [ 'VMworld 2018 EU - HYP1496BE - A Practitioner's Guide to Migrating Workloads to VMware Cloud on AWS.mp4' ] }, { 'length': 1556136771, 'path': [ 'VMworld 2018 EU - HYP1499BE - VMware Cloud Provider Pod.mp4' ] }, { 'length': 1638593102, 'path': [ 'VMworld 2018 EU - HYP1803BE - Delivering Custom Services Through vCloud Director Extensibility.mp4' ] }, { 'length': 1889614281, 'path': [ 'VMworld 2018 EU - HYP1810PE - Ask the Cloud Experts.mp4' ] }, { 'length': 1493085413, 'path': [ 'VMworld 2018 EU - HYP1923BE - Building Hybrid Cloud with Horizon on VMware Cloud on AWS.mp4' ] }, { 'length': 958644692, 'path': [ 'VMworld 2018 EU - HYP1950BE - Navigating Hybrid Cloud.mp4' ] }, { 'length': 1493351634, 'path': [ 'VMworld 2018 EU - HYP2048BE - VMware Cloud on AWS: Live, Next-Gen Integrations for Your Next-Gen Cloud.mp4' ] }, { 'length': 1331451115, 'path': [ 'VMworld 2018 EU - HYP2060BE - New VMware Cloud Provider Hub - Centralized Provider Portal for VMware Cloud Services.mp4' ] }, { 'length': 1056754103, 'path': [ 'VMworld 2018 EU - HYP2138BES - How Secure is Your Hybrid Cloud? Optimize for Security in a Post-GDPR World.mp4' ] }, { 'length': 996336212, 'path': [ 'VMworld 2018 EU - HYP2145BES - Hybrid cloud architecture design and best practices for VMware Cloud on AWS.mp4' ] }, { 'length': 999518287, 'path': [ 'VMworld 2018 EU - HYP2406BE - VMware NSX for Service Providers: A Technical View.mp4' ] }, { 'length': 800255329, 'path': [ 'VMworld 2018 EU - HYP2422BE - Enabling Cloud Marketplace Services with VMware.mp4' ] }, { 'length': 1112094673, 'path': [ 'VMworld 2018 EU - HYP2445BE - From On Premises to Beyond.mp4' ] }, { 'length': 1624599174, 'path': [ 'VMworld 2018 EU - HYP2697PE - VMware Cloud on AWS Customer Panel.mp4' ] }, { 'length': 826526382, 'path': [ 'VMworld 2018 EU - HYP2817QE - Understanding the TCO Benefits of VMware Cloud on AWS.mp4' ] }, { 'length': 1368436419, 'path': [ 'VMworld 2018 EU - HYP2861BE - Multi Cloud Architectures and Evolution: Customer Perspective.mp4' ] }, { 'length': 1041108599, 'path': [ 'VMworld 2018 EU - HYP2890BE - How Cloud Service Providers Deliver Multi-Cloud Management-as-a-Service.mp4' ] }, { 'length': 999250777, 'path': [ 'VMworld 2018 EU - HYP3003BES - Hello, You Had Me at Infrastructure as Code: Hybrid SDDC Cloud Automation.mp4' ] }, { 'length': 1608818449, 'path': [ 'VMworld 2018 EU - HYP3019BE - VMware Site Recovery: DR-as-a-Service with VMware Cloud on AWS.mp4' ] }, { 'length': 993941022, 'path': [ 'VMworld 2018 EU - HYP3025BE - Teaching Old Dogs New Tricks: High Availability for VMware Cloud on AWS.mp4' ] }, { 'length': 1135468086, 'path': [ 'VMworld 2018 EU - HYP3061BE - VMware on IBM Cloud: Best-in-class Enterprise Cloud with a simple way to get there.mp4' ] }, { 'length': 1181517259, 'path': [ 'VMworld 2018 EU - HYP3286BE - Enabling High Capacity Workloads with Elastic EBS-backed vSAN on VMC.mp4' ] }, { 'length': 997340495, 'path': [ 'VMworld 2018 EU - HYP3696BES - Simplify operations with machine learning for secondary data and apps.mp4' ] }, { 'length': 638941284, 'path': [ 'VMworld 2018 EU - HYP3705BES - Improving App Performance and Protection for VMware: NVMe, Cloud and Beyond.mp4' ] }, { 'length': 1205185778, 'path': [ 'VMworld 2018 EU - HYP3822BE - Dell EMC Data Protection for VMware, Simplicity Meets Power.mp4' ] }, { 'length': 1632886842, 'path': [ 'VMworld 2018 EU - HYP3853BE - FREESTYLIN THE CLOUD with IBM and skateboarding legend, Rodney Mullen.mp4' ] }, { 'length': 1559327214, 'path': [ 'VMworld 2018 EU - IOT1203BES - From Disruption to Business Transformation.mp4' ] }, { 'length': 1432428906, 'path': [ 'VMworld 2018 EU - IOT1374BES - The 5 challenges of IoT at Enterprise Scale.mp4' ] }, { 'length': 433257043, 'path': [ 'VMworld 2018 EU - IOT1746QE - Can Blockchain Be Used as a Tool to Secure the IoT?.mp4' ] }, { 'length': 1225787841, 'path': [ 'VMworld 2018 EU - IOT2593BE - Project Dimension - The Easy Button for Edge Computing.mp4' ] }, { 'length': 1356190406, 'path': [ 'VMworld 2018 EU - IOT2812BE - Design IoT with Security in Mind Using VMware Pulse IoT and NSX.mp4' ] }, { 'length': 1150323795, 'path': [ 'VMworld 2018 EU - IOT3541BE - Take Your Hybrid Cloud Strategy to the Edge with VMware Solutions.mp4' ] }, { 'length': 941852095, 'path': [ 'VMworld 2018 EU - IOT3549QE - Make Friends with Your OT Department: The Prerequisite to IoT Success.mp4' ] }, { 'length': 1034041007, 'path': [ 'VMworld 2018 EU - IOT3550PE - Customers Who Take Control of the Edge with VMware Pulse IoT Solutions.mp4' ] }, { 'length': 1599250261, 'path': [ 'VMworld 2018 EU - IOT3563BE - Surveillance and IoT Helping Keep the World Safe.mp4' ] }, { 'length': 658688580, 'path': [ 'VMworld 2018 EU - IOT3680BE - Deploy, Manage, and Get Value from IOT with Microsoft, Dell and VMware.mp4' ] }, { 'length': 1434258023, 'path': [ 'VMworld 2018 EU - LDT1011BES - Hybrid IT: HPE's composable, software-defined, dynamic datacenter vision.mp4' ] }, { 'length': 1182364943, 'path': [ 'VMworld 2018 EU - LDT1012BES - Examining the Best Practices for Executing Your Multi-Cloud Environment.mp4' ] }, { 'length': 1865378633, 'path': [ 'VMworld 2018 EU - LDT1252PE - A fireside chat with the VMware IT CIO Leadership Team.mp4' ] }, { 'length': 1734341402, 'path': [ 'VMworld 2018 EU - LDT1324PE - Increasing Productivity by Providing a Superior Employee Experience.mp4' ] }, { 'length': 1164566397, 'path': [ 'VMworld 2018 EU - LDT1433BE - Transforming IT through Infrastructure-as-Code.mp4' ] }, { 'length': 1564252620, 'path': [ 'VMworld 2018 EU - LDT1515PE - Transformers: How VMware IT Transitioned to a Services-Based Organization.mp4' ] }, { 'length': 1590344927, 'path': [ 'VMworld 2018 EU - LDT1719BE - Taming Security with Tools: Making Compliance a Reality.mp4' ] }, { 'length': 825853390, 'path': [ 'VMworld 2018 EU - LDT1865BE - Case Study: Measuring the Business Value of Time to Market.mp4' ] }, { 'length': 1882745883, 'path': [ 'VMworld 2018 EU - LDT1873BE - A Peek into the Future of VMware IT's Multi-Cloud Strategy.mp4' ] }, { 'length': 1245226484, 'path': [ 'VMworld 2018 EU - LDT1899BE - Embracing a DevOps Cloud Operational Model for Private Cloud.mp4' ] }, { 'length': 1041948876, 'path': [ 'VMworld 2018 EU - LDT1907BE - Achieving Happiness: Building Your Brand and Your Career.mp4' ] }, { 'length': 1770835271, 'path': [ 'VMworld 2018 EU - LDT1940BE - Digital Transformation in Action: From Buzzword to Reality.mp4' ] }, { 'length': 915814971, 'path': [ 'VMworld 2018 EU - LDT2787PE - Rethinking Financial Services: Adapting to a Digital Economy.mp4' ] }, { 'length': 1504668499, 'path': [ 'VMworld 2018 EU - LDT3135PE - How Your Peers are REALLY Doing in Their Digital Transformation.mp4' ] }, { 'length': 1541297746, 'path': [ 'VMworld 2018 EU - LDT3675BE - Status of CIO Recruitment and Leadership Traits most Desired by CEOs.mp4' ] }, { 'length': 1270976278, 'path': [ 'VMworld 2018 EU - MGT1076BES - The New Era of Cloud Data Management.mp4' ] }, { 'length': 1298606725, 'path': [ 'VMworld 2018 EU - MGT1081BES - Hitachi brings the Hybrid Cloud alive with Infrastructure Automation.mp4' ] }, { 'length': 1652928312, 'path': [ 'VMworld 2018 EU - MGT1082BES - True tales of Multi-Cloud Integration and Automation in the Enterprise.mp4' ] }, { 'length': 1768908659, 'path': [ 'VMworld 2018 EU - MGT1201BE - Self-Driving Operations: What's New with vRealize Operations.mp4' ] }, { 'length': 1286097159, 'path': [ 'VMworld 2018 EU - MGT1312BE - Intro to VMware's Cloud Management Automation Services. You agile enough?.mp4' ] }, { 'length': 1377801502, 'path': [ 'VMworld 2018 EU - MGT1336PE - Tales from the Trenches: Realizing the Full Value of vRealize Operations.mp4' ] }, { 'length': 1137863266, 'path': [ 'VMworld 2018 EU - MGT1402BE - Billion Lyft Rides, Half Million IoT Users: How to Scale SaaS with Analytics.mp4' ] }, { 'length': 1350893187, 'path': [ 'VMworld 2018 EU - MGT1440BE - Master Performance and Capacity Management with vRealize Operations.mp4' ] }, { 'length': 1152349702, 'path': [ 'VMworld 2018 EU - MGT1534BE - vRealize Operations Capacity and Cost Management.mp4' ] }, { 'length': 977252995, 'path': [ 'VMworld 2018 EU - MGT1640BE - Self-Driving Operations with vRealize Operations Performance Optimization.mp4' ] }, { 'length': 1536987242, 'path': [ 'VMworld 2018 EU - MGT1645BE - How CloudHealth Reduces the Cost and Complexity of Multi-Cloud Operations.mp4' ] }, { 'length': 958474834, 'path': [ 'VMworld 2018 EU - MGT1652BE - Application Networking and Security with vRealize Automation and NSX-T.mp4' ] }, { 'length': 1214705754, 'path': [ 'VMworld 2018 EU - MGT1773BE - Container Management and VMware PKS Support for vRealize Automation.mp4' ] }, { 'length': 808679295, 'path': [ 'VMworld 2018 EU - MGT1774BE - vRealize Multi-Cloud Case Study: Borusan Industrial Group.mp4' ] }, { 'length': 1163298795, 'path': [ 'VMworld 2018 EU - MGT2020BE - Digital Transformation in the Public Sector: A Case Study from Qatar.mp4' ] }, { 'length': 944316262, 'path': [ 'VMworld 2018 EU - MGT2139BE - Manage IBM Power Series using vRealize Operations Manager.mp4' ] }, { 'length': 1442948063, 'path': [ 'VMworld 2018 EU - MGT2204BE - VMware Cloud Management: See the Mother of All Demos!.mp4' ] }, { 'length': 1025622734, 'path': [ 'VMworld 2018 EU - MGT2237BES - Cisco MultiCloud integrated into your VMware environment.mp4' ] }, { 'length': 1848008484, 'path': [ 'VMworld 2018 EU - MGT2242BE - What's New in vRealize Automation.mp4' ] }, { 'length': 843719223, 'path': [ 'VMworld 2018 EU - MGT2528BE - vRealize Automation Architecture and Troubleshooting Deep Dive.mp4' ] }, { 'length': 1213966098, 'path': [ 'VMworld 2018 EU - MGT2552BE - Troubleshooting Made Easy with vRealize Operations.mp4' ] }, { 'length': 1417223990, 'path': [ 'VMworld 2018 EU - MGT2556BE - Use Cloud Services to Deploy and Maintain Apps in a Multi-Cloud Environment.mp4' ] }, { 'length': 1344724762, 'path': [ 'VMworld 2018 EU - MGT2844BE - AWS App Security and Visibility with Network Insight and Log Intelligence.mp4' ] }, { 'length': 1413391952, 'path': [ 'VMworld 2018 EU - MGT2915BE - Agile Cloud Management with VMware.mp4' ] }, { 'length': 1691499608, 'path': [ 'VMworld 2018 EU - MGT2920BE - Automation Success Story: Enabling Agility with Cloud Automation Services.mp4' ] }, { 'length': 791536533, 'path': [ 'VMworld 2018 EU - MGT2934BE - Optimize Workload Cost and Performance Using the vRealize Suite.mp4' ] }, { 'length': 1614613989, 'path': [ 'VMworld 2018 EU - MGT2954BE - Real-Time Security Insights and Governance for Public Cloud Infrastructure.mp4' ] }, { 'length': 1207879890, 'path': [ 'VMworld 2018 EU - MGT3026BE - Building Machine Learning Services with VMware Integrated OpenStack.mp4' ] }, { 'length': 1741516238, 'path': [ 'VMworld 2018 EU - MGT3192BE - Cloud Admin Deep Dive for Multi-Cloud Monitoring and Troubleshooting.mp4' ] }, { 'length': 1672404106, 'path': [ 'VMworld 2018 EU - MGT3302BE - CloudHealth: The foundation for your Cloud Centre of Excellence.mp4' ] }, { 'length': 1167472388, 'path': [ 'VMworld 2018 EU - MGT3303BE - Achieving a Comprehensive Cloud Strategy Leveraging CloudHealth.mp4' ] }, { 'length': 1107172936, 'path': [ 'VMworld 2018 EU - MGT3718BE - Finding the Hidden Risks and Connected Threats Across Your Public Cloud.mp4' ] }, { 'length': 709341082, 'path': [ 'VMworld 2018 EU - MGT3918BE - Amazon RDS on VMware: Database Management Services on vSphere.mp4' ] }, { 'length': 692322567, 'path': [ 'VMworld 2018 EU - NET1020BES - You can still get burned when its cloudy.mp4' ] }, { 'length': 1359573696, 'path': [ 'VMworld 2018 EU - NET1106BE - Advanced NSX Data Center: Demystifying the VTEP, MAC, and ARP Tables.mp4' ] }, { 'length': 1491395381, 'path': [ 'VMworld 2018 EU - NET1127BE - Logical Routing Deep Dive on NSX-T Data Center.mp4' ] }, { 'length': 1270478518, 'path': [ 'VMworld 2018 EU - NET1128BE - Logical Routing Deep Dive on NSX Data Center for vSphere.mp4' ] }, { 'length': 1082809889, 'path': [ 'VMworld 2018 EU - NET1285BE - The Future of Networking and Security with VMware NSX.mp4' ] }, { 'length': 1468477963, 'path': [ 'VMworld 2018 EU - NET1327BE - VMware Cloud on AWS with NSX: Use Cases, Design, and Implementation.mp4' ] }, { 'length': 1101362171, 'path': [ 'VMworld 2018 EU - NET1363BE - Building a Multi-Tenant Private Cloud with NSX-T Data Center.mp4' ] }, { 'length': 931334967, 'path': [ 'VMworld 2018 EU - NET1400BES - Creating The New Frontier in Visibility for The Data Center of the Future.mp4' ] }, { 'length': 1275918160, 'path': [ 'VMworld 2018 EU - NET1516BE - Introduction to NSX Cloud.mp4' ] }, { 'length': 1084658520, 'path': [ 'VMworld 2018 EU - NET1536BE - Multi-Site Networking and Security with NSX Data Center.mp4' ] }, { 'length': 1100118859, 'path': [ 'VMworld 2018 EU - NET1537BE - NSX-T Data Center Architecture and Benefits.mp4' ] }, { 'length': 1008987533, 'path': [ 'VMworld 2018 EU - NET1549BE - Deep Dive into Operationalizing NSX-T Data Center.mp4' ] }, { 'length': 2064462401, 'path': [ 'VMworld 2018 EU - NET1559BE - SDDC Reference Design with NSX Data Center for vSphere.mp4' ] }, { 'length': 2087539793, 'path': [ 'VMworld 2018 EU - NET1561BE - Next-Generation Reference Design with NSX-T Data Center: Part 1.mp4' ] }, { 'length': 2158002523, 'path': [ 'VMworld 2018 EU - NET1562BE - Next-Generation Reference Design with NSX-T Data Center: Part 2.mp4' ] }, { 'length': 1047977277, 'path': [ 'VMworld 2018 EU - NET1586BE - Networking and Security for Small Data Centers with NSX Data Center.mp4' ] }, { 'length': 1150202858, 'path': [ 'VMworld 2018 EU - NET1610BE - NSX-T Edge Services: Design and Deployment Options.mp4' ] }, { 'length': 1540326279, 'path': [ 'VMworld 2018 EU - NET1642BE - NSX-PowerOps: Day2 Ops, NSX Health, Security, and Automated Documentation.mp4' ] }, { 'length': 2072113276, 'path': [ 'VMworld 2018 EU - NET1677BE - Kubernetes Container Networking with NSX-T Data Center Deep Dive.mp4' ] }, { 'length': 765010066, 'path': [ 'VMworld 2018 EU - NET1723BE - Day 2 Automation of NSX Data Center Using vRealize Suite.mp4' ] }, { 'length': 1032444282, 'path': [ 'VMworld 2018 EU - NET1742BE - N-VDS: The next generation switch architecture with VMware NSX Data Center.mp4' ] }, { 'length': 1265930841, 'path': [ 'VMworld 2018 EU - NET1754BE - NSX Cloud:Deployment Deep Dive and Architecture.mp4' ] }, { 'length': 2156618169, 'path': [ 'VMworld 2018 EU - NET1879BE - vRealize Network Insight Deep Dive.mp4' ] }, { 'length': 1547204708, 'path': [ 'VMworld 2018 EU - NET1894BE - NSX Design for Cloud-native Apps with Pivotal Cloud Foundry.mp4' ] }, { 'length': 1531774199, 'path': [ 'VMworld 2018 EU - NET1919BE - NSX Mindset: Clouds Collide, Opportunity Strikes.mp4' ] }, { 'length': 2167146680, 'path': [ 'VMworld 2018 EU - NET1945BE - Deploying NSX Data Center on a Cisco Infrastructure.mp4' ] }, { 'length': 1785469944, 'path': [ 'VMworld 2018 EU - NET2068BE - Introduction to Container Networking and Security with NSX-T Data Center.mp4' ] }, { 'length': 790944682, 'path': [ 'VMworld 2018 EU - NET2409BE - Advanced NSX Services in VMware Cloud on AWS: Use Cases and Best Practices.mp4' ] }, { 'length': 1147289516, 'path': [ 'VMworld 2018 EU - NET2420BE - Rethinking Disaster Recovery with NSX Data Center and NSX Hybrid Connect.mp4' ] }, { 'length': 2138387860, 'path': [ 'VMworld 2018 EU - NET2701BE - Virtual Cloud Network End-to-End Demo: Powered by NSX.mp4' ] }, { 'length': 1853943929, 'path': [ 'VMworld 2018 EU - NET2764BE - Introduction to vRealize Network Insight.mp4' ] }, { 'length': 1520631563, 'path': [ 'VMworld 2018 EU - NET2770BE - Introduction to NSX Data Center.mp4' ] }, { 'length': 968936109, 'path': [ 'VMworld 2018 EU - NET3042PE - Customer Panel on NSX Data Center.mp4' ] }, { 'length': 890754251, 'path': [ 'VMworld 2018 EU - NET3193BES - VMware NSX and Getting the Most Out of Your Infrastructure.mp4' ] }, { 'length': 1114221789, 'path': [ 'VMworld 2018 EU - NET3409BE - Using vRealize Network Insight to Optimize the Software-Defined Data Center.mp4' ] }, { 'length': 1040862088, 'path': [ 'VMworld 2018 EU - NFV1118BES - Telefonica VDC: Where Connectivity & Cloud Combine to Transform Your Business.mp4' ] }, { 'length': 1158517795, 'path': [ 'VMworld 2018 EU - NFV1134BE - Service Assurance Suite Customer Case Study with Swisscom.mp4' ] }, { 'length': 1848507547, 'path': [ 'VMworld 2018 EU - NFV1135BE - Making Digital Transformation a Reality with NFV: a Case Study MTS & VMware.mp4' ] }, { 'length': 1701231465, 'path': [ 'VMworld 2018 EU - NFV1307BE - NSX SD-WAN by VeloCloud for Service Providers on the vCloud NFV Platform.mp4' ] }, { 'length': 1935613326, 'path': [ 'VMworld 2018 EU - NFV1309BE - 5G Readiness: The Importance of Network Slicing & Service Function Chaining.mp4' ] }, { 'length': 1324298355, 'path': [ 'VMworld 2018 EU - NFV1315BE - Distributed OpenStack Platform for Telco Use Cases: MEC and PoP.mp4' ] }, { 'length': 1050917709, 'path': [ 'VMworld 2018 EU - NFV2220BE - Service Providers Love VMware Integrated OpenStack. Here's Why..mp4' ] }, { 'length': 1198079736, 'path': [ 'VMworld 2018 EU - NFV2917BE - Breaking the Virtual Speed Limit: Data Plane Performance Tuning.mp4' ] }, { 'length': 1876155042, 'path': [ 'VMworld 2018 EU - NS3729KE - The NSX Keynote: Building the Network of the Future with the Virtual Cloud Network.mp4' ] }, { 'length': 1359400160, 'path': [ 'VMworld 2018 EU - PRV1101BE - VxRack SDDC Technical Deep Dive.mp4' ] }, { 'length': 1223501493, 'path': [ 'VMworld 2018 EU - PRV1161BE - Compliance for the Public Sector and Private Industry.mp4' ] }, { 'length': 834327452, 'path': [ 'VMworld 2018 EU - PRV1277BE - VMware Cloud Foundation & HPE Synergy: SDDC meets Composable Infrastructure.mp4' ] }, { 'length': 1321128271, 'path': [ 'VMworld 2018 EU - PRV1337BE - VMware Cloud Foundation: Future Innovations.mp4' ] }, { 'length': 1363930739, 'path': [ 'VMworld 2018 EU - PRV1407BES - Build your service business on the OVHCloud.mp4' ] }, { 'length': 968394450, 'path': [ 'VMworld 2018 EU - PRV1408BES - A journey to the cloud: Getting started migrating your on-premises service.mp4' ] }, { 'length': 992894074, 'path': [ 'VMworld 2018 EU - PRV1409BES - The OVHCloud: Managed Private cloud powered by VMware.mp4' ] }, { 'length': 1732346654, 'path': [ 'VMworld 2018 EU - PRV1424BE - Case Study: Mission-Critical SDDC for the Finance Industry.mp4' ] }, { 'length': 2085582855, 'path': [ 'VMworld 2018 EU - PRV1429BE - vSAN Stretched Clusters & Disaster Recovery simplified by Cloud Foundation.mp4' ] }, { 'length': 1221664092, 'path': [ 'VMworld 2018 EU - PRV1431BE - An Introduction to VMware Validated Designs.mp4' ] }, { 'length': 933738387, 'path': [ 'VMworld 2018 EU - PRV1459BE - Strategies for Hybrid Cloud Workload Mobility with VMware Cloud Foundation.mp4' ] }, { 'length': 1965579494, 'path': [ 'VMworld 2018 EU - PRV1463BE - Building the Ultimate Hybrid Cloud with VMware Cloud Foundation.mp4' ] }, { 'length': 2067125435, 'path': [ 'VMworld 2018 EU - PRV1669BE - VMware Cloud Foundation Real-World Success with Professional Services.mp4' ] }, { 'length': 1264429059, 'path': [ 'VMworld 2018 EU - PRV1765BE - Advanced Operations for your VMware Cloud Foundation Based Private Cloud.mp4' ] }, { 'length': 1376210561, 'path': [ 'VMworld 2018 EU - PRV1766BE - Workload Automation in your VMware Cloud Foundation Based Private Cloud.mp4' ] }, { 'length': 1288856739, 'path': [ 'VMworld 2018 EU - PRV1933BER - VMware Cloud Foundation Architecture Deep Dive.mp4' ] }, { 'length': 1321801307, 'path': [ 'VMworld 2018 EU - PRV2121BE - Composable Infrastructure Innovations: Cloud Foundation and HPE Synergy.mp4' ] }, { 'length': 1030849903, 'path': [ 'VMworld 2018 EU - PRV2197BE - VxRail and VMware Validated Designs: Chocolate and Peanut Butter?.mp4' ] }, { 'length': 640430642, 'path': [ 'VMworld 2018 EU - PRV2201QER - Introduction to VMware Cloud Foundation.mp4' ] }, { 'length': 1819457137, 'path': [ 'VMworld 2018 EU - PRV2797BE - VMware Validated Design Day Two Operations in Practice.mp4' ] }, { 'length': 1107447456, 'path': [ 'VMworld 2018 EU - PRV2911BE - VMware Validated Designs Technical Deep Dive.mp4' ] }, { 'length': 1102224493, 'path': [ 'VMworld 2018 EU - PRV3462BE - VMware Validated Designs and Dell VxRail HCI: Better Together.mp4' ] }, { 'length': 1224217919, 'path': [ 'VMworld 2018 EU - PRV3670BE - Standardized, Automated and Adaptive: The Future of Private Cloud is Here.mp4' ] }, { 'length': 1215116300, 'path': [ 'VMworld 2018 EU - SAI1032BES - Enabling Hybrid Cloud Security for NSX and VMWare Cloud on AWS.mp4' ] }, { 'length': 1497713595, 'path': [ 'VMworld 2018 EU - SAI1133BE - How to Design Multi-layered Security in the SDDC with NSX Data Center.mp4' ] }, { 'length': 1208570908, 'path': [ 'VMworld 2018 EU - SAI1379BES - Ensuring Secure and Successful Deployments of NSX with NETSCOUT Visibility.mp4' ] }, { 'length': 1823943994, 'path': [ 'VMworld 2018 EU - SAI1527BE - Deep Dive into NSX Data Center Security for Clouds, Containers, and More.mp4' ] }, { 'length': 2165678879, 'path': [ 'VMworld 2018 EU - SAI1851BE - NSX Data Center Security Use Cases, Methodologies, and Tools.mp4' ] }, { 'length': 1118416508, 'path': [ 'VMworld 2018 EU - SAI2026BE - Introduction to NSX Data Center for Security.mp4' ] }, { 'length': 1031236972, 'path': [ 'VMworld 2018 EU - SAI2077BE - Context-Aware Micro-Segmentation with NSX Data Center.mp4' ] }, { 'length': 1553451690, 'path': [ 'VMworld 2018 EU - SAI2555BE - Accelerate App Security and Availability with vRealize Network Insight.mp4' ] }, { 'length': 1230741384, 'path': [ 'VMworld 2018 EU - SAI2744BE - VMware NSX Data Center Service Insertion: Advanced Network and Security.mp4' ] }, { 'length': 2075106086, 'path': [ 'VMworld 2018 EU - SAI3217BE - Introduction to VMware AppDefense.mp4' ] }, { 'length': 1226335112, 'path': [ 'VMworld 2018 EU - SAI3219BE - Great Power, Great Responsibility: Least Privilege Security with AppDefense.mp4' ] }, { 'length': 886425245, 'path': [ 'VMworld 2018 EU - SAI3243BE - Use Artificial Intelligence and Machine Learning to Simplify Security.mp4' ] }, { 'length': 1193575492, 'path': [ 'VMworld 2018 EU - SAI3770BE - Mitigating CPU Security Vulnerabilities - A look at vSphere Mitigations.mp4' ] }, { 'length': 1418203281, 'path': [ 'VMworld 2018 EU - SEC3730KE - Transforming Security in a Cloud and Mobile World.mp4' ] }, { 'length': 1565658844, 'path': [ 'VMworld 2018 EU - VAP1010BES - Storage Infrastructure for VMware: Software Defined to Workload Optimized.mp4' ] }, { 'length': 1049467181, 'path': [ 'VMworld 2018 EU - VAP1088BE - App Failover on VMware Cloud on AWS Protected by LicenseFortress.mp4' ] }, { 'length': 642078245, 'path': [ 'VMworld 2018 EU - VAP1095BE - Virtualizing and Tuning Distributed Application Platforms.mp4' ] }, { 'length': 885068037, 'path': [ 'VMworld 2018 EU - VAP1317BE - VDI, HPC and AI on VMware vSphere 6.7 and NVIDIA vGPU.mp4' ] }, { 'length': 971330662, 'path': [ 'VMworld 2018 EU - VAP1425BE - Performance Deep Dive for Demanding Virtual Database Servers.mp4' ] }, { 'length': 1400227129, 'path': [ 'VMworld 2018 EU - VAP1492BE - Performance of SQL Server, Oracle, and SAP Workloads in VMware Cloud on AWS.mp4' ] }, { 'length': 1078678564, 'path': [ 'VMworld 2018 EU - VAP1495BE - VMware Virtualization Solutions and Its Benefits in Developing Countries.mp4' ] }, { 'length': 1367868349, 'path': [ 'VMworld 2018 EU - VAP1620BE - Improve App Performance with Micro-Segmentation and Distributed Routing.mp4' ] }, { 'length': 1359244027, 'path': [ 'VMworld 2018 EU - VAP1820BE - SAP HANA TDI Phase 5: Greater Flexibility in Sizing VMs.mp4' ] }, { 'length': 1351827490, 'path': [ 'VMworld 2018 EU - VAP1898BE - Virtualize Active Directory the Right Way.mp4' ] }, { 'length': 1123210665, 'path': [ 'VMworld 2018 EU - VAP1900BE - High-Performance Big Data and Machine Learning on VMware Cloud on AWS.mp4' ] }, { 'length': 1198794972, 'path': [ 'VMworld 2018 EU - VAP2010BE - Architecting and Deploying Virtualized HPC Clusters.mp4' ] }, { 'length': 1426069243, 'path': [ 'VMworld 2018 EU - VAP2283BE - How EVONIK Is Running SAP Workload Using Leading SAP and VMware Technology.mp4' ] }, { 'length': 767300469, 'path': [ 'VMworld 2018 EU - VAP2294QE - SAP in the Clouds.mp4' ] }, { 'length': 1166348156, 'path': [ 'VMworld 2018 EU - VAP2547BE - Licensing Oracle and SQL Server on vSphere.mp4' ] }, { 'length': 1344489465, 'path': [ 'VMworld 2018 EU - VAP2708BE - Heard About Mars vs. Oracle? Learn About Oracle Audits from the Experts.mp4' ] }, { 'length': 934832703, 'path': [ 'VMworld 2018 EU - VIN1004BES - What's New in Veeam Availability Suite 9.5 Update 4.mp4' ] }, { 'length': 843260487, 'path': [ 'VMworld 2018 EU - VIN1077BES - Infrastructure architecture for modern privacy & security requirements.mp4' ] }, { 'length': 1064878968, 'path': [ 'VMworld 2018 EU - VIN1131BES - SME talk on joint actions between HCL&VMware-Datacenters transformation.mp4' ] }, { 'length': 617907162, 'path': [ 'VMworld 2018 EU - VIN1180BE - How VMware IT Upgraded to VMware vSphere 6.7 Without End-User Impact.mp4' ] }, { 'length': 426139082, 'path': [ 'VMworld 2018 EU - VIN1190PES - Lessons Learned on the Journey to the Cloud, the Stories of 3 Architects.mp4' ] }, { 'length': 534410929, 'path': [ 'VMworld 2018 EU - VIN1249BER - vSphere Clustering Deep Dive, Part 1: vSphere HA and DRS.mp4' ] }, { 'length': 1005239113, 'path': [ 'VMworld 2018 EU - VIN1293BE - Ensure Maximum Uptime and Performance of Your vCenter Server Appliance.mp4' ] }, { 'length': 792776778, 'path': [ 'VMworld 2018 EU - VIN1303BE - vSphere Security Deep Dive: Supporting TPM and Virtual TPM 2.0.mp4' ] }, { 'length': 794726773, 'path': [ 'VMworld 2018 EU - VIN1305BE - vSphere Platform Security Update.mp4' ] }, { 'length': 1080493629, 'path': [ 'VMworld 2018 EU - VIN1370BE - How to Prepare for VCP 6 - Data Center Virtualization.mp4' ] }, { 'length': 851036959, 'path': [ 'VMworld 2018 EU - VIN1622QE - Dear IT, You Gotta Modernize Your Data Center. Let vSphere Help..mp4' ] }, { 'length': 609440322, 'path': [ 'VMworld 2018 EU - VIN1633BER - Introducing vSphere Platinum and vSphere 6.7 Update 1.mp4' ] }, { 'length': 1335558699, 'path': [ 'VMworld 2018 EU - VIN1641BE - Focus, Plan, and Execute: A Deep Dive into Your vSphere Upgrade Journey.mp4' ] }, { 'length': 831761817, 'path': [ 'VMworld 2018 EU - VIN1759BE - Extreme Performance Series: vCenter Performance Deep Dive.mp4' ] }, { 'length': 1150028279, 'path': [ 'VMworld 2018 EU - VIN1782BE - Extreme Performance Series: vSphere Compute and Memory Schedulers.mp4' ] }, { 'length': 987867624, 'path': [ 'VMworld 2018 EU - VIN1859BE - vSphere SSO Domain Architecture Unplugged.mp4' ] }, { 'length': 1502025564, 'path': [ 'VMworld 2018 EU - VIN1909BE - End of Support: Taking Advantage of the vSphere Lifecycle to Transform.mp4' ] }, { 'length': 952083424, 'path': [ 'VMworld 2018 EU - VIN1972BE - Mastering the VMware Tools Lifecycle in Your VMware vSphere Data Center.mp4' ] }, { 'length': 1012070771, 'path': [ 'VMworld 2018 EU - VIN1991BE - Technical Overview of VMware ESXi Patching and Upgrading.mp4' ] }, { 'length': 976958308, 'path': [ 'VMworld 2018 EU - VIN2047BE - Persistent Memory with vSphere 6.7: Primary Use Cases and User Workflow.mp4' ] }, { 'length': 1149375444, 'path': [ 'VMworld 2018 EU - VIN2062BE - vSphere Networking: What's New and What's Next.mp4' ] }, { 'length': 903185387, 'path': [ 'VMworld 2018 EU - VIN2067BE - Accelerating & Optimizing Machine Learning on vSphere leveraging NVIDIA GPU.mp4' ] }, { 'length': 1019459855, 'path': [ 'VMworld 2018 EU - VIN2186BE - What's New with vSphere 6.7 Core Storage.mp4' ] }, { 'length': 855988309, 'path': [ 'VMworld 2018 EU - VIN2259BE - vSphere DRS Enhancements: vSphere 6.7 and Beyond.mp4' ] }, { 'length': 1414355153, 'path': [ 'VMworld 2018 EU - VIN2369BES - Intel's Exciting Persistent Memory Technologies and VMware vSphere.mp4' ] }, { 'length': 1016493729, 'path': [ 'VMworld 2018 EU - VIN2416BE - Core Storage Best Practices.mp4' ] }, { 'length': 1242908760, 'path': [ 'VMworld 2018 EU - VIN2463BE - Deciphering Successful vSphere Certificate Implementation.mp4' ] }, { 'length': 1133264327, 'path': [ 'VMworld 2018 EU - VIN2527BE - Top 10 Automation Requests and How You Can Save Time.mp4' ] }, { 'length': 1483697588, 'path': [ 'VMworld 2018 EU - VIN2626BE - VMware REST APIs, Python, and You: A Coding Primer.mp4' ] }, { 'length': 770527879, 'path': [ 'VMworld 2018 EU - VIN2642BE - Don't Sleep on RESTful APIs for vSphere.mp4' ] }, { 'length': 738421458, 'path': [ 'VMworld 2018 EU - VIN2650BE - Designing for the Unexpected: Delivering IT on a Boat with VMware Horizon.mp4' ] }, { 'length': 947453662, 'path': [ 'VMworld 2018 EU - VIN2652BE - What's New with vSphere.mp4' ] }, { 'length': 903121569, 'path': [ 'VMworld 2018 EU - VIN2660BE - Make Your vSphere 6.7 Upgrade Bulletproof.mp4' ] }, { 'length': 598486429, 'path': [ 'VMworld 2018 EU - VIN2863QE - Business Value of Data Center Virtualization and Private Cloud.mp4' ] }, { 'length': 832431699, 'path': [ 'VMworld 2018 EU - VIN2992BE - vSphere Client Roadmap: Past, Present, and Future.mp4' ] }, { 'length': 960569305, 'path': [ 'VMworld 2018 EU - VIN3353BE - Art of Managing SSL Certificates in vSphere: Troubleshooting, Tip & Tricks.mp4' ] }, { 'length': 713905558, 'path': [ 'VMworld 2018 EU - VIN3396BE - A Deep Dive into Storage Policy-Based Management for Managing SDS.mp4' ] }, { 'length': 1158853617, 'path': [ 'VMworld 2018 EU - VIN3776BES - Virtual Volumes Deep Dive with Pure Storage.mp4' ] }, { 'length': 762090905, 'path': [ 'VMworld 2018 EU - VIN3820QE - Transforming Virtual Infrastructure with All-Flash Storage.mp4' ] }, { 'length': 1148748386, 'path': [ 'VMworld 2018 EU - WIN1236BE - The Secret Sauce Behind VMware's Internal Horizon Desktop Deployments.mp4' ] }, { 'length': 2072185498, 'path': [ 'VMworld 2018 EU - WIN1717BE - Design Deep Dive: Cloud Burst with Horizon 7 on VMware Cloud Powered by AWS.mp4' ] }, { 'length': 941312495, 'path': [ 'VMworld 2018 EU - WIN1824QE - How to Deploy a Desktop Solution in One Hour with Horizon Cloud on Azure.mp4' ] }, { 'length': 1362419077, 'path': [ 'VMworld 2018 EU - WIN2006BE - Optimizing VMware Horizon and NVIDIA vGPU for the Best VDI User Experience.mp4' ] }, { 'length': 1188622489, 'path': [ 'VMworld 2018 EU - WIN2384BE - Solve Your Citrix Problems with VMware Technologies.mp4' ] }, { 'length': 1485679784, 'path': [ 'VMworld 2018 EU - WIN2537BE - What's New in Horizon 7.mp4' ] }, { 'length': 1454938783, 'path': [ 'VMworld 2018 EU - WIN3048BE - What's New with Horizon Cloud on Microsoft Azure.mp4' ] }, { 'length': 902989525, 'path': [ 'VMworld 2018 EU - WIN3100BE - Understand and Leverage the Latest Enhancements with Blast Extreme.mp4' ] }, { 'length': 1188797786, 'path': [ 'VMworld 2018 EU - WIN3213BE - Leverage Intelligence and Monitoring for Virtual Desktops and Apps.mp4' ] }, { 'length': 582793059, 'path': [ 'VMworld 2018 EU - WIN3450BE - Best Practices for Deploying Horizon on vSAN and VxRail.mp4' ] }, { 'length': 1849449865, 'path': [ 'VMworld 2018 EU - WIN3451BE - Architecting Horizon 7 Enterprise: The Official Reference Architecture.mp4' ] }, { 'length': 589833535, 'path': [ 'VMworld 2018 EU - WIN3480BE - Beyond Horizon 7: Moving to a Digital Workspace with Workspace ONE.mp4' ] }, { 'length': 1100007943, 'path': [ 'VMworld 2018 EU - WIN3486BE - Horizon 7 on VMware Cloud on AWS: What You Need to Know.mp4' ] }, { 'length': 1115200696, 'path': [ 'VMworld 2018 EU - WIN3492BE - JMP: The Easy Button for Delivering and Managing Virtual Desktops and Apps.mp4' ] }, { 'length': 953412764, 'path': [ 'VMworld 2018 EU - WIN3503PE - Customer Panel: What You Need to Know About Deploying VDI.mp4' ] }, { 'length': 760880683, 'path': [ 'VMworld 2018 EU - WIN3535BE - Is VDI Dead?.mp4' ] }, { 'length': 1865707914, 'path': [ 'VMworld 2018 EU - WIN3706PES - Become the office hero with Dell & VMware desktop virtualization solutions.mp4' ] } ], 'name': 'VMworld2018EU', 'piece length': 262144, 'pieces': }, 'libtorrent_resume': { 'bitfield': 1709564, 'files': [ { 'mtime': 1541463501, 'priority': 2 }, { 'mtime': 1541639094, 'priority': 2 }, { 'mtime': 1541554317, 'priority': 2 }, { 'mtime': 1541639095, 'priority': 2 }, { 'mtime': 1541719156, 'priority': 2 }, { 'mtime': 1541554317, 'priority': 2 }, { 'mtime': 1541639097, 'priority': 2 }, { 'mtime': 1541645380, 'priority': 2 }, { 'mtime': 1541719968, 'priority': 2 }, { 'mtime': 1541614976, 'priority': 2 }, { 'mtime': 1541554317, 'priority': 2 }, { 'mtime': 1541639097, 'priority': 2 }, { 'mtime': 1541554317, 'priority': 2 }, { 'mtime': 1541554317, 'priority': 2 }, { 'mtime': 1541719922, 'priority': 2 }, { 'mtime': 1541639097, 'priority': 2 }, { 'mtime': 1541595812, 'priority': 2 }, { 'mtime': 1541554317, 'priority': 2 }, { 'mtime': 1541554317, 'priority': 2 }, { 'mtime': 1541648725, 'priority': 2 }, { 'mtime': 1541565844, 'priority': 2 }, { 'mtime': 1541719816, 'priority': 2 }, { 'mtime': 1541639099, 'priority': 2 }, { 'mtime': 1541554317, 'priority': 2 }, { 'mtime': 1541639099, 'priority': 2 }, { 'mtime': 1541720102, 'priority': 2 }, { 'mtime': 1541720352, 'priority': 2 }, { 'mtime': 1541639099, 'priority': 2 }, { 'mtime': 1541720134, 'priority': 2 }, { 'mtime': 1541718921, 'priority': 2 }, { 'mtime': 1541719449, 'priority': 2 }, { 'mtime': 1541639099, 'priority': 2 }, { 'mtime': 1541719532, 'priority': 2 }, { 'mtime': 1541554317, 'priority': 2 }, { 'mtime': 1541554317, 'priority': 2 }, { 'mtime': 1541554440, 'priority': 2 }, { 'mtime': 1541554571, 'priority': 2 }, { 'mtime': 1541539433, 'priority': 2 }, { 'mtime': 1541614976, 'priority': 2 }, { 'mtime': 1541639103, 'priority': 2 }, { 'mtime': 1541719040, 'priority': 2 }, { 'mtime': 1541639103, 'priority': 2 }, { 'mtime': 1541463503, 'priority': 2 }, { 'mtime': 1541719557, 'priority': 2 }, { 'mtime': 1541554581, 'priority': 2 }, { 'mtime': 1541554650, 'priority': 2 }, { 'mtime': 1541554662, 'priority': 2 }, { 'mtime': 1541554682, 'priority': 2 }, { 'mtime': 1541719320, 'priority': 2 }, { 'mtime': 1541554685, 'priority': 2 }, { 'mtime': 1541639109, 'priority': 2 }, { 'mtime': 1541595813, 'priority': 2 }, { 'mtime': 1541554739, 'priority': 2 }, { 'mtime': 1541639242, 'priority': 2 }, { 'mtime': 1541542459, 'priority': 2 }, { 'mtime': 1541639337, 'priority': 2 }, { 'mtime': 1541469691, 'priority': 2 }, { 'mtime': 1541719648, 'priority': 2 }, { 'mtime': 1541554748, 'priority': 2 }, { 'mtime': 1541720086, 'priority': 2 }, { 'mtime': 1541639358, 'priority': 2 }, { 'mtime': 1541639365, 'priority': 2 }, { 'mtime': 1541639370, 'priority': 2 }, { 'mtime': 1541719054, 'priority': 2 }, { 'mtime': 1541718921, 'priority': 2 }, { 'mtime': 1541554756, 'priority': 2 }, { 'mtime': 1541554788, 'priority': 2 }, { 'mtime': 1541639372, 'priority': 2 }, { 'mtime': 1541639449, 'priority': 2 }, { 'mtime': 1541639494, 'priority': 2 }, { 'mtime': 1541614977, 'priority': 2 }, { 'mtime': 1541554848, 'priority': 2 }, { 'mtime': 1541554904, 'priority': 2 }, { 'mtime': 1541554919, 'priority': 2 }, { 'mtime': 1541606613, 'priority': 2 }, { 'mtime': 1541639545, 'priority': 2 }, { 'mtime': 1541719057, 'priority': 2 }, { 'mtime': 1541639577, 'priority': 2 }, { 'mtime': 1541555030, 'priority': 2 }, { 'mtime': 1541719987, 'priority': 2 }, { 'mtime': 1541555052, 'priority': 2 }, { 'mtime': 1541555060, 'priority': 2 }, { 'mtime': 1541639578, 'priority': 2 }, { 'mtime': 1541555104, 'priority': 2 }, { 'mtime': 1541719956, 'priority': 2 }, { 'mtime': 1541639588, 'priority': 2 }, { 'mtime': 1541719464, 'priority': 2 }, { 'mtime': 1541720020, 'priority': 2 }, { 'mtime': 1541720454, 'priority': 2 }, { 'mtime': 1541463516, 'priority': 2 }, { 'mtime': 1541639620, 'priority': 2 }, { 'mtime': 1541639624, 'priority': 2 }, { 'mtime': 1541719626, 'priority': 2 }, { 'mtime': 1541555108, 'priority': 2 }, { 'mtime': 1541466708, 'priority': 2 }, { 'mtime': 1541720297, 'priority': 2 }, { 'mtime': 1541720056, 'priority': 2 }, { 'mtime': 1541720124, 'priority': 2 }, { 'mtime': 1541463599, 'priority': 2 }, { 'mtime': 1541639701, 'priority': 2 }, { 'mtime': 1541639711, 'priority': 2 }, { 'mtime': 1541720337, 'priority': 2 }, { 'mtime': 1541555152, 'priority': 2 }, { 'mtime': 1541614977, 'priority': 2 }, { 'mtime': 1541555178, 'priority': 2 }, { 'mtime': 1541639727, 'priority': 2 }, { 'mtime': 1541639772, 'priority': 2 }, { 'mtime': 1541539416, 'priority': 2 }, { 'mtime': 1541558764, 'priority': 2 }, { 'mtime': 1541555193, 'priority': 2 }, { 'mtime': 1541555210, 'priority': 2 }, { 'mtime': 1541555290, 'priority': 2 }, { 'mtime': 1541639812, 'priority': 2 }, { 'mtime': 1541639817, 'priority': 2 }, { 'mtime': 1541639840, 'priority': 2 }, { 'mtime': 1541719302, 'priority': 2 }, { 'mtime': 1541555301, 'priority': 2 }, { 'mtime': 1541639864, 'priority': 2 }, { 'mtime': 1541555312, 'priority': 2 }, { 'mtime': 1541539424, 'priority': 2 }, { 'mtime': 1541639866, 'priority': 2 }, { 'mtime': 1541555328, 'priority': 2 }, { 'mtime': 1541719236, 'priority': 2 }, { 'mtime': 1541639899, 'priority': 2 }, { 'mtime': 1541720113, 'priority': 2 }, { 'mtime': 1541639918, 'priority': 2 }, { 'mtime': 1541719325, 'priority': 2 }, { 'mtime': 1541555331, 'priority': 2 }, { 'mtime': 1541639948, 'priority': 2 }, { 'mtime': 1541576213, 'priority': 2 }, { 'mtime': 1541639948, 'priority': 2 }, { 'mtime': 1541639966, 'priority': 2 }, { 'mtime': 1541614977, 'priority': 2 }, { 'mtime': 1541640014, 'priority': 2 }, { 'mtime': 1541470468, 'priority': 2 }, { 'mtime': 1541555352, 'priority': 2 }, { 'mtime': 1541720224, 'priority': 2 }, { 'mtime': 1541555358, 'priority': 2 }, { 'mtime': 1541719580, 'priority': 2 }, { 'mtime': 1541720215, 'priority': 2 }, { 'mtime': 1541555454, 'priority': 2 }, { 'mtime': 1541555454, 'priority': 2 }, { 'mtime': 1541614977, 'priority': 2 }, { 'mtime': 1541578391, 'priority': 2 }, { 'mtime': 1541720174, 'priority': 2 }, { 'mtime': 1541614977, 'priority': 2 }, { 'mtime': 1541555479, 'priority': 2 }, { 'mtime': 1541614977, 'priority': 2 }, { 'mtime': 1541463594, 'priority': 2 }, { 'mtime': 1541640049, 'priority': 2 }, { 'mtime': 1541640082, 'priority': 2 }, { 'mtime': 1541640098, 'priority': 2 }, { 'mtime': 1541467468, 'priority': 2 }, { 'mtime': 1541555523, 'priority': 2 }, { 'mtime': 1541718921, 'priority': 2 }, { 'mtime': 1541719813, 'priority': 2 }, { 'mtime': 1541640112, 'priority': 2 }, { 'mtime': 1541555530, 'priority': 2 }, { 'mtime': 1541645380, 'priority': 2 }, { 'mtime': 1541555552, 'priority': 2 }, { 'mtime': 1541555593, 'priority': 2 }, { 'mtime': 1541555597, 'priority': 2 }, { 'mtime': 1541719903, 'priority': 2 }, { 'mtime': 1541640113, 'priority': 2 }, { 'mtime': 1541555646, 'priority': 2 }, { 'mtime': 1541719816, 'priority': 2 }, { 'mtime': 1541640116, 'priority': 2 }, { 'mtime': 1541719733, 'priority': 2 }, { 'mtime': 1541645380, 'priority': 2 }, { 'mtime': 1541640118, 'priority': 2 }, { 'mtime': 1541640138, 'priority': 2 }, { 'mtime': 1541555681, 'priority': 2 }, { 'mtime': 1541555721, 'priority': 2 }, { 'mtime': 1541640241, 'priority': 2 }, { 'mtime': 1541555731, 'priority': 2 }, { 'mtime': 1541614977, 'priority': 2 }, { 'mtime': 1541640260, 'priority': 2 }, { 'mtime': 1541555731, 'priority': 2 }, { 'mtime': 1541555778, 'priority': 2 }, { 'mtime': 1541719961, 'priority': 2 }, { 'mtime': 1541640277, 'priority': 2 }, { 'mtime': 1541555822, 'priority': 2 }, { 'mtime': 1541719146, 'priority': 2 }, { 'mtime': 1541614977, 'priority': 2 }, { 'mtime': 1541555860, 'priority': 2 }, { 'mtime': 1541555882, 'priority': 2 }, { 'mtime': 1541555890, 'priority': 2 }, { 'mtime': 1541555977, 'priority': 2 }, { 'mtime': 1541555984, 'priority': 2 }, { 'mtime': 1541640294, 'priority': 2 }, { 'mtime': 1541720050, 'priority': 2 }, { 'mtime': 1541640322, 'priority': 2 }, { 'mtime': 1541555993, 'priority': 2 }, { 'mtime': 1541719775, 'priority': 2 }, { 'mtime': 1541719628, 'priority': 2 }, { 'mtime': 1541539510, 'priority': 2 }, { 'mtime': 1541719665, 'priority': 2 }, { 'mtime': 1541640326, 'priority': 2 }, { 'mtime': 1541720427, 'priority': 2 }, { 'mtime': 1541640335, 'priority': 2 }, { 'mtime': 1541719896, 'priority': 2 }, { 'mtime': 1541720137, 'priority': 2 }, { 'mtime': 1541640350, 'priority': 2 }, { 'mtime': 1541720157, 'priority': 2 }, { 'mtime': 1541556011, 'priority': 2 }, { 'mtime': 1541640358, 'priority': 2 }, { 'mtime': 1541640395, 'priority': 2 }, { 'mtime': 1541556011, 'priority': 2 }, { 'mtime': 1541556051, 'priority': 2 }, { 'mtime': 1541719947, 'priority': 2 }, { 'mtime': 1541719753, 'priority': 2 }, { 'mtime': 1541556105, 'priority': 2 }, { 'mtime': 1541556106, 'priority': 2 }, { 'mtime': 1541556116, 'priority': 2 }, { 'mtime': 1541640415, 'priority': 2 }, { 'mtime': 1541640441, 'priority': 2 }, { 'mtime': 1541556159, 'priority': 2 }, { 'mtime': 1541719082, 'priority': 2 }, { 'mtime': 1541719539, 'priority': 2 }, { 'mtime': 1541720420, 'priority': 2 }, { 'mtime': 1541719357, 'priority': 2 }, { 'mtime': 1541719841, 'priority': 2 }, { 'mtime': 1541720394, 'priority': 2 }, { 'mtime': 1541720353, 'priority': 2 }, { 'mtime': 1541719475, 'priority': 2 }, { 'mtime': 1541719760, 'priority': 2 }, { 'mtime': 1541720251, 'priority': 2 }, { 'mtime': 1541720359, 'priority': 2 }, { 'mtime': 1541556159, 'priority': 2 }, { 'mtime': 1541640467, 'priority': 2 }, { 'mtime': 1541649640, 'priority': 2 }, { 'mtime': 1541640531, 'priority': 2 }, { 'mtime': 1541640558, 'priority': 2 }, { 'mtime': 1541640564, 'priority': 2 }, { 'mtime': 1541595813, 'priority': 2 }, { 'mtime': 1541595813, 'priority': 2 }, { 'mtime': 1541720099, 'priority': 2 }, { 'mtime': 1541539514, 'priority': 2 }, { 'mtime': 1541640568, 'priority': 2 }, { 'mtime': 1541556231, 'priority': 2 }, { 'mtime': 1541719750, 'priority': 2 }, { 'mtime': 1541556310, 'priority': 2 }, { 'mtime': 1541645199, 'priority': 2 }, { 'mtime': 1541556314, 'priority': 2 }, { 'mtime': 1541556323, 'priority': 2 }, { 'mtime': 1541556324, 'priority': 2 }, { 'mtime': 1541539611, 'priority': 2 }, { 'mtime': 1541539615, 'priority': 2 }, { 'mtime': 1541640627, 'priority': 2 }, { 'mtime': 1541539702, 'priority': 2 }, { 'mtime': 1541539706, 'priority': 2 }, { 'mtime': 1541556330, 'priority': 2 }, { 'mtime': 1541556372, 'priority': 2 }, { 'mtime': 1541556415, 'priority': 2 }, { 'mtime': 1541640636, 'priority': 2 }, { 'mtime': 1541720097, 'priority': 2 }, { 'mtime': 1541719683, 'priority': 2 }, { 'mtime': 1541556488, 'priority': 2 }, { 'mtime': 1541719242, 'priority': 2 }, { 'mtime': 1541720117, 'priority': 2 }, { 'mtime': 1541720437, 'priority': 2 }, { 'mtime': 1541640639, 'priority': 2 }, { 'mtime': 1541640652, 'priority': 2 }, { 'mtime': 1541615143, 'priority': 2 }, { 'mtime': 1541640653, 'priority': 2 }, { 'mtime': 1541719369, 'priority': 2 }, { 'mtime': 1541465387, 'priority': 2 }, { 'mtime': 1541719538, 'priority': 2 }, { 'mtime': 1541640682, 'priority': 2 }, { 'mtime': 1541640687, 'priority': 2 }, { 'mtime': 1541539713, 'priority': 2 }, { 'mtime': 1541640778, 'priority': 2 }, { 'mtime': 1541719852, 'priority': 2 }, { 'mtime': 1541640780, 'priority': 2 }, { 'mtime': 1541720416, 'priority': 2 }, { 'mtime': 1541720405, 'priority': 2 }, { 'mtime': 1541539723, 'priority': 2 }, { 'mtime': 1541556537, 'priority': 2 }, { 'mtime': 1541720091, 'priority': 2 }, { 'mtime': 1541556599, 'priority': 2 }, { 'mtime': 1541640829, 'priority': 2 }, { 'mtime': 1541719415, 'priority': 2 }, { 'mtime': 1541719899, 'priority': 2 }, { 'mtime': 1541718920, 'priority': 2 }, { 'mtime': 1541615164, 'priority': 2 }, { 'mtime': 1541556615, 'priority': 2 }, { 'mtime': 1541556664, 'priority': 2 }, { 'mtime': 1541649640, 'priority': 2 }, { 'mtime': 1541640881, 'priority': 2 }, { 'mtime': 1541640882, 'priority': 2 }, { 'mtime': 1541720336, 'priority': 2 }, { 'mtime': 1541556666, 'priority': 2 }, { 'mtime': 1541640886, 'priority': 2 }, { 'mtime': 1541556673, 'priority': 2 }, { 'mtime': 1541556676, 'priority': 2 }, { 'mtime': 1541556682, 'priority': 2 }, { 'mtime': 1541640894, 'priority': 2 }, { 'mtime': 1541640896, 'priority': 2 }, { 'mtime': 1541465693, 'priority': 2 }, { 'mtime': 1541640906, 'priority': 2 }, { 'mtime': 1541556696, 'priority': 2 }, { 'mtime': 1541640917, 'priority': 2 }, { 'mtime': 1541556766, 'priority': 2 }, { 'mtime': 1541640956, 'priority': 2 }, { 'mtime': 1541719553, 'priority': 2 }, { 'mtime': 1541539748, 'priority': 2 }, { 'mtime': 1541558768, 'priority': 2 }, { 'mtime': 1541640975, 'priority': 2 }, { 'mtime': 1541641016, 'priority': 2 }, { 'mtime': 1541615185, 'priority': 2 }, { 'mtime': 1541719504, 'priority': 2 }, { 'mtime': 1541465751, 'priority': 2 }, { 'mtime': 1541558764, 'priority': 2 }, { 'mtime': 1541615190, 'priority': 2 }, { 'mtime': 1541641058, 'priority': 2 }, { 'mtime': 1541641082, 'priority': 2 }, { 'mtime': 1541615192, 'priority': 2 }, { 'mtime': 1541641106, 'priority': 2 }, { 'mtime': 1541641140, 'priority': 2 }, { 'mtime': 1541719576, 'priority': 2 }, { 'mtime': 1541718982, 'priority': 2 }, { 'mtime': 1541719655, 'priority': 2 }, { 'mtime': 1541641146, 'priority': 2 }, { 'mtime': 1541641165, 'priority': 2 }, { 'mtime': 1541556786, 'priority': 2 }, { 'mtime': 1541556787, 'priority': 2 }, { 'mtime': 1541719143, 'priority': 2 }, { 'mtime': 1541641168, 'priority': 2 }, { 'mtime': 1541556914, 'priority': 2 }, { 'mtime': 1541719970, 'priority': 2 }, { 'mtime': 1541641183, 'priority': 2 }, { 'mtime': 1541719450, 'priority': 2 }, { 'mtime': 1541556921, 'priority': 2 }, { 'mtime': 1541556947, 'priority': 2 }, { 'mtime': 1541463155, 'priority': 2 }, { 'mtime': 1541641184, 'priority': 2 }, { 'mtime': 1541720262, 'priority': 2 }, { 'mtime': 1541720031, 'priority': 2 }, { 'mtime': 1541641187, 'priority': 2 }, { 'mtime': 1541465394, 'priority': 2 }, { 'mtime': 1541641225, 'priority': 2 }, { 'mtime': 1541641239, 'priority': 2 }, { 'mtime': 1541469497, 'priority': 2 }, { 'mtime': 1541556990, 'priority': 2 }, { 'mtime': 1541641258, 'priority': 2 }, { 'mtime': 1541641327, 'priority': 2 }, { 'mtime': 1541641335, 'priority': 2 }, { 'mtime': 1541556996, 'priority': 2 }, { 'mtime': 1541641342, 'priority': 2 }, { 'mtime': 1541646171, 'priority': 2 }, { 'mtime': 1541556997, 'priority': 2 }, { 'mtime': 1541558764, 'priority': 2 }, { 'mtime': 1541557002, 'priority': 2 }, { 'mtime': 1541641343, 'priority': 2 }, { 'mtime': 1541539758, 'priority': 2 }, { 'mtime': 1541615200, 'priority': 2 }, { 'mtime': 1541641354, 'priority': 2 } ] } } ----- torrent file info ----- nodes: trackers: 0: udp://tracker1.wasabii.com.tw:6969/announce 0: udp://tracker.internetwarriors.net:1337/announce 0: udp://tracker.skyts.net:6969/announce 0: udp://tracker.zer0day.to:1337/announce 0: udp://tracker.piratepublic.com:1337/announce 0: udp://9.rarbg.com:2710/announce 0: udp://public.popcorn-tracker.org:6969/announce 0: udp://allesanddro.de:1337/announce 0: udp://tracker.safe.moe:6969/announce 0: udp://tracker.pirateparty.gr:6969/announce 0: http://tracker.opentrackr.org:1337/announce 0: udp://tracker.coppersurfer.tk:6969/announce 0: udp://tracker1.xku.tv:6969/announce 0: udp://peerfect.org:6969/announce 0: udp://tracker.opentrackr.org:1337/announce 0: udp://tracker.leechers-paradise.org:6969/announce 0: http://p4p.arenabg.com:1337/announce 0: udp://p4p.arenabg.com:1337/announce 0: udp://tracker2.wasabii.com.tw:6969/announce 0: udp://tracker2.christianbro.pw:6969/announce number of pieces: 1709564 piece length: 262144 info hash: 4ee9f7d495817170c155f531c3d1fe5559ffe2ae comment: created by: ruTorrent (PHP Class - Adrien Gibrat) magnet link: magnet:?xt=urn:btih:4ee9f7d495817170c155f531c3d1fe5559ffe2ae&dn=VMworld2018EU&tr=udp%3a%2f%2ftracker1.wasabii.com.tw%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.skyts.net%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.zer0day.to%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.piratepublic.com%3a1337%2fannounce&tr=udp%3a%2f%2f9.rarbg.com%3a2710%2fannounce&tr=udp%3a%2f%2fpublic.popcorn-tracker.org%3a6969%2fannounce&tr=udp%3a%2f%2fallesanddro.de%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.safe.moe%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.pirateparty.gr%3a6969%2fannounce&tr=http%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2ftracker1.xku.tv%3a6969%2fannounce&tr=udp%3a%2f%2fpeerfect.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=http%3a%2f%2fp4p.arenabg.com%3a1337%2fannounce&tr=udp%3a%2f%2fp4p.arenabg.com%3a1337%2fannounce&tr=udp%3a%2f%2ftracker2.wasabii.com.tw%3a6969%2fannounce&tr=udp%3a%2f%2ftracker2.christianbro.pw%3a6969%2fannounce name: VMworld2018EU number of files: 357 files: 0 700675549 ---- [ 0, 2672 ] 0 VMworld2018EU/VMworld 2018 EU - ACC1151QE - Never Trust Always Verify with Risk Analytics in Workspace ONE Intelligence.mp4 29c375dd 632745466 ---- [ 2672, 5086 ] 0 VMworld2018EU/VMworld 2018 EU - ACC1328BES - Embracing Zero Trust in the Enterprise ??? Redefining access controls with Okta.mp4 4f7a63d7 517341655 ---- [ 5086, 7060 ] 0 VMworld2018EU/VMworld 2018 EU - ACC1406BES - How to secure Office 365, Box and GSuite with Okta and VMware.mp4 6e5065ae 1642584516 ---- [ 7060, 13326 ] 0 VMworld2018EU/VMworld 2018 EU - ACC1621PE - Customer Panel: Knocking Down the Barriers to Workspace ONE Adoption.mp4 d0383f72 1766344659 ---- [ 13326, 20064 ] 0 VMworld2018EU/VMworld 2018 EU - ACC2162PE - Drive Workspace-as-a-Service and Security Transformation with Workspace ONE.mp4 139808745 1582654106 ---- [ 20064, 26101 ] 0 VMworld2018EU/VMworld 2018 EU - ACC2488BE - Delivering Secure and Seamless Access to All Your Apps, Devices and Data.mp4 197d5e9df 2013468861 ---- [ 26101, 33782 ] 0 VMworld2018EU/VMworld 2018 EU - ACC2892BE - Learn What's New with Workspace ONE and how to Embrace a Digital Workspace!.mp4 20fd9029c 1655020517 ---- [ 33782, 40095 ] 0 VMworld2018EU/VMworld 2018 EU - ACC2945BE - What's New With Workspace ONE Apps and Services.mp4 2727e9e81 1814317871 ---- [ 40095, 47016 ] 0 VMworld2018EU/VMworld 2018 EU - ACC3255BE - Workspace ONE: The Art of the Possible.mp4 2dea2e9b0 1522743003 ---- [ 47016, 52825 ] 0 VMworld2018EU/VMworld 2018 EU - BRE2129BE - Introduction to NSX SD-WAN by VeloCloud: Transforming the WAN.mp4 33966208b 1795110246 ---- [ 52825, 59673 ] 0 VMworld2018EU/VMworld 2018 EU - BRE2165BE - SD-WAN Use Cases Designed to Optimize Your Network.mp4 3a46555f1 1195417106 ---- [ 59673, 64233 ] 0 VMworld2018EU/VMworld 2018 EU - BRE2167BE - Zero to 60 in Two Seconds with VMware NSX SD-WAN by VeloCloud.mp4 3eba5f403 1334754995 ---- [ 64233, 69325 ] 0 VMworld2018EU/VMworld 2018 EU - BRE2168BE - Deployment of Hybrid SD-WAN with Real-World Examples.mp4 43b34b2b6 1390225144 ---- [ 69325, 74628 ] 0 VMworld2018EU/VMworld 2018 EU - BRE3038BE - Consuming Cloud Provider SD-WAN Services?.mp4 48e11d9ae 1443300616 ---- [ 74628, 80134 ] 0 VMworld2018EU/VMworld 2018 EU - CNA1418BE - PKS? A Service Provider Perspective Learnings from a Real-World Project.mp4 4e418deb6 2124465524 ---- [ 80134, 88238 ] 0 VMworld2018EU/VMworld 2018 EU - CNA1493BE - Run Docker on Existing Infrastructure with vSphere Integrated Containers.mp4 562b9a42a 1870452986 ---- [ 88238, 95373 ] 0 VMworld2018EU/VMworld 2018 EU - CNA1553BE - Deep Dive: The Value of Running Kubernetes on vSphere.mp4 5d2367d24 1046615415 ---- [ 95373, 99366 ] 0 VMworld2018EU/VMworld 2018 EU - CNA1634BE - Container Portfolio at VMware.mp4 61098929b 1486767954 ---- [ 99366, 105037 ] 0 VMworld2018EU/VMworld 2018 EU - CNA1656BE - Put a Lid on It: Securing Containers and Kubernetes on vSphere and in Cloud.mp4 66936d9ed 1832693157 ---- [ 105037, 112028 ] 0 VMworld2018EU/VMworld 2018 EU - CNA1674BE - Deep Dive: Run Kubernetes in Production with PKS.mp4 6d6738792 1742041518 ---- [ 112028, 118674 ] 0 VMworld2018EU/VMworld 2018 EU - CNA1816BE - Container and Kubernetes 101 for Admins.mp4 73e48f940 1372692613 ---- [ 118674, 123910 ] 0 VMworld2018EU/VMworld 2018 EU - CNA2009BE - Run Stateful Apps on Kubernetes with PKS: Highlight WebLogic Server.mp4 7901a99c5 1461315709 ---- [ 123910, 129485 ] 0 VMworld2018EU/VMworld 2018 EU - CNA2084BE - Intro to VMware Cloud PKS-Managed K8s Service on Public Cloud.mp4 7e7348242 1101089320 ---- [ 129485, 133685 ] 0 VMworld2018EU/VMworld 2018 EU - CNA2141BE - Applying Software Design Patterns and Methodologies to Your IT Services.mp4 828d5cc6a 2099388109 ---- [ 133685, 141693 ] 0 VMworld2018EU/VMworld 2018 EU - CNA2755BE - Architecting PKS for Production: Lessons Learned from PKS Deployments.mp4 8a5f7eb37 1301848742 ---- [ 141693, 146660 ] 0 VMworld2018EU/VMworld 2018 EU - CNA3124BE - Deep Dive: VMware Cloud PKS-K8s as a Service on Public Cloud.mp4 8f3908ddd 1115539164 ---- [ 146660, 150915 ] 0 VMworld2018EU/VMworld 2018 EU - CTO1189BE - Next-Gen Multi-Cloud Architecture for Machine Learning.mp4 9360e54b9 1521170465 ---- [ 150915, 156718 ] 0 VMworld2018EU/VMworld 2018 EU - CTO1204BES - Optimize your Virtualized Environment with Hardware Accelerators.mp4 990b98cda 1666936982 ---- [ 156718, 163077 ] 0 VMworld2018EU/VMworld 2018 EU - CTO1875BE - Quantum Supremacy: Basics, Outlook, and Security Implications.mp4 9f414fd70 1869428374 ---- [ 163077, 170208 ] 0 VMworld2018EU/VMworld 2018 EU - CTO1901BE - Inside VMware's Innovation Engine.mp4 a63823406 1225470329 ---- [ 170208, 174883 ] 0 VMworld2018EU/VMworld 2018 EU - CTO1917BE - Emerging Technologies in the Real World.mp4 aac8d657f 1762253714 ---- [ 174883, 181605 ] 0 VMworld2018EU/VMworld 2018 EU - CTO2657BE - Evolution of VMware's Microgrid: The Largest Solar Deployment in Palo Alto.mp4 b15974111 1448595442 ---- [ 181605, 187131 ] 0 VMworld2018EU/VMworld 2018 EU - CTO2816BE - How Open Source Is Bringing Serverless On Premises.mp4 b6bef1103 1640571282 ---- [ 187131, 193390 ] 0 VMworld2018EU/VMworld 2018 EU - CTO3496PE - VMware CTO Panel: What's Over the Horizon?.mp4 bcdb83295 1964642240 ---- [ 193390, 200884 ] 0 VMworld2018EU/VMworld 2018 EU - CTO3509BE - VMware at the Edge: Automation, Analytics, and Real-Time Business.mp4 c42d24255 1361087171 ---- [ 200884, 206076 ] 0 VMworld2018EU/VMworld 2018 EU - CTO3584BE - An Introduction to VMware's Blockchain Technologies.mp4 c93f2cd18 1751552326 ---- [ 206076, 212758 ] 0 VMworld2018EU/VMworld 2018 EU - CTO3650BE - Tech-Lash: Addressing the Public's Concerns About Tech.mp4 cfc595e5e 1728810207 ---- [ 212758, 219353 ] 0 VMworld2018EU/VMworld 2018 EU - DC3732KE - Driving Transformation from the Data Center to the Public Cloud.mp4 d6364eb3d 1713128496 ---- [ 219353, 225888 ] 0 VMworld2018EU/VMworld 2018 EU - DC3845KE - Cloud and Developer Keynote: Public Clouds and Kubernetes at Scale.mp4 dc9812f6d 1144006576 ---- [ 225888, 230252 ] 0 VMworld2018EU/VMworld 2018 EU - DEV1031BES - Mind the Gap: Building a closer relationship between Security and DevOps.mp4 e0db1571d 606875134 ---- [ 230252, 232567 ] 0 VMworld2018EU/VMworld 2018 EU - DEV1325BE - Path to Production: Value Stream Mapping in a DevOps World.mp4 e31dd851b 1135868951 ---- [ 232567, 236900 ] 0 VMworld2018EU/VMworld 2018 EU - DEV1434BE - From Building Infrastructure to Building App Platforms: Your Next Career.mp4 e75918132 806852120 ---- [ 236900, 239978 ] 0 VMworld2018EU/VMworld 2018 EU - DEV1965QE - QuickStart DevOps Culture with VMware.mp4 ea5a9174a 1223388268 ---- [ 239978, 244645 ] 0 VMworld2018EU/VMworld 2018 EU - DEV2403BE - DevOps Culture and Practice: From Theory to Reality - A VMware Story.mp4 eee9483b6 1369584380 ---- [ 244645, 249869 ] 0 VMworld2018EU/VMworld 2018 EU - DEV2641BE - Bring Your Traditional Application to Kubernetes with PKS.mp4 f4036b6b2 1051031769 ---- [ 249869, 253879 ] 0 VMworld2018EU/VMworld 2018 EU - DEV3466BE - Putting It All Together: Using VMware Products to Deliver the DevOps Dream.mp4 f7edc2f8b 785212644 ---- [ 253879, 256874 ] 0 VMworld2018EU/VMworld 2018 EU - DEV3504BE - Development at VMware: A Look at How PowerCLI Has Evolved Over the Years.mp4 fada9946f 1897848655 ---- [ 256874, 264114 ] 0 VMworld2018EU/VMworld 2018 EU - DW3727KE - The Digital Workspace Keynote: End User Computing and Mobility Live!.mp4 101ec873be 833000368 ---- [ 264114, 267291 ] 0 VMworld2018EU/VMworld 2018 EU - END1225BE - Troubleshooting Tips and Tricks for Your iOS Deployment.mp4 10506f076e 1096760725 ---- [ 267291, 271475 ] 0 VMworld2018EU/VMworld 2018 EU - END1271BES - Securely Enable Cloud Worker Productivity with Chrome Enterprise and VMware.mp4 1091ce4503 1165046197 ---- [ 271475, 275919 ] 0 VMworld2018EU/VMworld 2018 EU - END1419BES - Using real-world innovation to deliver modern workplaces for industry.mp4 10d73f76b8 1175251744 ---- [ 275919, 280403 ] 0 VMworld2018EU/VMworld 2018 EU - END2713BE - Co-manage Workspace ONE + SCCM : Get to Windows 10 Modern Management Faster.mp4 111d4c61d8 1437252917 ---- [ 280403, 285885 ] 0 VMworld2018EU/VMworld 2018 EU - END2728PE - Panel: Real-World Conversations on Windows 10 App Lifecycle Management.mp4 1172f71f0d 2070895067 ---- [ 285885, 293785 ] 0 VMworld2018EU/VMworld 2018 EU - END2766BE - First Look at New Dell and VMware Developments That Optimize PC Management.mp4 11ee6678e8 1575796046 ---- [ 293785, 299796 ] 0 VMworld2018EU/VMworld 2018 EU - END2852BE - Discover The Latest Workspace ONE Intelligence Capabilities and ??Use Cases.mp4 124c533636 1284556866 ---- [ 299796, 304696 ] 0 VMworld2018EU/VMworld 2018 EU - END2866BE - Transforming Windows 10 Management: What Every Decision Maker Needs to Know.mp4 1298e3fe78 760907935 ---- [ 304696, 307599 ] 0 VMworld2018EU/VMworld 2018 EU - END2902QE - End-User Computing at VMworld: Everything You Need to Know.mp4 12c63e8717 1374439107 ---- [ 307599, 312842 ] 0 VMworld2018EU/VMworld 2018 EU - END2912BE - Workspace ONE Intelligence Mobile and Desktop Operations.mp4 13182acdda 1203158141 ---- [ 312842, 317432 ] 0 VMworld2018EU/VMworld 2018 EU - END2948BE - Enhanced iOS Management: From Onboarding to Update Management and Beyond.mp4 135fe18a57 1846956631 ---- [ 317432, 324477 ] 0 VMworld2018EU/VMworld 2018 EU - END2962BE - Deep Dive Into New Android Enterprise Personas and Deployment Methods.mp4 13cdf7dcae 1191267360 ---- [ 324477, 329022 ] 0 VMworld2018EU/VMworld 2018 EU - END2966BE - Expanding AirWatch to UEM for macOS Modern Management.mp4 1414f928ce 1610511098 ---- [ 329022, 335165 ] 0 VMworld2018EU/VMworld 2018 EU - END2978PE - How AirWatch Customers Are Moving Beyond Mobile to UEM across all Devices.mp4 1474f79bc8 2078966788 ---- [ 335165, 343096 ] 0 VMworld2018EU/VMworld 2018 EU - END3460BE - Deep Dive Into What's New with Workspace ONE Unified Endpoint Management.mp4 14f0e21fcc 1794228076 ---- [ 343096, 349940 ] 0 VMworld2018EU/VMworld 2018 EU - END3572BE - Industry 4.0: How Rugged and Workplace IoT Are Transforming Supply Chains.mp4 155bd3df38 367553258 ---- [ 349940, 351343 ] 0 VMworld2018EU/VMworld 2018 EU - HCI1059BE - Architecting VMware Site Recovery Manager to Meet Your DR Goals.mp4 1571bc4a22 1052946453 ---- [ 351343, 355359 ] 0 VMworld2018EU/VMworld 2018 EU - HCI1070BES - End User Computing Done Right.mp4 15b07efa37 1240108815 ---- [ 355359, 360090 ] 0 VMworld2018EU/VMworld 2018 EU - HCI1078BES - WestLotto Reduces Backup & Recovery Times by up to 98% with Cohesity's HCSS.mp4 15fa698946 974411379 ---- [ 360090, 363807 ] 0 VMworld2018EU/VMworld 2018 EU - HCI1080BES - Be the change agent, not the ticket agent.mp4 16347ddfb9 1468204796 ---- [ 363807, 369408 ] 0 VMworld2018EU/VMworld 2018 EU - HCI1246BE - Optimizing vSAN for Performance.mp4 168c00e6b5 1005561944 ---- [ 369408, 373244 ] 0 VMworld2018EU/VMworld 2018 EU - HCI1270BE - The Power of Storage Policy-Based Management.mp4 16c7f08f0d 1269816634 ---- [ 373244, 378088 ] 0 VMworld2018EU/VMworld 2018 EU - HCI1329BES - Lessons Learned from Real-World vSAN Operations.mp4 1713a06c47 1328764368 ---- [ 378088, 383156 ] 0 VMworld2018EU/VMworld 2018 EU - HCI1338BE - vSAN: An Ideal Storage Platform for Kubernetes-controlled Cloud-Native Apps.mp4 1762d3c217 1249621366 ---- [ 383156, 387923 ] 0 VMworld2018EU/VMworld 2018 EU - HCI1469BE - The Future of vSAN and Hyperconverged Infrastructure.mp4 17ad4f778d 1518228101 ---- [ 387923, 393715 ] 0 VMworld2018EU/VMworld 2018 EU - HCI1477BE - New Ways to Use vRealize Operations and Log Insight for vSAN Environments.mp4 1807cdca12 794346945 ---- [ 393715, 396745 ] 0 VMworld2018EU/VMworld 2018 EU - HCI1552BE - Deploying vSAN to 300 Stores in 2 Weeks: An Automation Story.mp4 1837268fd3 735816549 ---- [ 396745, 399552 ] 0 VMworld2018EU/VMworld 2018 EU - HCI1583BE - vSAN Myth Busters: Busting the Common Misconceptions About vSAN.mp4 1863023b38 1022591490 ---- [ 399552, 403453 ] 0 VMworld2018EU/VMworld 2018 EU - HCI1603BE - Native vSAN Data Protection: Safeguarding Virtual Machine Data on vSAN.mp4 189ff5bd3a 1335799501 ---- [ 403453, 408549 ] 0 VMworld2018EU/VMworld 2018 EU - HCI1705BE - Data Protection in VMware Hybrid Clouds.mp4 18ef946c07 1239415304 ---- [ 408549, 413277 ] 0 VMworld2018EU/VMworld 2018 EU - HCI1768BE - What's New in vSAN: Technical Deep Dive.mp4 193974660f 1044070312 ---- [ 413277, 417259 ] 0 VMworld2018EU/VMworld 2018 EU - HCI1884BE - NSX and Generic Network Overlays with HCI: Everything You Need to Know.mp4 1977afa5b7 1258521678 ---- [ 417259, 422060 ] 0 VMworld2018EU/VMworld 2018 EU - HCI1993BE - vSAN Technical Deep Dive.mp4 19c2b32a05 1014548250 ---- [ 422060, 425930 ] 0 VMworld2018EU/VMworld 2018 EU - HCI2019BE - Running SAP HANA on HCI Powered by vSAN.mp4 19ff2bf11f 1395713582 ---- [ 425930, 431255 ] 0 VMworld2018EU/VMworld 2018 EU - HCI2032BE - Successful vSAN for Remote Offices and Branch Offices.mp4 1a525cd74d 1036251689 ---- [ 431255, 435208 ] 0 VMworld2018EU/VMworld 2018 EU - HCI2038BE - Best Practices for Deploying Hadoop Workloads on HCI Powered by vSAN.mp4 1a9020c976 1332783992 ---- [ 435208, 440292 ] 0 VMworld2018EU/VMworld 2018 EU - HCI2041BE - vSAN Encryption Deep Dive.mp4 1adf9174ee 1067189829 ---- [ 440292, 444363 ] 0 VMworld2018EU/VMworld 2018 EU - HCI2052BE - Sizing Your HCI Environment: How To Do It Correctly and Accurately.mp4 1b1f2d7b33 971989326 ---- [ 444363, 448071 ] 0 VMworld2018EU/VMworld 2018 EU - HCI2053BE - Hitting Refresh with HCI for Better Performance and Less Complexity.mp4 1b591cdc81 1095392411 ---- [ 448071, 452249 ] 0 VMworld2018EU/VMworld 2018 EU - HCI2088BE - vSAN Stretched Clusters Technical Deep Dive.mp4 1b9a67391c 850529952 ---- [ 452249, 455494 ] 0 VMworld2018EU/VMworld 2018 EU - HCI2103BE - Choosing the Right HCI Solution in the Multi-Cloud Era.mp4 1bcd1947bc 840850941 ---- [ 455494, 458701 ] 0 VMworld2018EU/VMworld 2018 EU - HCI2107QE - Back to Basics: Why HCI? Why Now?.mp4 1bff37a5b9 1189931914 ---- [ 458701, 463241 ] 0 VMworld2018EU/VMworld 2018 EU - HCI2164BE - HCI Management, Current and Future.mp4 1c46249143 1042319452 ---- [ 463241, 467217 ] 0 VMworld2018EU/VMworld 2018 EU - HCI2180BE - vSAN Support Insight - Inside Out.mp4 1c8445199f 872065257 ---- [ 467217, 470543 ] 0 VMworld2018EU/VMworld 2018 EU - HCI2208BE - vSAN Hardware Guidance on Performance and Configuration.mp4 1cb83fc288 932196609 ---- [ 470543, 474099 ] 0 VMworld2018EU/VMworld 2018 EU - HCI2474BE - Site Recovery Manager 8.1: What's New?.mp4 1cefcff389 961518727 ---- [ 474099, 477767 ] 0 VMworld2018EU/VMworld 2018 EU - HCI2513QE - Using vSAN Native Data Protection in the Real World.mp4 1d291f9010 1100849560 ---- [ 477767, 481967 ] 0 VMworld2018EU/VMworld 2018 EU - HCI2522BE - Getting Started with vSAN Automation.mp4 1d6abd31a8 1271728364 ---- [ 481967, 486818 ] 0 VMworld2018EU/VMworld 2018 EU - HCI2617BE - Best Practices for Deploying Business-Critical Oracle Workloads on vSAN HCI.mp4 1db68a3a94 869502652 ---- [ 486818, 490135 ] 0 VMworld2018EU/VMworld 2018 EU - HCI2681BE - The Latest and Greatest with VMware vSAN.mp4 1dea5dc950 717402999 ---- [ 490135, 492872 ] 0 VMworld2018EU/VMworld 2018 EU - HCI2909QER - VMs on vSAN - An End to End View.mp4 1e15207cc7 1016699076 ---- [ 492872, 496750 ] 0 VMworld2018EU/VMworld 2018 EU - HCI2997BE - Scaling Beyond Big Data: HealthCare and Financial Data on vSAN.mp4 1e51ba158b 1235127097 ---- [ 496750, 501462 ] 0 VMworld2018EU/VMworld 2018 EU - HCI3041BE - Introducing Scalable File Storage on vSAN with Native File Services.mp4 1e9b58a0c4 968514020 ---- [ 501462, 505156 ] 0 VMworld2018EU/VMworld 2018 EU - HCI3452BE - Achieving a GDPR-Ready Architecture Leveraging VMware vSAN.mp4 1ed512faa8 1231020972 ---- [ 505156, 509852 ] 0 VMworld2018EU/VMworld 2018 EU - HCI3707BES - Infrastructure Matters: From Modernizing Servers to a VMware cloud on HCI.mp4 1f1e72de54 1289981503 ---- [ 509852, 514773 ] 0 VMworld2018EU/VMworld 2018 EU - HCI3728KE - Innovating Beyond HCI: How VMware is Driving the Next Data Center Revolution.mp4 1f6b566c93 1488454984 ---- [ 514773, 520451 ] 0 VMworld2018EU/VMworld 2018 EU - HYP1005BES - Automation & orchestration of Veeam & VMware featuring VMware Cloud on AWS.mp4 1fc40e71db 1163730733 ---- [ 520451, 524890 ] 0 VMworld2018EU/VMworld 2018 EU - HYP1022BES - Practical Guide for Delivering Advanced Security at Scale and Speed in SDDC.mp4 20096b9108 1295722873 ---- [ 524890, 529833 ] 0 VMworld2018EU/VMworld 2018 EU - HYP1052BES - A Hybrid Journey to Cloud.mp4 2056a6ba81 1478330383 ---- [ 529833, 535473 ] 0 VMworld2018EU/VMworld 2018 EU - HYP1060PES - Modern Data Protection: how to ensure your data never gets lost.mp4 20aec44290 654521242 ---- [ 535473, 537969 ] 0 VMworld2018EU/VMworld 2018 EU - HYP1071BE - Art of Possible: Empowering Every vSphere Infrastructure to Become Hybrid.mp4 20d5c7762a 1051147468 ---- [ 537969, 541979 ] 0 VMworld2018EU/VMworld 2018 EU - HYP1079BES - Goodbye Periodic Backup. Hello Zerto 7.mp4 21146eb2f6 1310182504 ---- [ 541979, 546977 ] 0 VMworld2018EU/VMworld 2018 EU - HYP1083BES - Mission Critical VMware on IBM Cloud.mp4 2162867f5e 1303576714 ---- [ 546977, 551950 ] 0 VMworld2018EU/VMworld 2018 EU - HYP1084BE - Extending VMware workloads to the public cloud.mp4 21b0397fe8 823476250 ---- [ 551950, 555091 ] 0 VMworld2018EU/VMworld 2018 EU - HYP1085BE - Public Cloud- A critical component of your digital transformation.mp4 21e14ec002 1610842935 ---- [ 555091, 561236 ] 0 VMworld2018EU/VMworld 2018 EU - HYP1139BES - Transform Your Enterprise with Kubernetes and VMs Together.mp4 2241524339 1295812374 ---- [ 561236, 566179 ] 0 VMworld2018EU/VMworld 2018 EU - HYP1142BE - Case Study: Hybrid Cloud with vCloud Extender from Customer to Provider.mp4 228e8eca4f 1209019464 ---- [ 566179, 570791 ] 0 VMworld2018EU/VMworld 2018 EU - HYP1187BE - VMware Cloud on AWS: The Migration Venture.mp4 22d69ef697 981742859 ---- [ 570791, 574536 ] 0 VMworld2018EU/VMworld 2018 EU - HYP1323BES - There's a smarter way to eliminate downtime.mp4 2311232ba2 992846831 ---- [ 574536, 578324 ] 0 VMworld2018EU/VMworld 2018 EU - HYP1369BES - Automate Hosted Private Clouds Everywhere using VMware Cloud Foundation.mp4 234c50cf91 1026925471 ---- [ 578324, 582241 ] 0 VMworld2018EU/VMworld 2018 EU - HYP1376BE - Accelerate Your Hybrid Cloud with VMware Cloud on AWS: What???s New.mp4 2389867330 983795867 ---- [ 582241, 585994 ] 0 VMworld2018EU/VMworld 2018 EU - HYP1377BE - VMware Cloud on AWS Security and Compliance Details.mp4 23c429fbcb 1291054989 ---- [ 585994, 590919 ] 0 VMworld2018EU/VMworld 2018 EU - HYP1496BE - A Practitioner's Guide to Migrating Workloads to VMware Cloud on AWS.mp4 24111deb58 1556136771 ---- [ 590919, 596855 ] 0 VMworld2018EU/VMworld 2018 EU - HYP1499BE - VMware Cloud Provider Pod.mp4 246ddeae9b 1638593102 ---- [ 596855, 603106 ] 0 VMworld2018EU/VMworld 2018 EU - HYP1803BE - Delivering Custom Services Through vCloud Director Extensibility.mp4 24cf89a0e9 1889614281 ---- [ 603106, 610314 ] 0 VMworld2018EU/VMworld 2018 EU - HYP1810PE - Ask the Cloud Experts.mp4 25402adab2 1493085413 ---- [ 610314, 616010 ] 0 VMworld2018EU/VMworld 2018 EU - HYP1923BE - Building Hybrid Cloud with Horizon on VMware Cloud on AWS.mp4 2599298797 958644692 ---- [ 616010, 619667 ] 0 VMworld2018EU/VMworld 2018 EU - HYP1950BE - Navigating Hybrid Cloud.mp4 25d24d496b 1493351634 ---- [ 619667, 625364 ] 0 VMworld2018EU/VMworld 2018 EU - HYP2048BE - VMware Cloud on AWS: Live, Next-Gen Integrations for Your Next-Gen Cloud.mp4 262b50063d 1331451115 ---- [ 625364, 630443 ] 0 VMworld2018EU/VMworld 2018 EU - HYP2060BE - New VMware Cloud Provider Hub - Centralized Provider Portal for VMware Cloud Services.mp4 267aac5b28 1056754103 ---- [ 630443, 634474 ] 0 VMworld2018EU/VMworld 2018 EU - HYP2138BES - How Secure is Your Hybrid Cloud? Optimize for Security in a Post-GDPR World.mp4 26b9a924df 996336212 ---- [ 634474, 638275 ] 0 VMworld2018EU/VMworld 2018 EU - HYP2145BES - Hybrid cloud architecture design and best practices for VMware Cloud on AWS.mp4 26f50c0733 999518287 ---- [ 638275, 642087 ] 0 VMworld2018EU/VMworld 2018 EU - HYP2406BE - VMware NSX for Service Providers: A Technical View.mp4 27309f7782 800255329 ---- [ 642087, 645140 ] 0 VMworld2018EU/VMworld 2018 EU - HYP2422BE - Enabling Cloud Marketplace Services with VMware.mp4 27605264e3 1112094673 ---- [ 645140, 649382 ] 0 VMworld2018EU/VMworld 2018 EU - HYP2445BE - From On Premises to Beyond.mp4 27a29b9cb4 1624599174 ---- [ 649382, 655580 ] 0 VMworld2018EU/VMworld 2018 EU - HYP2697PE - VMware Cloud on AWS Customer Panel.mp4 280371073a 826526382 ---- [ 655580, 658733 ] 0 VMworld2018EU/VMworld 2018 EU - HYP2817QE - Understanding the TCO Benefits of VMware Cloud on AWS.mp4 2834b4d1e8 1368436419 ---- [ 658733, 663953 ] 0 VMworld2018EU/VMworld 2018 EU - HYP2861BE - Multi Cloud Architectures and Evolution: Customer Perspective.mp4 28864580ab 1041108599 ---- [ 663953, 667924 ] 0 VMworld2018EU/VMworld 2018 EU - HYP2890BE - How Cloud Service Providers Deliver Multi-Cloud Management-as-a-Service.mp4 28c4538f22 999250777 ---- [ 667924, 671736 ] 0 VMworld2018EU/VMworld 2018 EU - HYP3003BES - Hello, You Had Me at Infrastructure as Code: Hybrid SDDC Cloud Automation.mp4 28ffe2ea7b 1608818449 ---- [ 671736, 677873 ] 0 VMworld2018EU/VMworld 2018 EU - HYP3019BE - VMware Site Recovery: DR-as-a-Service with VMware Cloud on AWS.mp4 295fc7898c 993941022 ---- [ 677873, 681665 ] 0 VMworld2018EU/VMworld 2018 EU - HYP3025BE - Teaching Old Dogs New Tricks: High Availability for VMware Cloud on AWS.mp4 299b05dfaa 1135468086 ---- [ 681665, 685996 ] 0 VMworld2018EU/VMworld 2018 EU - HYP3061BE - VMware on IBM Cloud: Best-in-class Enterprise Cloud with a simple way to get there.mp4 29deb3bde0 1181517259 ---- [ 685996, 690504 ] 0 VMworld2018EU/VMworld 2018 EU - HYP3286BE - Enabling High Capacity Workloads with Elastic EBS-backed vSAN on VMC.mp4 2a252043ab 997340495 ---- [ 690504, 694308 ] 0 VMworld2018EU/VMworld 2018 EU - HYP3696BES - Simplify operations with machine learning for secondary data and apps.mp4 2a609278fa 638941284 ---- [ 694308, 696745 ] 0 VMworld2018EU/VMworld 2018 EU - HYP3705BES - Improving App Performance and Protection for VMware: NVMe, Cloud and Beyond.mp4 2a86a7f15e 1205185778 ---- [ 696745, 701343 ] 0 VMworld2018EU/VMworld 2018 EU - HYP3822BE - Dell EMC Data Protection for VMware, Simplicity Meets Power.mp4 2ace7d9e50 1632886842 ---- [ 701343, 707572 ] 0 VMworld2018EU/VMworld 2018 EU - HYP3853BE - FREESTYLIN THE CLOUD with IBM and skateboarding legend, Rodney Mullen.mp4 2b2fd17e8a 1559327214 ---- [ 707572, 713520 ] 0 VMworld2018EU/VMworld 2018 EU - IOT1203BES - From Disruption to Business Transformation.mp4 2b8cc2f078 1432428906 ---- [ 713520, 718985 ] 0 VMworld2018EU/VMworld 2018 EU - IOT1374BES - The 5 challenges of IoT at Enterprise Scale.mp4 2be22411e2 433257043 ---- [ 718985, 720637 ] 0 VMworld2018EU/VMworld 2018 EU - IOT1746QE - Can Blockchain Be Used as a Tool to Secure the IoT?.mp4 2bfbf70c35 1225787841 ---- [ 720637, 725313 ] 0 VMworld2018EU/VMworld 2018 EU - IOT2593BE - Project Dimension - The Easy Button for Edge Computing.mp4 2c450715f6 1356190406 ---- [ 725313, 730487 ] 0 VMworld2018EU/VMworld 2018 EU - IOT2812BE - Design IoT with Security in Mind Using VMware Pulse IoT and NSX.mp4 2c95dce8bc 1150323795 ---- [ 730487, 734875 ] 0 VMworld2018EU/VMworld 2018 EU - IOT3541BE - Take Your Hybrid Cloud Strategy to the Edge with VMware Solutions.mp4 2cda6d750f 941852095 ---- [ 734875, 738468 ] 0 VMworld2018EU/VMworld 2018 EU - IOT3549QE - Make Friends with Your OT Department: The Prerequisite to IoT Success.mp4 2d1290face 1034041007 ---- [ 738468, 742412 ] 0 VMworld2018EU/VMworld 2018 EU - IOT3550PE - Customers Who Take Control of the Edge with VMware Pulse IoT Solutions.mp4 2d5033317d 1599250261 ---- [ 742412, 748513 ] 0 VMworld2018EU/VMworld 2018 EU - IOT3563BE - Surveillance and IoT Helping Keep the World Safe.mp4 2daf85d0d2 658688580 ---- [ 748513, 751026 ] 0 VMworld2018EU/VMworld 2018 EU - IOT3680BE - Deploy, Manage, and Get Value from IOT with Microsoft, Dell and VMware.mp4 2dd6c89b16 1434258023 ---- [ 751026, 756497 ] 0 VMworld2018EU/VMworld 2018 EU - LDT1011BES - Hybrid IT: HPE's composable, software-defined, dynamic datacenter vision.mp4 2e2c45a57d 1182364943 ---- [ 756497, 761007 ] 0 VMworld2018EU/VMworld 2018 EU - LDT1012BES - Examining the Best Practices for Executing Your Multi-Cloud Environment.mp4 2e72bf1a8c 1865378633 ---- [ 761007, 768123 ] 0 VMworld2018EU/VMworld 2018 EU - LDT1252PE - A fireside chat with the VMware IT CIO Leadership Team.mp4 2ee1ee85d5 1734341402 ---- [ 768123, 774739 ] 0 VMworld2018EU/VMworld 2018 EU - LDT1324PE - Increasing Productivity by Providing a Superior Employee Experience.mp4 2f494e78ef 1164566397 ---- [ 774739, 779182 ] 0 VMworld2018EU/VMworld 2018 EU - LDT1433BE - Transforming IT through Infrastructure-as-Code.mp4 2f8eb8586c 1564252620 ---- [ 779182, 785149 ] 0 VMworld2018EU/VMworld 2018 EU - LDT1515PE - Transformers: How VMware IT Transitioned to a Services-Based Organization.mp4 2febf4f238 1590344927 ---- [ 785149, 791215 ] 0 VMworld2018EU/VMworld 2018 EU - LDT1719BE - Taming Security with Tools: Making Compliance a Reality.mp4 304abfaf17 825853390 ---- [ 791215, 794366 ] 0 VMworld2018EU/VMworld 2018 EU - LDT1865BE - Case Study: Measuring the Business Value of Time to Market.mp4 307bf934e5 1882745883 ---- [ 794366, 801548 ] 0 VMworld2018EU/VMworld 2018 EU - LDT1873BE - A Peek into the Future of VMware IT's Multi-Cloud Strategy.mp4 30ec31a100 1245226484 ---- [ 801548, 806298 ] 0 VMworld2018EU/VMworld 2018 EU - LDT1899BE - Embracing a DevOps Cloud Operational Model for Private Cloud.mp4 31366a46f4 1041948876 ---- [ 806298, 810273 ] 0 VMworld2018EU/VMworld 2018 EU - LDT1907BE - Achieving Happiness: Building Your Brand and Your Career.mp4 31748527c0 1770835271 ---- [ 810273, 817028 ] 0 VMworld2018EU/VMworld 2018 EU - LDT1940BE - Digital Transformation in Action: From Buzzword to Reality.mp4 31de11f507 915814971 ---- [ 817028, 820522 ] 0 VMworld2018EU/VMworld 2018 EU - LDT2787PE - Rethinking Financial Services: Adapting to a Digital Economy.mp4 3214a82f42 1504668499 ---- [ 820522, 826261 ] 0 VMworld2018EU/VMworld 2018 EU - LDT3135PE - How Your Peers are REALLY Doing in Their Digital Transformation.mp4 326e579a95 1541297746 ---- [ 826261, 832141 ] 0 VMworld2018EU/VMworld 2018 EU - LDT3675BE - Status of CIO Recruitment and Leadership Traits most Desired by CEOs.mp4 32ca35f0e7 1270976278 ---- [ 832141, 836989 ] 0 VMworld2018EU/VMworld 2018 EU - MGT1076BES - The New Era of Cloud Data Management.mp4 3315f77ffd 1298606725 ---- [ 836989, 841943 ] 0 VMworld2018EU/VMworld 2018 EU - MGT1081BES - Hitachi brings the Hybrid Cloud alive with Infrastructure Automation.mp4 33635eaa82 1652928312 ---- [ 841943, 848249 ] 0 VMworld2018EU/VMworld 2018 EU - MGT1082BES - True tales of Multi-Cloud Integration and Automation in the Enterprise.mp4 33c5e459ba 1768908659 ---- [ 848249, 854996 ] 0 VMworld2018EU/VMworld 2018 EU - MGT1201BE - Self-Driving Operations: What's New with vRealize Operations.mp4 342f53c12d 1286097159 ---- [ 854996, 859903 ] 0 VMworld2018EU/VMworld 2018 EU - MGT1312BE - Intro to VMware's Cloud Management Automation Services. You agile enough?.mp4 347bfc0a34 1377801502 ---- [ 859903, 865158 ] 0 VMworld2018EU/VMworld 2018 EU - MGT1336PE - Tales from the Trenches: Realizing the Full Value of vRealize Operations.mp4 34ce1b9f52 1137863266 ---- [ 865158, 869499 ] 0 VMworld2018EU/VMworld 2018 EU - MGT1402BE - Billion Lyft Rides, Half Million IoT Users: How to Scale SaaS with Analytics.mp4 3511ee09b4 1350893187 ---- [ 869499, 874652 ] 0 VMworld2018EU/VMworld 2018 EU - MGT1440BE - Master Performance and Capacity Management with vRealize Operations.mp4 3562730837 1152349702 ---- [ 874652, 879048 ] 0 VMworld2018EU/VMworld 2018 EU - MGT1534BE - vRealize Operations Capacity and Cost Management.mp4 35a7227e3d 977252995 ---- [ 879048, 882776 ] 0 VMworld2018EU/VMworld 2018 EU - MGT1640BE - Self-Driving Operations with vRealize Operations Performance Optimization.mp4 35e16230c0 1536987242 ---- [ 882776, 888639 ] 0 VMworld2018EU/VMworld 2018 EU - MGT1645BE - How CloudHealth Reduces the Cost and Complexity of Multi-Cloud Operations.mp4 363cfec12a 958474834 ---- [ 888639, 892295 ] 0 VMworld2018EU/VMworld 2018 EU - MGT1652BE - Application Networking and Security with vRealize Automation and NSX-T.mp4 36761feb7c 1214705754 ---- [ 892295, 896929 ] 0 VMworld2018EU/VMworld 2018 EU - MGT1773BE - Container Management and VMware PKS Support for vRealize Automation.mp4 36be86dbd6 808679295 ---- [ 896929, 900014 ] 0 VMworld2018EU/VMworld 2018 EU - MGT1774BE - vRealize Multi-Cloud Case Study: Borusan Industrial Group.mp4 36eeba5355 1163298795 ---- [ 900014, 904452 ] 0 VMworld2018EU/VMworld 2018 EU - MGT2020BE - Digital Transformation in the Public Sector: A Case Study from Qatar.mp4 373410db40 944316262 ---- [ 904452, 908054 ] 0 VMworld2018EU/VMworld 2018 EU - MGT2139BE - Manage IBM Power Series using vRealize Operations Manager.mp4 376c59faa6 1442948063 ---- [ 908054, 913558 ] 0 VMworld2018EU/VMworld 2018 EU - MGT2204BE - VMware Cloud Management: See the Mother of All Demos!.mp4 37c25b9e85 1025622734 ---- [ 913558, 917471 ] 0 VMworld2018EU/VMworld 2018 EU - MGT2237BES - Cisco MultiCloud integrated into your VMware environment.mp4 37ff7d6153 1848008484 ---- [ 917471, 924520 ] 0 VMworld2018EU/VMworld 2018 EU - MGT2242BE - What's New in vRealize Automation.mp4 386da3c077 843719223 ---- [ 924520, 927739 ] 0 VMworld2018EU/VMworld 2018 EU - MGT2528BE - vRealize Automation Architecture and Troubleshooting Deep Dive.mp4 389fede2ae 1213966098 ---- [ 927739, 932370 ] 0 VMworld2018EU/VMworld 2018 EU - MGT2552BE - Troubleshooting Made Easy with vRealize Operations.mp4 38e84989c0 1417223990 ---- [ 932370, 937776 ] 0 VMworld2018EU/VMworld 2018 EU - MGT2556BE - Use Cloud Services to Deploy and Maintain Apps in a Multi-Cloud Environment.mp4 393cc2a8f6 1344724762 ---- [ 937776, 942906 ] 0 VMworld2018EU/VMworld 2018 EU - MGT2844BE - AWS App Security and Visibility with Network Insight and Log Intelligence.mp4 398ce98810 1413391952 ---- [ 942906, 948298 ] 0 VMworld2018EU/VMworld 2018 EU - MGT2915BE - Agile Cloud Management with VMware.mp4 39e1282e60 1691499608 ---- [ 948298, 954750 ] 0 VMworld2018EU/VMworld 2018 EU - MGT2920BE - Automation Success Story: Enabling Agility with Cloud Automation Services.mp4 3a45fa6ab8 791536533 ---- [ 954750, 957770 ] 0 VMworld2018EU/VMworld 2018 EU - MGT2934BE - Optimize Workload Cost and Performance Using the vRealize Suite.mp4 3a75284e4d 1614613989 ---- [ 957770, 963929 ] 0 VMworld2018EU/VMworld 2018 EU - MGT2954BE - Real-Time Security Insights and Governance for Public Cloud Infrastructure.mp4 3ad5655c32 1207879890 ---- [ 963929, 968537 ] 0 VMworld2018EU/VMworld 2018 EU - MGT3026BE - Building Machine Learning Services with VMware Integrated OpenStack.mp4 3b1d642504 1741516238 ---- [ 968537, 975180 ] 0 VMworld2018EU/VMworld 2018 EU - MGT3192BE - Cloud Admin Deep Dive for Multi-Cloud Monitoring and Troubleshooting.mp4 3b853192d2 1672404106 ---- [ 975180, 981560 ] 0 VMworld2018EU/VMworld 2018 EU - MGT3302BE - CloudHealth: The foundation for your Cloud Centre of Excellence.mp4 3be8e06f5c 1167472388 ---- [ 981560, 986013 ] 0 VMworld2018EU/VMworld 2018 EU - MGT3303BE - Achieving a Comprehensive Cloud Strategy Leveraging CloudHealth.mp4 3c2e76a660 1107172936 ---- [ 986013, 990237 ] 0 VMworld2018EU/VMworld 2018 EU - MGT3718BE - Finding the Hidden Risks and Connected Threats Across Your Public Cloud.mp4 3c7074c4a8 709341082 ---- [ 990237, 992943 ] 0 VMworld2018EU/VMworld 2018 EU - MGT3918BE - Amazon RDS on VMware: Database Management Services on vSphere.mp4 3c9abc7442 692322567 ---- [ 992943, 995584 ] 0 VMworld2018EU/VMworld 2018 EU - NET1020BES - You can still get burned when its cloudy.mp4 3cc4007549 1359573696 ---- [ 995584, 1000770 ] 0 VMworld2018EU/VMworld 2018 EU - NET1106BE - Advanced NSX Data Center: Demystifying the VTEP, MAC, and ARP Tables.mp4 3d1509e809 1491395381 ---- [ 1000770, 1006459 ] 0 VMworld2018EU/VMworld 2018 EU - NET1127BE - Logical Routing Deep Dive on NSX-T Data Center.mp4 3d6deecb3e 1270478518 ---- [ 1006459, 1011306 ] 0 VMworld2018EU/VMworld 2018 EU - NET1128BE - Logical Routing Deep Dive on NSX Data Center for vSphere.mp4 3db9a8c1f4 1082809889 ---- [ 1011306, 1015436 ] 0 VMworld2018EU/VMworld 2018 EU - NET1285BE - The Future of Networking and Security with VMware NSX.mp4 3dfa332015 1468477963 ---- [ 1015436, 1021038 ] 0 VMworld2018EU/VMworld 2018 EU - NET1327BE - VMware Cloud on AWS with NSX: Use Cases, Design, and Implementation.mp4 3e51ba5220 1101362171 ---- [ 1021038, 1025239 ] 0 VMworld2018EU/VMworld 2018 EU - NET1363BE - Building a Multi-Tenant Private Cloud with NSX-T Data Center.mp4 3e935fc61b 931334967 ---- [ 1025239, 1028792 ] 0 VMworld2018EU/VMworld 2018 EU - NET1400BES - Creating The New Frontier in Visibility for The Data Center of the Future.mp4 3ecae2d152 1275918160 ---- [ 1028792, 1033659 ] 0 VMworld2018EU/VMworld 2018 EU - NET1516BE - Introduction to NSX Cloud.mp4 3f16efc8a2 1084658520 ---- [ 1033659, 1037797 ] 0 VMworld2018EU/VMworld 2018 EU - NET1536BE - Multi-Site Networking and Security with NSX Data Center.mp4 3f57965bfa 1100118859 ---- [ 1037797, 1041994 ] 0 VMworld2018EU/VMworld 2018 EU - NET1537BE - NSX-T Data Center Architecture and Benefits.mp4 3f9928d745 1008987533 ---- [ 1041994, 1045843 ] 0 VMworld2018EU/VMworld 2018 EU - NET1549BE - Deep Dive into Operationalizing NSX-T Data Center.mp4 3fd54cc4d2 2064462401 ---- [ 1045843, 1053718 ] 0 VMworld2018EU/VMworld 2018 EU - NET1559BE - SDDC Reference Design with NSX Data Center for vSphere.mp4 405059f713 2087539793 ---- [ 1053718, 1061681 ] 0 VMworld2018EU/VMworld 2018 EU - NET1561BE - Next-Generation Reference Design with NSX-T Data Center: Part 1.mp4 40ccc74b64 2158002523 ---- [ 1061681, 1069913 ] 0 VMworld2018EU/VMworld 2018 EU - NET1562BE - Next-Generation Reference Design with NSX-T Data Center: Part 2.mp4 414d67ccbf 1047977277 ---- [ 1069913, 1073911 ] 0 VMworld2018EU/VMworld 2018 EU - NET1586BE - Networking and Security for Small Data Centers with NSX Data Center.mp4 418bdea9fc 1150202858 ---- [ 1073911, 1078299 ] 0 VMworld2018EU/VMworld 2018 EU - NET1610BE - NSX-T Edge Services: Design and Deployment Options.mp4 41d06d5de6 1540326279 ---- [ 1078299, 1084175 ] 0 VMworld2018EU/VMworld 2018 EU - NET1642BE - NSX-PowerOps: Day2 Ops, NSX Health, Security, and Automated Documentation.mp4 422c3ce16d 2072113276 ---- [ 1084175, 1092079 ] 0 VMworld2018EU/VMworld 2018 EU - NET1677BE - Kubernetes Container Networking with NSX-T Data Center Deep Dive.mp4 42a7bed1e9 765010066 ---- [ 1092079, 1094997 ] 0 VMworld2018EU/VMworld 2018 EU - NET1723BE - Day 2 Automation of NSX Data Center Using vRealize Suite.mp4 42d557f27b 1032444282 ---- [ 1094997, 1098936 ] 0 VMworld2018EU/VMworld 2018 EU - NET1742BE - N-VDS: The next generation switch architecture with VMware NSX Data Center.mp4 4312e1cbf5 1265930841 ---- [ 1098936, 1103765 ] 0 VMworld2018EU/VMworld 2018 EU - NET1754BE - NSX Cloud:Deployment Deep Dive and Architecture.mp4 435e565e4e 2156618169 ---- [ 1103765, 1111992 ] 0 VMworld2018EU/VMworld 2018 EU - NET1879BE - vRealize Network Insight Deep Dive.mp4 43dee1c007 1547204708 ---- [ 1111992, 1117894 ] 0 VMworld2018EU/VMworld 2018 EU - NET1894BE - NSX Design for Cloud-native Apps with Pivotal Cloud Foundry.mp4 443b1a386b 1531774199 ---- [ 1117894, 1123737 ] 0 VMworld2018EU/VMworld 2018 EU - NET1919BE - NSX Mindset: Clouds Collide, Opportunity Strikes.mp4 4496673d62 2167146680 ---- [ 1123737, 1132004 ] 0 VMworld2018EU/VMworld 2018 EU - NET1945BE - Deploying NSX Data Center on a Cisco Infrastructure.mp4 451793461a 1785469944 ---- [ 1132004, 1138815 ] 0 VMworld2018EU/VMworld 2018 EU - NET2068BE - Introduction to Container Networking and Security with NSX-T Data Center.mp4 4581ff6212 790944682 ---- [ 1138815, 1141833 ] 0 VMworld2018EU/VMworld 2018 EU - NET2409BE - Advanced NSX Services in VMware Cloud on AWS: Use Cases and Best Practices.mp4 45b1243dbc 1147289516 ---- [ 1141833, 1146209 ] 0 VMworld2018EU/VMworld 2018 EU - NET2420BE - Rethinking Disaster Recovery with NSX Data Center and NSX Hybrid Connect.mp4 45f5867d68 2138387860 ---- [ 1146209, 1154366 ] 0 VMworld2018EU/VMworld 2018 EU - NET2701BE - Virtual Cloud Network End-to-End Demo: Powered by NSX.mp4 4674fbb2fc 1853943929 ---- [ 1154366, 1161439 ] 0 VMworld2018EU/VMworld 2018 EU - NET2764BE - Introduction to vRealize Network Insight.mp4 46e37ca375 1520631563 ---- [ 1161439, 1167239 ] 0 VMworld2018EU/VMworld 2018 EU - NET2770BE - Introduction to NSX Data Center.mp4 473e1fa280 968936109 ---- [ 1167239, 1170936 ] 0 VMworld2018EU/VMworld 2018 EU - NET3042PE - Customer Panel on NSX Data Center.mp4 4777e06d2d 890754251 ---- [ 1170936, 1174334 ] 0 VMworld2018EU/VMworld 2018 EU - NET3193BES - VMware NSX and Getting the Most Out of Your Infrastructure.mp4 47acf841f8 1114221789 ---- [ 1174334, 1178584 ] 0 VMworld2018EU/VMworld 2018 EU - NET3409BE - Using vRealize Network Insight to Optimize the Software-Defined Data Center.mp4 47ef61eed5 1040862088 ---- [ 1178584, 1182555 ] 0 VMworld2018EU/VMworld 2018 EU - NFV1118BES - Telefonica VDC: Where Connectivity & Cloud Combine to Transform Your Business.mp4 482d6c3a5d 1158517795 ---- [ 1182555, 1186974 ] 0 VMworld2018EU/VMworld 2018 EU - NFV1134BE - Service Assurance Suite Customer Case Study with Swisscom.mp4 487279ce80 1848507547 ---- [ 1186974, 1194025 ] 0 VMworld2018EU/VMworld 2018 EU - NFV1135BE - Making Digital Transformation a Reality with NFV: a Case Study MTS & VMware.mp4 48e0a7cb1b 1701231465 ---- [ 1194025, 1200515 ] 0 VMworld2018EU/VMworld 2018 EU - NFV1307BE - NSX SD-WAN by VeloCloud for Service Providers on the vCloud NFV Platform.mp4 49460e8684 1935613326 ---- [ 1200515, 1207899 ] 0 VMworld2018EU/VMworld 2018 EU - NFV1309BE - 5G Readiness: The Importance of Network Slicing & Service Function Chaining.mp4 49b96da412 1324298355 ---- [ 1207899, 1212951 ] 0 VMworld2018EU/VMworld 2018 EU - NFV1315BE - Distributed OpenStack Platform for Telco Use Cases: MEC and PoP.mp4 4a085cd485 1050917709 ---- [ 1212951, 1216960 ] 0 VMworld2018EU/VMworld 2018 EU - NFV2220BE - Service Providers Love VMware Integrated OpenStack. Here's Why..mp4 4a47008fd2 1198079736 ---- [ 1216960, 1221530 ] 0 VMworld2018EU/VMworld 2018 EU - NFV2917BE - Breaking the Virtual Speed Limit: Data Plane Performance Tuning.mp4 4a8e69ceca 1876155042 ---- [ 1221530, 1228687 ] 0 VMworld2018EU/VMworld 2018 EU - NS3729KE - The NSX Keynote: Building the Network of the Future with the Virtual Cloud Network.mp4 4afe3da96c 1359400160 ---- [ 1228687, 1233873 ] 0 VMworld2018EU/VMworld 2018 EU - PRV1101BE - VxRack SDDC Technical Deep Dive.mp4 4b4f44764c 1223501493 ---- [ 1233873, 1238540 ] 0 VMworld2018EU/VMworld 2018 EU - PRV1161BE - Compliance for the Public Sector and Private Industry.mp4 4b98319d01 834327452 ---- [ 1238540, 1241723 ] 0 VMworld2018EU/VMworld 2018 EU - PRV1277BE - VMware Cloud Foundation & HPE Synergy: SDDC meets Composable Infrastructure.mp4 4bc9ec709d 1321128271 ---- [ 1241723, 1246762 ] 0 VMworld2018EU/VMworld 2018 EU - PRV1337BE - VMware Cloud Foundation: Future Innovations.mp4 4c18ab41ec 1363930739 ---- [ 1246762, 1251965 ] 0 VMworld2018EU/VMworld 2018 EU - PRV1407BES - Build your service business on the OVHCloud.mp4 4c69f7305f 968394450 ---- [ 1251965, 1255659 ] 0 VMworld2018EU/VMworld 2018 EU - PRV1408BES - A journey to the cloud: Getting started migrating your on-premises service.mp4 4ca3afb731 992894074 ---- [ 1255659, 1259447 ] 0 VMworld2018EU/VMworld 2018 EU - PRV1409BES - The OVHCloud: Managed Private cloud powered by VMware.mp4 4cdede13ab 1732346654 ---- [ 1259447, 1266055 ] 0 VMworld2018EU/VMworld 2018 EU - PRV1424BE - Case Study: Mission-Critical SDDC for the Finance Industry.mp4 4d461f96c9 2085582855 ---- [ 1266055, 1274011 ] 0 VMworld2018EU/VMworld 2018 EU - PRV1429BE - vSAN Stretched Clusters & Disaster Recovery simplified by Cloud Foundation.mp4 4dc26f0ed0 1221664092 ---- [ 1274011, 1278672 ] 0 VMworld2018EU/VMworld 2018 EU - PRV1431BE - An Introduction to VMware Validated Designs.mp4 4e0b402c2c 933738387 ---- [ 1278672, 1282233 ] 0 VMworld2018EU/VMworld 2018 EU - PRV1459BE - Strategies for Hybrid Cloud Workload Mobility with VMware Cloud Foundation.mp4 4e42e7e3bf 1965579494 ---- [ 1282233, 1289732 ] 0 VMworld2018EU/VMworld 2018 EU - PRV1463BE - Building the Ultimate Hybrid Cloud with VMware Cloud Foundation.mp4 4eb81040a5 2067125435 ---- [ 1289732, 1297617 ] 0 VMworld2018EU/VMworld 2018 EU - PRV1669BE - VMware Cloud Foundation Real-World Success with Professional Services.mp4 4f33461560 1264429059 ---- [ 1297617, 1302440 ] 0 VMworld2018EU/VMworld 2018 EU - PRV1765BE - Advanced Operations for your VMware Cloud Foundation Based Private Cloud.mp4 4f7ea3bd63 1376210561 ---- [ 1302440, 1307690 ] 0 VMworld2018EU/VMworld 2018 EU - PRV1766BE - Workload Automation in your VMware Cloud Foundation Based Private Cloud.mp4 4fd0ab0be4 1288856739 ---- [ 1307690, 1312607 ] 0 VMworld2018EU/VMworld 2018 EU - PRV1933BER - VMware Cloud Foundation Architecture Deep Dive.mp4 501d7d7087 1321801307 ---- [ 1312607, 1317649 ] 0 VMworld2018EU/VMworld 2018 EU - PRV2121BE - Composable Infrastructure Innovations: Cloud Foundation and HPE Synergy.mp4 506c4686e2 1030849903 ---- [ 1317649, 1321582 ] 0 VMworld2018EU/VMworld 2018 EU - PRV2197BE - VxRail and VMware Validated Designs: Chocolate and Peanut Butter?.mp4 50a9b80c51 640430642 ---- [ 1321582, 1324025 ] 0 VMworld2018EU/VMworld 2018 EU - PRV2201QER - Introduction to VMware Cloud Foundation.mp4 50cfe43e83 1819457137 ---- [ 1324025, 1330965 ] 0 VMworld2018EU/VMworld 2018 EU - PRV2797BE - VMware Validated Design Day Two Operations in Practice.mp4 513c56f4f4 1107447456 ---- [ 1330965, 1335190 ] 0 VMworld2018EU/VMworld 2018 EU - PRV2911BE - VMware Validated Designs Technical Deep Dive.mp4 517e594394 1102224493 ---- [ 1335190, 1339394 ] 0 VMworld2018EU/VMworld 2018 EU - PRV3462BE - VMware Validated Designs and Dell VxRail HCI: Better Together.mp4 51c00be001 1224217919 ---- [ 1339394, 1344064 ] 0 VMworld2018EU/VMworld 2018 EU - PRV3670BE - Standardized, Automated and Adaptive: The Future of Private Cloud is Here.mp4 520903f540 1215116300 ---- [ 1344064, 1348700 ] 0 VMworld2018EU/VMworld 2018 EU - SAI1032BES - Enabling Hybrid Cloud Security for NSX and VMWare Cloud on AWS.mp4 525171294c 1497713595 ---- [ 1348700, 1354413 ] 0 VMworld2018EU/VMworld 2018 EU - SAI1133BE - How to Design Multi-layered Security in the SDDC with NSX Data Center.mp4 52aab67507 1208570908 ---- [ 1354413, 1359023 ] 0 VMworld2018EU/VMworld 2018 EU - SAI1379BES - Ensuring Secure and Successful Deployments of NSX with NETSCOUT Visibility.mp4 52f2bfc923 1823943994 ---- [ 1359023, 1365981 ] 0 VMworld2018EU/VMworld 2018 EU - SAI1527BE - Deep Dive into NSX Data Center Security for Clouds, Containers, and More.mp4 535f76f65d 2165678879 ---- [ 1365981, 1374243 ] 0 VMworld2018EU/VMworld 2018 EU - SAI1851BE - NSX Data Center Security Use Cases, Methodologies, and Tools.mp4 53e08c997c 1118416508 ---- [ 1374243, 1378509 ] 0 VMworld2018EU/VMworld 2018 EU - SAI2026BE - Introduction to NSX Data Center for Security.mp4 54233647f8 1031236972 ---- [ 1378509, 1382443 ] 0 VMworld2018EU/VMworld 2018 EU - SAI2077BE - Context-Aware Micro-Segmentation with NSX Data Center.mp4 5460adb564 1553451690 ---- [ 1382443, 1388369 ] 0 VMworld2018EU/VMworld 2018 EU - SAI2555BE - Accelerate App Security and Availability with vRealize Network Insight.mp4 54bd45800e 1230741384 ---- [ 1388369, 1393064 ] 0 VMworld2018EU/VMworld 2018 EU - SAI2744BE - VMware NSX Data Center Service Insertion: Advanced Network and Security.mp4 5506a11f96 2075106086 ---- [ 1393064, 1400980 ] 0 VMworld2018EU/VMworld 2018 EU - SAI3217BE - Introduction to VMware AppDefense.mp4 558250babc 1226335112 ---- [ 1400980, 1405658 ] 0 VMworld2018EU/VMworld 2018 EU - SAI3219BE - Great Power, Great Responsibility: Least Privilege Security with AppDefense.mp4 55cb691e44 886425245 ---- [ 1405658, 1409039 ] 0 VMworld2018EU/VMworld 2018 EU - SAI3243BE - Use Artificial Intelligence and Machine Learning to Simplify Security.mp4 56003ee4e1 1193575492 ---- [ 1409039, 1413592 ] 0 VMworld2018EU/VMworld 2018 EU - SAI3770BE - Mitigating CPU Security Vulnerabilities - A look at vSphere Mitigations.mp4 5647636925 1418203281 ---- [ 1413592, 1419002 ] 0 VMworld2018EU/VMworld 2018 EU - SEC3730KE - Transforming Security in a Cloud and Mobile World.mp4 569beb79b6 1565658844 ---- [ 1419002, 1424975 ] 0 VMworld2018EU/VMworld 2018 EU - VAP1010BES - Storage Infrastructure for VMware: Software Defined to Workload Optimized.mp4 56f93d8892 1049467181 ---- [ 1424975, 1428978 ] 0 VMworld2018EU/VMworld 2018 EU - VAP1088BE - App Failover on VMware Cloud on AWS Protected by LicenseFortress.mp4 5737cb21bf 642078245 ---- [ 1428978, 1431428 ] 0 VMworld2018EU/VMworld 2018 EU - VAP1095BE - Virtualizing and Tuning Distributed Application Platforms.mp4 575e1077e4 885068037 ---- [ 1431428, 1434804 ] 0 VMworld2018EU/VMworld 2018 EU - VAP1317BE - VDI, HPC and AI on VMware vSphere 6.7 and NVIDIA vGPU.mp4 5792d188e9 971330662 ---- [ 1434804, 1438509 ] 0 VMworld2018EU/VMworld 2018 EU - VAP1425BE - Performance Deep Dive for Demanding Virtual Database Servers.mp4 57ccb6dd4f 1400227129 ---- [ 1438509, 1443851 ] 0 VMworld2018EU/VMworld 2018 EU - VAP1492BE - Performance of SQL Server, Oracle, and SAP Workloads in VMware Cloud on AWS.mp4 58202ca288 1078678564 ---- [ 1443851, 1447965 ] 0 VMworld2018EU/VMworld 2018 EU - VAP1495BE - VMware Virtualization Solutions and Its Benefits in Developing Countries.mp4 586077f6ac 1367868349 ---- [ 1447965, 1453183 ] 0 VMworld2018EU/VMworld 2018 EU - VAP1620BE - Improve App Performance with Micro-Segmentation and Distributed Routing.mp4 58b1fffa69 1359244027 ---- [ 1453183, 1458369 ] 0 VMworld2018EU/VMworld 2018 EU - VAP1820BE - SAP HANA TDI Phase 5: Greater Flexibility in Sizing VMs.mp4 5903046564 1351827490 ---- [ 1458369, 1463525 ] 0 VMworld2018EU/VMworld 2018 EU - VAP1898BE - Virtualize Active Directory the Right Way.mp4 595397a586 1123210665 ---- [ 1463525, 1467810 ] 0 VMworld2018EU/VMworld 2018 EU - VAP1900BE - High-Performance Big Data and Machine Learning on VMware Cloud on AWS.mp4 59968a7b2f 1198794972 ---- [ 1467810, 1472383 ] 0 VMworld2018EU/VMworld 2018 EU - VAP2010BE - Architecting and Deploying Virtualized HPC Clusters.mp4 59ddfea40b 1426069243 ---- [ 1472383, 1477823 ] 0 VMworld2018EU/VMworld 2018 EU - VAP2283BE - How EVONIK Is Running SAP Workload Using Leading SAP and VMware Technology.mp4 5a32febb06 767300469 ---- [ 1477823, 1480750 ] 0 VMworld2018EU/VMworld 2018 EU - VAP2294QE - SAP in the Clouds.mp4 5a60bace7b 1166348156 ---- [ 1480750, 1485199 ] 0 VMworld2018EU/VMworld 2018 EU - VAP2547BE - Licensing Oracle and SQL Server on vSphere.mp4 5aa63fddf7 1344489465 ---- [ 1485199, 1490328 ] 0 VMworld2018EU/VMworld 2018 EU - VAP2708BE - Heard About Mars vs. Oracle? Learn About Oracle Audits from the Experts.mp4 5af66325f0 934832703 ---- [ 1490328, 1493894 ] 0 VMworld2018EU/VMworld 2018 EU - VIN1004BES - What's New in Veeam Availability Suite 9.5 Update 4.mp4 5b2e1b902f 843260487 ---- [ 1493894, 1497111 ] 0 VMworld2018EU/VMworld 2018 EU - VIN1077BES - Infrastructure architecture for modern privacy & security requirements.mp4 5b605eb276 1064878968 ---- [ 1497111, 1501173 ] 0 VMworld2018EU/VMworld 2018 EU - VIN1131BES - SME talk on joint actions between HCL&VMware-Datacenters transformation.mp4 5b9fd775ee 617907162 ---- [ 1501173, 1503530 ] 0 VMworld2018EU/VMworld 2018 EU - VIN1180BE - How VMware IT Upgraded to VMware vSphere 6.7 Without End-User Impact.mp4 5bc4abf9c8 426139082 ---- [ 1503530, 1505156 ] 0 VMworld2018EU/VMworld 2018 EU - VIN1190PES - Lessons Learned on the Journey to the Cloud, the Stories of 3 Architects.mp4 5bde125792 534410929 ---- [ 1505156, 1507195 ] 0 VMworld2018EU/VMworld 2018 EU - VIN1249BER - vSphere Clustering Deep Dive, Part 1: vSphere HA and DRS.mp4 5bfdecce43 1005239113 ---- [ 1507195, 1511029 ] 0 VMworld2018EU/VMworld 2018 EU - VIN1293BE - Ensure Maximum Uptime and Performance of Your vCenter Server Appliance.mp4 5c39d7898c 792776778 ---- [ 1511029, 1514054 ] 0 VMworld2018EU/VMworld 2018 EU - VIN1303BE - vSphere Security Deep Dive: Supporting TPM and Virtual TPM 2.0.mp4 5c691859d6 794726773 ---- [ 1514054, 1517085 ] 0 VMworld2018EU/VMworld 2018 EU - VIN1305BE - vSphere Platform Security Update.mp4 5c9876eb4b 1080493629 ---- [ 1517085, 1521207 ] 0 VMworld2018EU/VMworld 2018 EU - VIN1370BE - How to Prepare for VCP 6 - Data Center Virtualization.mp4 5cd8ddf188 851036959 ---- [ 1521207, 1524453 ] 0 VMworld2018EU/VMworld 2018 EU - VIN1622QE - Dear IT, You Gotta Modernize Your Data Center. Let vSphere Help..mp4 5d0b97bca7 609440322 ---- [ 1524453, 1526778 ] 0 VMworld2018EU/VMworld 2018 EU - VIN1633BER - Introducing vSphere Platinum and vSphere 6.7 Update 1.mp4 5d2feb0ee9 1335558699 ---- [ 1526778, 1531873 ] 0 VMworld2018EU/VMworld 2018 EU - VIN1641BE - Focus, Plan, and Execute: A Deep Dive into Your vSphere Upgrade Journey.mp4 5d7f861114 831761817 ---- [ 1531873, 1535046 ] 0 VMworld2018EU/VMworld 2018 EU - VIN1759BE - Extreme Performance Series: vCenter Performance Deep Dive.mp4 5db119bead 1150028279 ---- [ 1535046, 1539433 ] 0 VMworld2018EU/VMworld 2018 EU - VIN1782BE - Extreme Performance Series: vSphere Compute and Memory Schedulers.mp4 5df5a5c8a4 987867624 ---- [ 1539433, 1543201 ] 0 VMworld2018EU/VMworld 2018 EU - VIN1859BE - vSphere SSO Domain Architecture Unplugged.mp4 5e3087728c 1502025564 ---- [ 1543201, 1548931 ] 0 VMworld2018EU/VMworld 2018 EU - VIN1909BE - End of Support: Taking Advantage of the vSphere Lifecycle to Transform.mp4 5e8a0e89e8 952083424 ---- [ 1548931, 1552563 ] 0 VMworld2018EU/VMworld 2018 EU - VIN1972BE - Mastering the VMware Tools Lifecycle in Your VMware vSphere Data Center.mp4 5ec2ce2dc8 1012070771 ---- [ 1552563, 1556424 ] 0 VMworld2018EU/VMworld 2018 EU - VIN1991BE - Technical Overview of VMware ESXi Patching and Upgrading.mp4 5eff21273b 976958308 ---- [ 1556424, 1560151 ] 0 VMworld2018EU/VMworld 2018 EU - VIN2047BE - Persistent Memory with vSphere 6.7: Primary Use Cases and User Workflow.mp4 5f395c5a9f 1149375444 ---- [ 1560151, 1564535 ] 0 VMworld2018EU/VMworld 2018 EU - VIN2062BE - vSphere Networking: What's New and What's Next.mp4 5f7dde6e73 903185387 ---- [ 1564535, 1567980 ] 0 VMworld2018EU/VMworld 2018 EU - VIN2067BE - Accelerating & Optimizing Machine Learning on vSphere leveraging NVIDIA GPU.mp4 5fb3b3f25e 1019459855 ---- [ 1567980, 1571869 ] 0 VMworld2018EU/VMworld 2018 EU - VIN2186BE - What's New with vSphere 6.7 Core Storage.mp4 5ff077ab6d 855988309 ---- [ 1571869, 1575135 ] 0 VMworld2018EU/VMworld 2018 EU - VIN2259BE - vSphere DRS Enhancements: vSphere 6.7 and Beyond.mp4 60237d03c2 1414355153 ---- [ 1575135, 1580530 ] 0 VMworld2018EU/VMworld 2018 EU - VIN2369BES - Intel's Exciting Persistent Memory Technologies and VMware vSphere.mp4 6077ca5c93 1016493729 ---- [ 1580530, 1584408 ] 0 VMworld2018EU/VMworld 2018 EU - VIN2416BE - Core Storage Best Practices.mp4 60b460d334 1242908760 ---- [ 1584408, 1589149 ] 0 VMworld2018EU/VMworld 2018 EU - VIN2463BE - Deciphering Successful vSphere Certificate Implementation.mp4 60fe761b8c 1133264327 ---- [ 1589149, 1593472 ] 0 VMworld2018EU/VMworld 2018 EU - VIN2527BE - Top 10 Automation Requests and How You Can Save Time.mp4 6142025953 1483697588 ---- [ 1593472, 1599132 ] 0 VMworld2018EU/VMworld 2018 EU - VIN2626BE - VMware REST APIs, Python, and You: A Coding Primer.mp4 619a71c707 770527879 ---- [ 1599132, 1602071 ] 0 VMworld2018EU/VMworld 2018 EU - VIN2642BE - Don't Sleep on RESTful APIs for vSphere.mp4 61c85f198e 738421458 ---- [ 1602071, 1604888 ] 0 VMworld2018EU/VMworld 2018 EU - VIN2650BE - Designing for the Unexpected: Delivering IT on a Boat with VMware Horizon.mp4 61f4628460 947453662 ---- [ 1604888, 1608502 ] 0 VMworld2018EU/VMworld 2018 EU - VIN2652BE - What's New with vSphere.mp4 622cdb833e 903121569 ---- [ 1608502, 1611948 ] 0 VMworld2018EU/VMworld 2018 EU - VIN2660BE - Make Your vSphere 6.7 Upgrade Bulletproof.mp4 6262b00ddf 598486429 ---- [ 1611948, 1614231 ] 0 VMworld2018EU/VMworld 2018 EU - VIN2863QE - Business Value of Data Center Virtualization and Private Cloud.mp4 62865c3b7c 832431699 ---- [ 1614231, 1617406 ] 0 VMworld2018EU/VMworld 2018 EU - VIN2992BE - vSphere Client Roadmap: Past, Present, and Future.mp4 62b7fa21cf 960569305 ---- [ 1617406, 1621070 ] 0 VMworld2018EU/VMworld 2018 EU - VIN3353BE - Art of Managing SSL Certificates in vSphere: Troubleshooting, Tip & Tricks.mp4 62f13b41a8 713905558 ---- [ 1621070, 1623794 ] 0 VMworld2018EU/VMworld 2018 EU - VIN3396BE - A Deep Dive into Storage Policy-Based Management for Managing SDS.mp4 631bc8973e 1158853617 ---- [ 1623794, 1628214 ] 0 VMworld2018EU/VMworld 2018 EU - VIN3776BES - Virtual Volumes Deep Dive with Pure Storage.mp4 6360db4b2f 762090905 ---- [ 1628214, 1631121 ] 0 VMworld2018EU/VMworld 2018 EU - VIN3820QE - Transforming Virtual Infrastructure with All-Flash Storage.mp4 638e47e0c8 1148748386 ---- [ 1631121, 1635504 ] 0 VMworld2018EU/VMworld 2018 EU - WIN1236BE - The Secret Sauce Behind VMware's Internal Horizon Desktop Deployments.mp4 63d2c0632a 2072185498 ---- [ 1635504, 1643408 ] 0 VMworld2018EU/VMworld 2018 EU - WIN1717BE - Design Deep Dive: Cloud Burst with Horizon 7 on VMware Cloud Powered by AWS.mp4 644e436dc4 941312495 ---- [ 1643408, 1646999 ] 0 VMworld2018EU/VMworld 2018 EU - WIN1824QE - How to Deploy a Desktop Solution in One Hour with Horizon Cloud on Azure.mp4 64865eb7b3 1362419077 ---- [ 1646999, 1652196 ] 0 VMworld2018EU/VMworld 2018 EU - WIN2006BE - Optimizing VMware Horizon and NVIDIA vGPU for the Best VDI User Experience.mp4 64d7939538 1188622489 ---- [ 1652196, 1656731 ] 0 VMworld2018EU/VMworld 2018 EU - WIN2384BE - Solve Your Citrix Problems with VMware Technologies.mp4 651e6c85d1 1485679784 ---- [ 1656731, 1662398 ] 0 VMworld2018EU/VMworld 2018 EU - WIN2537BE - What's New in Horizon 7.mp4 6576fa3279 1454938783 ---- [ 1662398, 1667948 ] 0 VMworld2018EU/VMworld 2018 EU - WIN3048BE - What's New with Horizon Cloud on Microsoft Azure.mp4 65cdb2cd18 902989525 ---- [ 1667948, 1671393 ] 0 VMworld2018EU/VMworld 2018 EU - WIN3100BE - Understand and Leverage the Latest Enhancements with Blast Extreme.mp4 66038553ed 1188797786 ---- [ 1671393, 1675928 ] 0 VMworld2018EU/VMworld 2018 EU - WIN3213BE - Leverage Intelligence and Monitoring for Virtual Desktops and Apps.mp4 664a60f147 582793059 ---- [ 1675928, 1678151 ] 0 VMworld2018EU/VMworld 2018 EU - WIN3450BE - Best Practices for Deploying Horizon on vSAN and VxRail.mp4 666d1da8aa 1849449865 ---- [ 1678151, 1685206 ] 0 VMworld2018EU/VMworld 2018 EU - WIN3451BE - Architecting Horizon 7 Enterprise: The Official Reference Architecture.mp4 66db5a0633 589833535 ---- [ 1685206, 1687456 ] 0 VMworld2018EU/VMworld 2018 EU - WIN3480BE - Beyond Horizon 7: Moving to a Digital Workspace with Workspace ONE.mp4 66fe822b72 1100007943 ---- [ 1687456, 1691652 ] 0 VMworld2018EU/VMworld 2018 EU - WIN3486BE - Horizon 7 on VMware Cloud on AWS: What You Need to Know.mp4 674012f579 1115200696 ---- [ 1691652, 1695906 ] 0 VMworld2018EU/VMworld 2018 EU - WIN3492BE - JMP: The Easy Button for Delivering and Managing Virtual Desktops and Apps.mp4 67828b9231 953412764 ---- [ 1695906, 1699543 ] 0 VMworld2018EU/VMworld 2018 EU - WIN3503PE - Customer Panel: What You Need to Know About Deploying VDI.mp4 67bb5f7ecd 760880683 ---- [ 1699543, 1702446 ] 0 VMworld2018EU/VMworld 2018 EU - WIN3535BE - Is VDI Dead?.mp4 67e8b99cf8 1865707914 ---- [ 1702446, 1709563 ] 0 VMworld2018EU/VMworld 2018 EU - WIN3706PES - Become the office hero with Dell & VMware desktop virtualization solutions.mp4 web seeds: ```
FranciscoPombal commented 4 years ago

@Chocobo1 libtorrent 1.2.2 was recently released with a feature/fix that should enable a relatively simple fix for these kinds of issues: add torrent_info constructor overloads to control torrent file limits

xavier2k6 commented 4 years ago

just tried to add torrent file in OP with 4.2.0 beta1 & issue remains.

also this torrent here has same issues 62.1MB

Torrent Info Output

Total Size File Count Pieces Count Piece Length
747GiB 23878 3062828 256KiB
FranciscoPombal commented 4 years ago

@xavier2k6 For the issue to be fixed: 1 - qBittorrent needs to use libtorrent >= 1.2.2 2 - the defaults for torrent file limits used in qBittorrent should be increased using the functionality introduced in libtorrent 1.2.2 3 - (optional) qBittorrent should expose a way to configure the torrent file limits parameters, so that users can still work around exceptionally large torrents that exceed the default limits. If this is implemented then step 2 can be ignored

IIRC so far we only have step 1.

jasonsyoung commented 4 years ago

I have written an implementation for this. I am not an expert in libtorrent or c++, so can someone take a look at my code? I have tested it locally. Here is the branch: https://github.com/jasonsyoung/qBittorrent/tree/load_torrent_limits

arvidn commented 4 years ago

@jasonsyoung it would be easier to review if you would create a pull request from that branch. You could still prefix the name with WIP: to make it clear you don't consider it done yet.

FranciscoPombal commented 4 years ago

The defaults in libtorrent are being raised: https://github.com/arvidn/libtorrent/pull/4815. This is enough for OP's torrent to work OOTB, if qBittorrent is compiled with a version of libtorrent recent enough to include that patch. Obviously this does not solve the more general problem that these limits should be configurable in qBIttorrent.

arvidn commented 4 years ago

even if they aren't configurable by end users, it might make sense for qbt to raise the limits it's using. knowing that you run on a desktop and that only humans add torrents might warrant greater limits. (and maybe the limits should stay in place for RSS or other automatically added torrents)

FranciscoPombal commented 4 years ago

@arvidn

even if they aren't configurable by end users, it might make sense for qbt to raise the limits it's using. knowing that you run on a desktop and that only humans add torrents might warrant greater limits. (and maybe the limits should stay in place for RSS or other automatically added torrents)

That is possible, but there is definitely the need for the distinction between manually and automatically added torrents. Many people run qbittorrent-nox and just add torrents automatically.

xavier2k6 commented 3 years ago

With qBittorrent 4.3.0.1 which uses libtorrent 1.2.10 I am able to add VMworld2018EU.torrent from https://github.com/qbittorrent/qBittorrent/issues/10913#issue-466822591

I am still unable to add Tutorials.torrent from https://github.com/qbittorrent/qBittorrent/issues/10913#issuecomment-548953007

jasonsyoung commented 3 years ago

With qBittorrent 4.3.0.1 which uses libtorrent 1.2.10 I am able to add VMworld2018EU.torrent from #10913 (comment)

I am still unable to add Tutorials.torrent from #10913 (comment)

The UI needs to be changed to support larger torrents. I have a branch that fixes this, but I was not able to get it completely working so it never got merged. Maybe a Dev will one day take it over :/.

FranciscoPombal commented 3 years ago

https://github.com/qbittorrent/qBittorrent/issues/12029 is focused on solving the general problem.