facebookpixel

Meet the New StorNext: Virtualized. Containerized. Cloud-Ready.

cloud

On April 27, we made a major announcement – a new software-defined architecture for StorNext and a new line of appliances in the Quantum H4000 Series. Although much of the focus might be on the new line of appliances, the real magic is the software architectural work that we’ve done under the covers. 

In this new software-defined and virtualized architecture, StorNext 7 file services, data services, and block services run virtually on a single platform. StorNext 7 has been virtualized, and major architectural components, such as management layer and APIs have been containerized in a Docker environment. In short, it is a totally redefined, modern, and cloud-ready software architecture

h4000 blog arch

This represents a major architectural step toward enabling public- and hybrid-cloud deployments of the StorNext 7 file system and will make it possible to use StorNext on additional cloud and hardware platforms in the future.  

Easy to Deploy and Use in More Places than Ever

What does this mean for our customers? It means that StorNext is now virtualized, and easier to deploy and use in more places than ever before, whether it’s at the edge, on set, in the field, or anywhere you want to stand up a complete, collaborative environment or extend your production workflow. This new software delivers greater efficiency, more flexibility, and a dramatically simplified user experience. Explore the new Quantum H4000 here .

Join Us for a Live Quantum H4000 Tour

Join us on May 18 I 10AM PDT for a live tour of the new StorNext 7 software-defined architecture and the simplified easy-to-use interface. We’ll show you how to deploy the H4000 with StorNext in minutes, so you can easily harness the power of data to accelerate your workflows and production pipelines.

Register Now

To view our Partner blog, click here

This Week at the Q

ActiveScale

Welcome to another entry of ‘This Week at the Q’ and our top 5 highlights. It’s been a busy week continuing the product announcements from our expanded portfolio!

1. Continuing on the news from last week’s launch of our new expanded portfolio – covered here in Blocks & Files – this week we announced more details around our next-gen StorNext® 7 high-performance file system and ActiveScaleTM object storage advancements.

sn gui

2. This new byline by Matt Dewey on “Managing Complex Object Stores” just published in Disaster Recovery Journal. Object stores have found a home in the cloud and in data centers, becoming the repository for long-lived and high-value data. Read more here to learn about use cases for object storage, its advantages in key markets, as well as some of the challenges it can present and what to consider.

activscale

3. We enjoyed connecting with the high-performance computing community this week at the virtual SC20 event. If we missed you, you can still check out this video interview we did with InsideHPC, “At Virtual SC20: Quantum Corp. Takes on High Performance Storage of Unstructured Data.”

sc20

4. Check out this new blog post, “Cyber Insurance Market is Evolving Due to Ransomware Demands.” You can learn how the cyber security insurance market is evolving amidst an increase in ransomware demands and payments. Insurance companies are starting to move the risk over to subscribers, requiring stricter controls. Read more here.

cyber insurance

5. One of the reasons I love working at Quantum is the culture and the people I get to work with every day, and it is most definitely an honor to work with Liz King! Get to know Quantum’s CRO a little more in this new Authority Magazine article, ”Women of the C-Suite: Liz King of Quantum.”

liz king 1

Leave a comment if there are topics you’d like to see added to our weekly top 5 happenings!

Natasha

To view our Partner blog, click here

This Week at the Q

cloud

Welcome to another entry of ‘This Week at the Q’ and our top 5 highlights!

1. We have some great new explainer videos highlighting some key features of our ActiveScaleTM software that ensure data availability and integrity with a hands-off experience. Intelligent Dynamic Data Placement (DDP) and Dynamic Data Repair (DDR) are key to data’s long-term viability by monitoring data health and providing repair when errors are discovered. Learn more about DDP here and DDR here .

2. Customer success is always a favorite highlight in our week! This week we feature Canal Extremadura in Spain. As they made the transformation from a traditional radio and TV business to a modern multimedia corporation, they also needed to revamp a complex and aging IT infrastructure. Quantum collaborated and provided the content access and scalability needed for an evolving business.  Read more in Canal Extremadura’s case study here .

canal

3. Check out this new case study from our partner, Chesa. Cortina Productions, located in the DC metro area, designs and produces multimedia experiences for museums, cultural institutions, visitor centers, and aquariums across the world. With 4D theaters, and AR and VR experiences, they’re on the forefront of technology. We’re proud to have partnered with Chesa to help manage Cortina’s data more efficiently and with improved accessibility to support their more complex projects and rapid growth.

4. Want to run a cloud-based application against data that StorNext® has stored in the cloud? Need access to that data from other sites? Looking to share files with business partners via the cloud? It’s all possible! Read more in this new blog from Dan Duperron.

