Category Archives: Cloud Storage

Google Drive vs Dropbox vs OneDrive: Which cloud solution is right for you? – TechRadar

Trying to assess the best cloud storage for your needs is difficult enough when looking at two different solutions - evaluating the strengths and weaknesses of three platforms adds further complexity. However, given the sheer number of cloud solutions on the market today, from cloud document storage to photo cloud storage, it can be useful to broaden comparisons to encompass a variety of cloud solutions. Thats what weve done here, coming up with a winner in a close three-way fight: Google Drive vs Dropbox vs OneDrive.

Each of these solutions represents some big hitters in the cloud market. Users will also have to factor in their associated integrations - which is where Google Drive and Microsoft OneDrive may have significant advantages. Having said that, Dropbox is an old hand when it comes to cloud storage, having launched all the way back in 2007. No tech platform lasts as long as that unless it can offer some serious advantages to users - especially with the amount of competition around.

Of course, if you want to dig a little deeper into the best bits of each platform, then youre in luck. Our Google Drive cloud storage review, Dropbox cloud storage review, and Microsoft OneDrive cloud storage review will provide more detailed insights into each cloud storage solution.

The features on offer are some of the most important reasons to go with one particular cloud storage solution over another. Google Drive offers file versioning, advanced search, offline access, and a variety of preview and layout options but its close integration with other Google tools may be its most popular feature. Integrated access to Docs, Sheets and Slides via an intuitive web app means that this is more than just storage - its a productivity suite too.

Dropbox hosts everything in a designated Dropbox folder, whether you are a Windows or macOS user. Boasting its own Google Docs clone, Paper, Dropbox does its best to fight off competition but the fact that you can't include network drives or external drives is disappointing. The mobile versions of Dropbox do offer background support for photo library backup, however.

Microsoft OneDrive works similarly to other major cloud platforms, automatically syncing files once youve specified those you want to be backed up. As with the cloud offerings from other major tech players, OneDrive works best as part of a broader digital ecosystem - in this case, Windows. In terms of versioning, OneDrive can bring back previous versions of your files from as far back as 30 days ago.

In an effort to find out which of the three cloud storage solutions offered the best performance, we compared them in terms of speed when uploading and then downloading the same 1GB test file. All three solutions performed well, with not much to choose between them.

OneDrives download speed was a little on the slow side, taking around seven minutes, but it did perform better in terms of uploads. If speed is essential, then Dropbox was the winner, delivering an impressive sub-one-minute time. It is worth noting, however, that all three cloud storage clients run in the background, so even if you have a large file to upload or download, this can take place without hindering your productivity too much.

In addition, please be aware that the speeds we measured are only an indication and many users will find that their results vary with different broadband connections. As such, the main takeaway should be that all three cloud storage solutions offer decent speeds, with only the heaviest users likely to notice a difference.

Unfortunately, glitches and troubleshooting are a fact of life when it comes to any software solution - and cloud storage is no exception. When comparing the three platforms, all of them offer the basic level of support you would expect but there are some nuances. OneDrive, for example, doesnt make it the easiest for users to access email and phone support channels, so they may reluctantly decide to stick with the relevant self-help articles - which are admittedly extensive.

Similarly, Dropbox also has plenty of self-help articles for users in need of support. Plus, it does make finding real-time support a little easier. Theres also an automated chat service called dropbot. Google Drive does only make email, phone, and live chat support available to its paying customers, but this is unlikely to be a major issue as business users are likely to need more than the 15GB of storage provided through the free plan.

Although theyre unlikely to be of much interest to serious users, Google Drive, Dropbox, and OneDrive all offer free plans. Microsoft offers 5GB of space for its free plan, Google Drive an impressive 15GB, and Dropbox an underwhelming 2GB.

In terms of the available paid plans, business users will have to fork out between $5 (3.80) and $10 (7.50) per month with OneDrive for access to cloud storage, or between $6 (4.50) and $12.50 (9.40) per month for access to Office 365 apps. Dropbox business plans cost between $15 (12) and $50 (40) per user per month. Google Drive, meanwhile, costs either $1.99 (1.59), $2.99 (2.49), or $9.99 (7.99) per month for 100GB, 200GB, or 2TB respectively, or users can subscribe to Google One on an annual basis.

Deciding between Google Drive, Dropbox, and Microsoft OneDrive ultimately depends on your specific needs. Dropbox may win in terms of performance but it doesnt integrate quite as neatly with other tools - something that Google Drive and OneDrive excel at for their respective operating systems.

All things considered, wed probably have to recommend Google Drive - particularly if youre a big Android or Chromebook user. Things get a little more complicated if youre a Windows fan or if speed is a priority, so maybe those free packages could be useful for getting some first-hand experience with each solution.

The rest is here:
Google Drive vs Dropbox vs OneDrive: Which cloud solution is right for you? - TechRadar

A DevOps Guide to Kubernetes Storage on AWS – Spiceworks News and Insights

Kubernetes storage is useful for managing multiple forms of persistent and non-persistent storage in a cluster to cater to both stateful and stateless workloads in a containerized environment. Proper management of Kubernetes storage options allows us to dynamically provision the most suitable storage resources for multiple applications with minimal administration overhead.

There are various storage concepts you can leverage in Kubernetes, as well as typical use cases and pro tips for running Kubernetes on AWS from a storage perspective.

The storage architecture for Kubernetes is based on volumes as the core abstraction. Volumes can be ephemeral (non-persistent) or persistent, depending on their intended use cases. Kubernetes also allows for the dynamic provisioning of storage resources using volume claims.

Volumes are the basic storage entities in Kubernetes. A process in the container sees a filesystem view, which includes a root filesystem that matches the initial contents of a container image and the volumes mounted inside the container (if defined within the container specifications).

Volumes are mounted at specified paths within the container image, so you must independently specify the mount path of each volume used for each container in the pod. While volumes cannot be mounted within other volumes, a volume can be shared between multiple containers in a pod using sub-paths within the volume mount paths in the pod specifications.

Kubernetes supports multiple storage volumes, including local storage devices, network file systems (NFS), and cloud storage services like AWS Elastic Block Store (EBS) volumes. Developers can also create custom storage plugins to support specific storage systems deployed on Kubernetes clusters as extensions.

While support for cloud storage services is currently available within the core Kubernetes project, the Kubernetes Storage Special-Interest Group (k8s-sig-storage) is slowly shifting toward providing storage support through external Container Storage Interfaces (CSIs). For example, the native Amazon Elastic Block Store volume has been deprecated as of v1.17 in favor of the Amazon EBS CSI.

Unless specified within the container specifications, each container in a pod is created with an ephemeral volume by default in Kubernetes. This means there is a temporary storage directory on the machine that hosts the pod. Ephemeral volumes are removed after the pod ceases to exist.

The data in ephemeral volumes is safe in the case of a container crashing, as this does not remove a pod from a node. However, the pod with the crashed container may subsequently be deleted due to rescheduling or any reason that causes the pod to be evicted to another host, causing the data in the ephemeral volumes to be removed in the process.

Kubernetes uses persistent volumes, and persistent volume claims to allow pods to use storage in a portable manner while abstracting its implementation away from how storage is consumed.

A persistent volume (PV) is a storage entity within a cluster that is either allocated manually by an administrator or dynamically allocated based on a storage class. PVs define the details of the storage implementation, such as capacity, access modes, storage class, and reclaim policy. As they are cluster resources, PVs are not portable between clusters.

A persistent volume claim is a storage request used by developers to describe an applications storage requirements, for example, a containers storage size and access mode. Since the storage request is separate from the storage creation, Kubernetes can enforce access control mechanisms based on the container or pod credentials and the available PVs in the cluster.

A PVs lifecycle is independent of pods. The lifecycle of a PV and PVC consists of 5 stages:

For Kubernetes on AWS, EBS volumes are persistent volumes hosted in the same region and availability zone as the EC2 instance nodes running on the EKS cluster. When a pod is removed from an EC2 instance node on the EKS cluster, the data in the EBS volume mounted to the pod is persisted and the volume is unmounted.

Cluster administrators can configure storage classes in the cluster and assign PVs to each class. Each class represents a particular type of storage that users can request in their PVCs, depending on varying workload requirements within the cluster.

Dynamic volume provisioning is a feature in Kubernetes that lets you create storage volumes on-demand without requiring cluster administrators to create new ones manually.

Each storage class specifies a volume plugin called a provisioner and the parameters required for it to allocate storage volumes dynamically. When a user configures a storage class in their PVC, the provisioner automatically creates a storage volume based on the required specifications.

While some provisioners are internal and shipped alongside the Kubernetes project, you can also use external provisioners by following the specifications defined by Kubernetes.

A Container Storage Interface (CSI) is a Kubernetes extension that provides an extensible plugin architecture for vendors to create compatible storage plugins.

There are custom storage plugins in the form of CSI drivers for arbitrary storage systems external to your Kubernetes project (e.g., Amazon Elastic File System).

After you deploy the CSI driver on the Kubernetes cluster, you can use these CSI volumes with other Kubernetes storage API objects such as PVs and storage classes. For example, you can create a storage class that references the CSI provisioner, assign them to PVs, and reference the PVs in PVCs to mount the CSI volumes to a pod.

With the core Kubernetes projects gradual shift toward distributing control over the provisioning of non-native storage to the respective providers, external vendor-based CSI drivers are currently the preferred approach for managing the lifecycle of the external storage system in Kubernetes clusters. As part of this gradual shift, numerous migration features are slowly being released within the core project to ease the transition from the in-tree storage plugin to the corresponding vendor-based CSI driver.

With various options available for Kubernetes storage, you need to know which type to choose for different use cases.

For transient applications that require data storage (e.g., applications that extract read-only input data in files), you can use ephemeral volumes for storing data within the lifetime of the pod without being limited to the location and availability of some persistent volume.

Persistent volumes will store data beyond the lifetime of the pod for applications requiring data persistence across restarts (such as a database).

For use cases that require managing storage for various workloads within the cluster, you can opt for storage classes with various storage levels, backup policies, or any arbitrary policies defined by cluster administrators.

When it comes to running Kubernetes on AWS from a storage perspective, there are five pro tips you should keep in mind.

Using PVCs in the container config as part of the deployment IaC template lets users request persistent storage across clusters. This, in turn, enables storage configuration portability that is not tightly coupled with cluster resources. This tip applies to ephemeral Amazon EKS clusters created on-demand and Amazon EKS clusters deployed across multiple regions and availability zones.