5. Did you miss our pumpkin carving event? Learn from the master pumpkin carver from Maniac Pumpkin Carvers. You can check out the replay here – and enter our contest by posting your photos with hashtag #QuantumTransformedPumpkins. We will announce winners on social media!

quantum pumpkin image

Leave a comment if there are topics you’d like to see added to our weekly top 5 happenings!

Natasha

To view our Partner blog, click here

Leveraging StorNext’s Self-Describing Objects

cloud

Want to run a cloud-based application against data that StorNext has stored in the cloud? Now you can.  Need access to that data from other sites? Now it’s possible. Looking to share files with business partners via the cloud? You’ve got it. Even if you just want insurance that you can always get your data back from the cloud, through disaster or technology obsolescence, it’s here.

StorNext has been ‘cloud-aware’ for a very long time, making it easy to use public cloud destinations or on-prem object stores to store and protect warm and cold data. With the release of v6.4, StorNext can now store additional metadata with objects, including the full path and filename of the source file.  Previously, this information was only available by querying StorNext directly. Storing the path and filename in the cloud with the object makes these objects “self-describing.”

To enable massive scale, StorNext stores the source path and filename in a user-defined metadata field.  You can see the contents of this field using tools like the AWS Console, S3 Browser or Cyberduck. That’s fine if you only have a few objects to manipulate, but if you need to handle a lot of objects, it’s better to write a script.

I am not a programmer. I have done some coding, but mostly in C back when I was an EE student, and that was almost 30 years ago.  So, believe me when I tell you that if I can do this, you can do this.

Below is a sample script that will copy every object from a StorNext-controlled AWS bucket down to the local machine, naming the resulting files using the paths and filenames stored by StorNext with the objects.

I used PowerShell on Windows because it seemed minimally intimidating, and because Amazon has something called AWS Tools for PowerShell that provides easy access to AWS APIs. In case you didn’t know, PowerShell is available for Linux and MacOS too, and the basic concepts I used could easily be translated to your favorite development environment.

Here’s the script:


# Credentials must have been established prior to running this script using 'Set-AWSCredential' directly or recalling a stored profile
 
# Set source bucket and destination local path
$bucket = '228868asn64tapeaws'
$localPath = 'C:test'
 
# Scan all objects in bucket, load metadata into array 'objects'
$objects = Get-S3Object -BucketName $bucket
 
# Loop through object metadata, pull object keys into array 'fileName'
foreach ($object in $objects) {
$fileName = $object.Key
 
# Loop through array 'fileName', & for each object key do a few things:
foreach ($file in $fileName) {

# Get object metadata
$Metadata = Get-S3ObjectMetadata -Bucketname $bucket -Key $fileName -Select 'Metadata’

# Set 'localFileName' to SN stored path
$localFileName = $Metadata.Item('x-amz-meta-path')

# Create valid local path including filename
$localFilePath = Join-Path $localPath $localFileName

# URL Decode local path
$localFilePath = [System.Web.HttpUtility]::UrlDecode($localFilePath)

# Download object to local path & name
Read-S3Object -BucketName $bucket -Key $fileName -File $localFilePath }}

That’s it. Less than a dozen lines of code, and I bet someone smarter could make it even simpler. When you run it, you get a result that looks like this:

sn blog 1

It is much more useful than what you get if you simply download the objects, which looks like this:

filename

This was a dirt-simple example, (and it comes with absolutely no warranty), but even I can see that the possibilities for customization are endless. We have plans to make it easier to browse and re-use objects for ad-hoc use cases, but for handling lots of objects or where complex filtering is required, scripting will always be the best way. I hope I’ve convinced you that it doesn’t have to be hard. For complete details on how I set up AWS Tools for PowerShell and additional information, please see our Tech Brief entitled “Accessing StorNext Self-Describing Objects with PowerShell” available here .

Final note: Thanks to everyone who shares their PowerShell knowledge on the ‘Net. This blog in particular provided a critical jump start to my thinking.

To view our Partner blog, click here

Ustream CEO to Speak at IBM InterConnect 2015

bhunstable

Ustream CEO Brad Hunstable will appear on stage at two sessions during IBM InterConnect 2015: The Premier Cloud & Mobile Conference. Thousands will gather next week at the MGM Grand & Mandalay Bay in Las Vegas for the event, which features more than 1,500 technical sessions, 42 tracks, 8 streams, 3 general sessions, hundreds of

The post Ustream CEO to Speak at IBM InterConnect 2015 appeared first on Streaming Video Blog .

To view our Partner blog, click here