Including PVs in the container, config is not recommended if you want to avoid tight coupling with a specific volume and prevent failure in binding storage volume when instantiating the container in the pod.

Instead, use PVCs as volumes while the cluster provisions storage by finding the PV bound to the claim and mounting that volume to the pod.

Cluster administrators can specify a default storage class for PVCs that do not have specific requirements for the storage class they need to bind to; they can also create separate storage classes that represent varying workload requirements. This allows users to request storage in PVCs based on the name of the storage class without manually specifying the volume within each pods specifications. Otherwise, PVCs without a specified storage class will fail to provide a PV.

Cluster administrators can provide users with a storage class when instantiating the config template. If the user provides a storage class name, the value should be defined in the StorageClassName within the PVC specifications so that the PVC can match the correct storage class. Otherwise, a PV can be automatically provisioned for the user using the default storage class in the cluster.

When monitoring your Kubernetes cluster with Prometheus and configuring alerting rules via Alertmanager, keep an eye out for PVCs that remain unbound for a prolonged period. This could mean your cluster lacks dynamic storage support or a storage system, where users wont be able to deploy configs requiring PVCs. If this is the case, the user should create a PV that matches the requirements defined in the PVC.

Implementing best practices for Kubernetes storage enables you to apply optimal storage configurations and dynamically provision suitable storage resources to multiple containerized applications without significant administrative overhead.

To reap the benefits of Kubernetes storage options on AWS, you can gradually adopt these best practices by creating storage classes and enabling dynamic volume provisioning in the cluster. You can choose suitable storage types for your containerized workloads based on the given use case.

Which best practices have you considered for Kubernetes storage on AWS? Let us know on LinkedIn, Twitter, or Facebook. Wed love to hear from you!

Read more here:
A DevOps Guide to Kubernetes Storage on AWS - Spiceworks News and Insights

NetApp Teams with VMware, AWS to Help Customers Modernize and Scale Enterprise Workloads on the Cloud – Express Computer

NetApp a global, cloud-led, data-centric software company, in collaboration with VMware, Inc. and Amazon Web Services (AWS), announced the general availability of Amazon FSx for NetApp ONTAP with VMware Cloud on AWS, the first and only native AWS cloud storage service certified and supported as a supplemental datastore for VMware Cloud on AWS.

With this new datastore solution, enterprises can quickly, easily, and cost-effectively move their enterprise, data-demanding workloads to VMware Cloud on AWS. This allows organizations to scale cloud storage independent of cloud computing to optimize costs, deploy new modern applications with the speed and scalability of the cloud, and maximize the value of their existing IT investments. Additionally, organizations can gain access to the rich data management, protection, and efficiency benefits of ONTAP utilized by nearly twenty thousand VMware customers running on-premises.

Our strong relationship, deep integration, and joint innovation with both VMware and AWS hit another milestone, which helps make it easier for organizations to efficiently move enterprise workloads to the cloud, said Phil Brotherton, Vice President, Solutions & Alliances at NetApp. VMware customers running on NetApp or non-NetApp storage on-premises can now access the enterprise-class public cloud storage services and features of ONTAP, all running on AWS, as the first certified and supported supplemental datastore to VMware Cloud on AWS.

The majority of enterprises today run workloads on a VMware platform. Whether that is on-premises or in VMware Cloud on AWS, they want to be able to leverage consistency in operations and architecture, said Narayan Bharadwaj, Vice President, Cloud Solutions at VMware. AWS, NetApp, and VMware are giving customers the flexibility to buy and configure cloud storage independent of computing to meet the needs of a wide variety of enterprise applications. Our co-innovation will enable customers to move enterprise workloads to the cloud to cost-optimize and better scale their environments.

The strong collaboration between NetApp, VMware, and AWS is enabling organizations to innovate with greater speed and efficiency while minimizing cost, giving them greater freedom to move workloads between on-prem and multi-cloud environments, said Sanjay Rohatgi, Senior Vice President and General Manager, NetApp Asia Pacific & Japan. We look forward to working with customers across the region to accelerate their move to the cloud and in turn, spur the further transformation of their business.

New benefits from this certified and supported offering include improved:

In addition, partners of NetApp, VMware, and AWS can benefit from this innovation to expand their current offerings around VMware Cloud in multiple ways:

As a leading multi-brand provider of full stack IT solutions, our customers rely on us to deliver solutions and services to help them manage their most data-demanding workloads, said Troy Brick-Margelofsky, Digital Infrastructure Team Lead at CDW. With Amazon FSx for NetApp ONTAP as a certified and supported datastore for VMware Cloud, we can now help customers move workloads onto the cloud quickly and efficiently, saving them time, money, and resources with the added benefit of integration with the complete NetApp portfolio.

Amazon FSx for NetApp ONTAPprovides fully managed shared storage on AWS with the popular data access and management capabilities of ONTAP. The solution allows organizations to easily migrate applications and run them on AWS, with ONTAPs enterprise-grade storage workflows and data management capabilities, regardless of their on-premises storage provider.

Amazon FSx for NetApp ONTAP supplemental datastore for VMware Cloud on AWS is available.

View post:
NetApp Teams with VMware, AWS to Help Customers Modernize and Scale Enterprise Workloads on the Cloud - Express Computer

Privacy-Focused Alternatives to Google Services for Tax Pros – Bloomberg Tax

Google, which started as a simple search engine in 1997, is now a major player in just about every facet of our digital lives. A commensurate increase in scrutiny has followed. From data privacy issues to antitrust claims, the Do No Evil company has been accused of myriad unsavory practices. On top of that, it has been known to somewhat abruptly cancel services and products.

Owing in part to these trials and tribulations, there are several services now seeking to draw customers away from Google. The chief value add in many of them is privacy: limited data collection and retention and improved encryption. This should be music to tax professionals ears, as it is incumbent on us to safeguard not only our own data but also our clients data. We dont keep our hard copy tax return documentation in a storage location where third parties have access, so why would we hold our digital retention to less stringent standards?

In light of this, please consider this short primer on privacy-focused alternatives to the Google offerings frequently used by tax professionals. Most of these services either wont have a free tier or have a free tier only for limited personal use. In many cases, they are substantially more expensive, especially for heavy users. One thing to note is that when youre not paying for a service, the company is monetizing the service somehow. And more often than not, youre a product being packaged and sold to an advertiser.

Googly Eyes on Cracked Sidewalk Making a Smiley Face

Photographer: Stock photo via Getty Images

If Google has one banner product, its the search engine. Truth be told, if youre using a modern browser, your connection is secure, and you arent signed in to a Google account that is keeping track of your search history, you dont have too much to worry about when performing the odd search here or there. All the same, if youre beefing up security at your house, and you install new locks on all the doors and a new alarm system, do you leave a window open just because its mostly out of reach?

The clear alternative to Google Search is DuckDuckGo, which doesnt track searches or tie an individual to a specific search query. And the search results are pretty darn good. DuckDuckGo has been around since 2008 and sees about 3 billion monthly searches. It monetizes by showing ads tied to the individual search that is performed rather than by assembling a dossier on a user and showing ads relevant to the users perceived interests.

Nonetheless, care should be taken when running searches that contain identifiable information for a client. Thought should be given as to what kind of picture could be painted by an aggregation of all the searches you run that contain a given clients nameyour research might be giving more away than you realize.

If Google has a product that rivals its search in ubiquity, its Gmail. Privacy-focused folks may remember that in 2017, Google had a bit of a scandal when it was revealed the company scanned the content of emails to better target advertisements to customers. For ordinary email users, that is a privacy violation. For professionals who may have other peoples personal and financial information in their inboxes, that might be an ethics problem.

Luckily, there is no shortage of Gmail alternatives, and many have privacy as a top line feature. Among the most oft-recommended services is Tutanota, a service out of Germany that boasts end-to-end encryption. This means, at least in theory, no one can read the contents of your inbox. Similarly, Proton Mail encrypts everything related to your account and signs your emails using PGP (Pretty Good Privacy) keys so recipients can be certain an email from you is indeed an email from you.

When client data is sent by email, the email itself and any attachments that contain personal information should be encrypted and put behind a password, regardless of what email service you use. You dont know who may be listening in on the receiving end.

Google Sheets is a popular tool with folks who spend their days crunching numbers but has many of the same privacy concerns tied to other Google services. Someone who has access to your Gmail account has access to your Sheets and anything else stored in the larger Google Drive service. A spreadsheet that is accessible from any browser can be useful for tracking client data, and there are even templates for doing things like estimating quarterly tax paymentsbut convenience comes with a security tradeoff.

Many privacy-focused users are looking at services such as CryptPadnot just because it claims end-to-end encryption and is open source, but simply because keeping everything in the Google ecosystem seems a bit like that old saw about eggs and baskets. CryptPad allows users to remain completely anonymous, which may reduce ones risk of exposing client data in a targeted attack.

The use of Google Drive grants relatively permissive terms of use to Google for your documents. As free cloud hosts go, that isnt bad, but it may be a nonstarter for folks that need to store private or sensitive information. Additionally, and as mentioned above, the tying together of the various Google services behind one Google account is convenient but creates one point of entry for an attacker to gain access to your entire digital world.

Finding alternative private cloud providers to the big players (such as Google Drive, Microsoft OneDrive, and Dropbox) is not as simple as with email and spreadsheets. The big players are best in a position to provide storage services for rates that reflect their ability to pay for storage at scale. As such, the privacy-focused answer for using cloud storage is a bit different from the above.

As with all things, inexpensive storage comes with a tradeoff for tax professionals: file retention and destruction issues. The more cloud storage you have, the less motivated by space constraints you will be to periodically prune your client data, and that may be a problem when client data is retained for periods longer than necessary.

In sum, use one of the major players, but encrypt your data prior to uploading it and regularly delete client data you no longer need to retain. Cryptomator offers an open source and free tool that streamlines the process. The result isnt perfectwith enough time, any encryption method can be crackedbut its the best solution that isnt simply not using cloud services.

If the above hasnt convinced you to make a privacy move, at least make sure you are using a secure password for Google that isnt used anywhere else, and turn on two-factor authentication. If possible, do not have your two-factor authentication codes sent by SMS to your cellphone, and use a code-generating application like Google Authenticator or Authy. If you do use SMS to receive your codes, call your cellphone provider and ask for a PIN code on your account for all changes.

Finally, when handling sensitive informationespecially someone elsesbe thoughtful about when, where, and why you add a piece of data to the cloud. Best practices for data backup include local and off-site backups. Your clients wont thank you when their data isnt divulged in a breach, because that would be weird, but you can sleep soundly knowing that you arent going to have to have an uncomfortable conversation with them the next time a big breach makes the news.

This is a regular column from tax and technology attorney Andrew Leahey, principal at Hunter Creek Consulting and a sales suppression expert. Look for Leaheys column on Bloomberg Tax, and follow him on Twitter at @leahey.

Read the original post:
Privacy-Focused Alternatives to Google Services for Tax Pros - Bloomberg Tax

Hammerspace Named a 2022 Sample Vendor by Gartner – Business Wire

SAN MATEO, Calif.--(BUSINESS WIRE)--Hammerspace, the pioneer of the Global Data Environment, today announced that it has been recognized as a Sample Vendor in the 2022 Gartner report Hype Cycle for Storage and Data Protection Technologies. [1]

According to Gartner, This Hype Cycle focuses on emerging innovative storage and data protection technologies and evaluates business impact, adoption rate and maturity level to help infrastructure and operations leaders build adaptable and future-ready storage, and data protection platforms for changing business needs. By 2026, large enterprises will triple their unstructured data capacity stored as file or object storage on-premises, at the edge or in the public cloud, compared to 2022.

Hammerspace is honored to be named a Sample Vendor by Gartner in the recent Hype Cycle for Storage and Data Protection Technologies Report. Hammerspace is delivering the innovation to provide decentralized businesses with a Global Data Environment powers data-hungry AI, machine learning, and next-gen applications while delivering remote high-performance, local access of data to remote workers, said David Flynn, Founder and CEO of Hammerspace. I believe it is an honor and validation of our strategy to be recognized as a Sample Vendor for both Hybrid Cloud Storage and Management Software-Defined Storage.

Hammerspace delivers the worlds first and only Global Data Environment, breaking down the boundaries of data access for users and applications anywhere in the world to create, process, store, and protect data on any existing data center or preferred cloud infrastructure. Decentralized organizations with distributed infrastructure and data struggle with how to power data-driven projects. Hammerspace gives users and applications local, read/write access to all of their file data across all silos and locations based upon their permission while providing IT managers the ability to manage all their data and storage resources globally, without interrupting access to users and applications, and without being overwhelmed with the complexity of silo-based point solutions for data services.

_______________

[1] Gartner Hype Cycle for Storage and Data Protection Technologies Authors: Melissa Davis, Gary Olliffe/Published July 25, 2022

Disclaimer

Gartner does not endorse any vendor, product or service depicted in its research publications, and does not advise technology users to select only those vendors with the highest ratings or other designation. Gartner research publications consist of the opinions of Gartner's research organization and should not be construed as statements of fact. Gartner disclaims all warranties, expressed or implied, with respect to this research, including any warranties of merchantability or fitness for a particular purpose.

About Hammerspace

Hammerspace delivers a Global Data Environment that spans across on-prem data centers and public cloud infrastructure enabling the decentralized cloud. With origins in Linux, NFS, open standards, flash and deep file system and data management technology leadership, Hammerspace delivers the worlds first and only solution to connect global users with their data and applications, on any existing data center infrastructure or public cloud services.

GARTNER and HYPE CYCLE are registered trademarks and service marks of Gartner, Inc. and/or its affiliates in the U.S. and internationally and are used herein with permission. All rights reserved. Gartner does not endorse any vendor, product or service depicted in its research publications, and does not advise technology users to select only those vendors with the highest ratings or other designation. Gartner research publications consist of the opinions of Gartners research organization and should not be construed as statements of fact. Gartner disclaims all warranties, expressed or implied, with respect to this research, including any warranties of merchantability or fitness for a particular purpose.

Read the original:
Hammerspace Named a 2022 Sample Vendor by Gartner - Business Wire

Can Red Hat and Accenture Solve Data Sovereignty? – RTInsights

In many jurisdictions, organizations are now required to store user data in the country where its collected and users live, which creates an enormous technical problem. A sovereign cloud might be the solution.

In a spate of announcements over the summer, Red Hat and Accurture said theyd extended their 12-year cloud partnership to pursue more innovations in hybrid cloud. But the smallest part of their announcementthat theyll collaborate on new products for the sovereign cloudis one of the most exciting, as its an area of data privacy thats churning with regulation and controversy.

In a statement, Raj Wickramasinghe, emerging platform lead at Accenture, said: Organizations are increasingly turning to hybrid cloud to help overcome complex challenges around core business functions like customer service and supply chain and to drive growth and innovation. Through our expanded alliance with Red Hat, we can further help clients embrace the cloud continuum to enable greater operational efficiency and drive innovation.

That sets the stage nicely for the idea of the sovereign cloud, which addresses how multinational organizations handle user data when deploying applications on one of the public cloud providers, like Google, Amazon, or Microsoft. In many jurisdictions, organizations are now required to store user data in the country where its collected, and users live, which creates an enormous technical problem: How do you possibly aggregate and analyze user data from multiple or dozens of different data stores?

The sovereign cloud doesnt relate to those data stores as much as it does the interconnectivity between thema place where data can flow freely and legally in a way that still enables viable applications for global audiences.

Red Hat and Accenture are adding a layer of open-source technologies and services to their sovereign cloud research and development, making it appealing to regulators and governments in the years to come.

See also: Solving for Sovereign Data with Edge AI

As soon as an organization accepts users from beyond a single country, they must start paying attention to the complex network of data privacy/security regulations. Aside from having their reputation on the line, failure to comply with data regulations can result in massive fineswell-well companies like Amazon, WhatsApp, and Google have all been fined hundreds of millions of dollars for GDPR violations.

The US, UK, and EU already have multiple regulations, with precedent-setting rulings, updates, and new initiatives always on the horizon.

The US has the CLOUD Act, which forces US public cloud providers to hand user data over to a government identity or law enforcement agency if they request it via a warrant, subpoena, or court order. That sounds simple enough, but the data requested might also be stored in another country, which creates conflict with that jurisdictions own requirements.

Thats one of the ways the CLOUD Act conflicts with the EUs General Data Protection Regulation (GDPR), which is perhaps the most well-known regulation, as its already caused lots of headaches for developers around storing personally identifiable information (PII) and is why you see so many cookie consent banners on the websites you visit, particularly if theyre based in the EU. Under the GDPR, cloud providers can only disclose personal data for legal requests made under EU law.

With these regulations at odds with one another, its not entirely clear what a cloud provider would do, for example, if the Security and Exchange Commission got a court order to hand over user data thats stored in Germany.

The landscape is dotted with other regulations that make it even harder to track and understand. Schrems II, a legal judgment published in July 2020 for the EU and UK, requires that organizations must individually and manually assess all data thats to be transferred to a non-EU country. The goal was to ensure the target country adheres to EU standards on data and privacy, but it also destroyed any opens of an open US-EU data highway, known then as EU-US Privacy Shield.

Like the CLOUD Act, the UKs COPO Act 2019 also allows UK law enforcement to compel non-UK companies to fork over user data.

Staying compliant with these conflicting rules is an enormous challenge for organizations and the public clouds they use to deploy applications and store user data, and an area thats overdue for concerted R&D.

Organizations can deploy a homegrown sovereign cloud today by working with smaller regional storage providers in target jurisdictions or deploying their own on-premises private cloud storage in every country where they do business.

Virtual data spaces are another burgeoning solution to this problem. If multiple trusted organizations partner together on establishing and maintaining the same high standards for storing and sharing data, they can safely share data without running afoul of any US, EU, or UK regulation. User data is never stored centrally in these spaces and only shared between partners when absolutely necessary.

On that front, GAIA-X is developing a federated European data infrastructure through a network that links many public clouds together. The goal is a European public cloud that respects the digital sovereignty of its users based on transparency and openness. Public cloud providers will have to commit to participating, but GAIA-X already has support from BMW, Deutsche Telekom, SAP, Siemens, Scaleway, and others.

As the general public gets more awareness of digital sovereignty and fines continue to stack up, this issue will only get messier, more complicated, and a lot more popular. Considering how Red Hat and Accenture have nothing concrete to announce, theyre likely years away from having a plug-and-play solution, which would do wonders for startups and small- or midsize-businesses who dont have enterprise-sized wallets.

Read more:
Can Red Hat and Accenture Solve Data Sovereignty? - RTInsights

Top 3 Ways to Slow Down Time Lapse on iPhone in 2022 – NerdsChalk

Time Lapses are a great way to capture long static footage whether youre interested in the weather or the landscape. Not only do they help provide an artistic touch, they also help save space on your device by only capturing a fraction of the usually needed frames.

However, if youve tried to capture a time-lapse on your iPhone then you might have realized that theres no visible way to control the speed of your time-lapse.

This can be quite a hindrance in a creative workflow and if youre in the same boat then heres how you can slow down your time lapses on an iPhone.

No, there is currently no native feature on an iPhone by default that allows you to control the speed of your Time Lapse videos. However, if youve recently bought a new device then chances are thatiMovieis pre-installed on your device.

iMovie is Apples free comprehensive video editor that has the ability to alter the time of your captured time lapses.

If preferred you can also use a third-party app to slow down your time lapses instead. Follow the next section to help you along with the process.

Related: How to Loop a Video on iPhone

We recommend you start by using iMovie to alter the speed of your time lapses. Third-party apps can sometimes face issues slowing down time lapses that havent been captured through the app.

If iMovie can not get you the desired final result, you can try using one of the third-party apps mentioned below instead.

Download iMovie on your device using the link above if it is not pre-installed. Once installed, open the same and tapMovie.

Tap and select yourTime Lapsefrom the previews on your screen. Time Lapse videos will have a small icon for the same in the bottom left corner of the thumbnail.

TapCreate Movieat the bottom.

The video will now be added to your timeline. Tap and drag the play head to the beginning of your video.

Tap on your video to select it. It should be highlighted in yellow once selected.

Tap theSpeed icon at the bottom.

Tap and drag the slider to adjust your speed. Drag it to the left to slow down your time-lapse.

You will be shown the new length of your video in your timeline as you adjust your speed.

Once youre happy with the changes, tapDonein the top left corner.

Tap theShareicon at the bottom.

Tap and selectSave Video.

And thats it! The slowed-down time-lapse will now be saved to your Photos app.

Related: How To Duet On Instagram Reels [Workaround]

while iMovie is a native app you get with your iPhone, you can also use a third-party app to slow down time lapses on an iPhone. Use either of the apps below depending on your preferences.

Skyflow is a time-lapse app that allows you to capture and edit your time-lapses as needed. Follow the steps below to help you along with the process.

Download and install Skyflow on your device using the link above. Once installed, open the app and tap theCameraicon at the top.

Now frame your shot and tap theIntervalicon and adjust how frequently you wish to capture frames.

Similarly, tap theDurationicon and adjust the duration of your Time Lapse.

Now adjust your other camera settings as needed and tapStart to start recording your video.

TapStop once youre done recording.

The video will be now be saved to your gallery. Now tap theBackicon.

Your captured videos will now be available in the Skyflow gallery. Tap and open the recently captured video.

Tap theRabbit to adjust and slow down your time-lapse.

Drag the slider to your left to slow down your time-lapse.

Now adjust other settings for your time-lapse if needed and tap theShareicon.

Tap and choose your export settings as needed. You can adjust the following options for your time-lapse.

TapExport once youve made your choices.

The video will now be exported and saved to thePhotosapp by default. You can use the options on your screen to either save it to theFiles app or share it to your preferred social media or cloud storage platform.

And thats how you can use Skyflow to capture and adjust the speed of a time-lapse.

Related: Best iPhone and Android Apps To Create Videos With Background Music

InShot is another video editor that you can use to slow down time lapses on your iPhone. Follow the steps below to help you along with the process.

OpenInShoton your device and tapVideo.

Grant permission to access your photos based on your preferences and you should now have access to thumbnails for your photos and videos. Tap and select yourTime Lapse from the previews on your screen.

Once selected, tap thecheckmark in the bottom right corner.

The video will now be added to your timeline. Tap and selectSpeedfrom the tools offered at the top.

Drag the slider to adjust the speed of your video. Move the slider to the left to slow down your time-lapse.

Tap and switch toCurve if you wish to selectively slow down or speed up your video.

Tap thecheckmark once youre happy with the speed of your video.

Now tap theShareicon in the top right corner.

Adjust your export settings as needed. You can alter and change the following aspects of your final video.

TapSaveonce youre done.

The video will now be saved to yourPhotosapp.If you wish to save the video to yourFilesapp, tapOther and selectSave to Files.

And thats how you can adjust the speed of your Time Lapse using InShot.

Related: How to Combine Videos on a Mac Using Apps Like Quicktime and Shotcut

Here are a few other video editing apps that can help you adjust the speed of your Time Lapse on an iPhone.

We hope this post helped you easily slow down Time Lapses on an iPhone. If you have any more questions, feel free to drop them in the comments below.

Related: How to Airdrop Between Mac and iPhone

The rest is here:
Top 3 Ways to Slow Down Time Lapse on iPhone in 2022 - NerdsChalk

YouTube Premium Has Its Perks. Here Are Some to Consider – WIRED

There are all kinds of digital subscriptions you can sign up for nowadaysfor cloud storage and fitness plans and music streaming and audiobooksand you simply cannot sign up for every single one. Even if you had the money, you wouldn't have the time to get your money's worth.

This brings us to YouTube Premium, the paid plan for the video-sharing site that you and billions of other people happily use for free. So why would you pay $12 a month for it? We're going to outline the perks here, so you can decide whether it's worth the price.

No Ads

Sitting through YouTube ads isn't the worst experience you're ever going to havemost of them can be skipped after a few seconds anywaybut you might be surprised at just how much better the YouTube experience is without the interruptions and hassles.

You can try YouTube Premium for freewhich we encourage you to doand that will give you an idea of the difference. It actually saves a significant amount of time, especially if you're a frequent YouTube user and spend a lot of time on the site or in the app.

Also, if you're using YouTube for music for a party, you won't have your tunes interrupted every few minutes by an advert. It also helps when you're presenting clips to other peopleat work or in a classroom, for example.

You can download videos to your device with YouTube Premium.

Built-In Video Downloads

YouTube Premium subscribers can also save videos for offline playback. This works in the YouTube apps for Android and iOS, as well as in desktop web browsers, so that you can take your videos anywhere.

No longer do you have to put up with a dodgy internet connection or a lack of Wi-Fi ruining your video streaming. Whether you're heading to a park or hopping on a plane, you're able to queue up a selection of clips for your viewing entertainment.

In the mobile apps, there's also a feature called Smart Downloads. This automatically downloads clips that YouTube thinks you will like (based on your recommendations), so you've always got something to watch, whether you're online or off.

YouTube Music

YouTube Music, which ordinarily would set you back $10 a year, is included with YouTube Premiumso you're getting a full music streaming service in the style of Spotify or Apple Music as one of your perks.

While YouTube Music might not be quite as feature-rich or as comprehensive as some of its rivals, it has everything that most people need. You can run it through a web browser or through the dedicated mobile apps, and there's the option to sync tracks to your devices for offline listening.

Read more from the original source:
YouTube Premium Has Its Perks. Here Are Some to Consider - WIRED

Verizon could bundle Apple One with its most expensive plan – Cult of Mac

Verizon's most expensive 5G plan could soon bundle Apple One for free. Photo: Ed Hardy/Cult of Mac

Verizon could soon become the first U.S. carrier to bundle an Apple One subscription for free with one of its plans. The network operator reportedly plans to announce the offer alongside the iPhone 14 series.

Apple One subscription pricing starts at $14.95 per month in the United States for a single user.

A new MacRumors report details that Verizon will most likely bundle Apple One with its 5G Get More plan. The carriers most expensive plan, it currently costs $90 per month for a single user. Verizon already bundles subscriptions to Apple Music, Disney+, Hulu, ESPN+ and 600GB of Verizon Cloud Storage as part of the plan. Combined, these services already cost well over $50 per month.

The report does not specify if the Apple One bundle will be available for existing subscribers. Verizon likely will announce the bundling of Apple One with its most expensive plan around the iPhone 14 launch, i.e., on or around Apples Far Out event on September 7.

Recently, U.K. carrier EE became the first carrier to bundle an Apple One subscription with a monthly cellphone plan.

The individual Apple One plan bundles subscriptions to Apple Music, Apple TV+, Apple Arcade and 50GB iCloud Storage into one. Subscribing to these services individually would cost $20.96 per month. Thanks to the bundle, they only have to pay $14.95. Higher Apple One tiers offer even more Apple services for even bigger savings.

It remains unclear if Verizon will allow users to upgrade to the Apple One Family plan for an additional fee. With the Family plan, you can share the Apple One bundle with your family members and get up to 200GB of iCloud storage.

The addition of the Apple One bundle would further improve the value proposition of Verizons most expensive plan.

See the original post:
Verizon could bundle Apple One with its most expensive plan - Cult of Mac

Dell boosts VxRail with DPUs running vSphere Blocks and Files – Blocks and Files

Dell Technologies has announced co-engineered developments with VMware covering VxRail hyperconverged appliances, special edge site VxRail systems, APEX cloud subscription offerings, and validated AI systems with automated machine learning.

The announcements were made at VMwares Explore event against the backdrop of Broadcoms pending acquisition of the virtualization company.

Jeff Boudreau, president of Dells Infrastructure Solutions Group, said: Dell Technologies and VMware have numerous joint engineering initiatives spanning core IT areas such as multicloud, edge and security to help our customers more easily manage and gain value from their data.

There are actually three VxRail announcements: VxRail with DPUs, VxRail and vSAN ESA, and VxRail modular edge nodes.

VxRail systems now support vSphere 8 software that has been designed to run on server-attached DPUs (data processing units) such as Nvidias BlueField-2. ThisvSphere Distributed Services Engine software is part of the Nvidia-VMware Project Monterey that offloads hypervisor, networking, security, and storage tasks from the CPU to the DPU. No configurations have been announced yet but we performance stats with some anticipation.

Dell told us that PowerEdge servers will support onboard DPUs as well.

Certain VxRail configs support VMwares new vSAN Enterprise Storage Architecture (ESA), which can deliver an up to 4x vSAN performance improvement through using NVMe technology. This vSAN ESA is a single-tier HCI storage setup and all NVMe VxRail models are optimized for it.

Dell has also announced rugged and modular VxRail systems for edge locations, the smallest form-factor VxRail systems to date.

We were told in a briefing that these new ruggedized modular nodes can be racked, stacked, and mounted for use anywhere in almost any environment and scale from two to 64 nodes. Theyre specifically designed with half-width blades and are the industrys first onboard integrated and purpose-built hardware witness.

A hardware witness is an ESXi host in a stretched cluster that stores virtual machine (VM) metadata, known as the witness components, for each VM object. If a host in the stretched cluster fails, the other sites may not be able to decide which one is the master or authoritative site. The witness provides a so-called vote to build a quorum and decide which is the main site. Then VMs from the failed site can be vMotioned to the new main site and restarted.

The onboard hardware witness removes the need for remote datacenter infrastructure power and administration thats typically required with a separate witness node.

We are envisaging non-rackmount chassis, and thinking of wall-mount systems and table-top designs. Dell envisages these mini-VxRail systems being used for healthcare, energy and utilities, and digital cities with deployments in high-latency, low-bandwidth locations.

Scale Computing has had a strong focus on edge location HCI systems for some years. For example, it has a cigarette box-sized HCI edge appliance, the HE150. This uses Intels NUC micro-PC processing hardware. We dont know if VxRail will come this far down the small system scaling curve.

APEX Cloud Services with VMware Cloud adds managed VMware Tanzu Kubernetes Grid services, meaning customers canprovision Kubernetes clusters and containerized workloads through the vSphere user interface.

APEX Private Cloud and APEX Hybrid Cloud offer new compute-only options so customers can scale compute and storage independently. They can connect compute-only instances to Dell storage such as APEX Data Storage Services.

Dell Validated Designs for AI Automatic Machine Learning (AutoML) uses automated machine learning models to help data scientists develop AI-powered applications. It includes validated configurations of VxRail hyperconverged infrastructure with H2O.ai, Nvidia, and VMware software with automation that delivers up to 18x faster AI models. This is according to an April 2020 Total Economic Impact Study Commissioned By Dell and Intel.

Link:
Dell boosts VxRail with DPUs running vSphere Blocks and Files - Blocks and Files