Hello World !

After long waits and about 4 months of beta program, I am extremely excited to announce the general availability of Druvaa Phoenix v1.0.

The entire team has been super busy to make this happen. And I am sure it would be quite evident when you give it a try.

Druvaa Phoenix

Reinventing Backup

Phoenix is designed ground-up for remote backups. Here are some of the key product features which make it ultra special -

  1. Global Source Based Data Deduplication – Over 90% reduction in backup time, bandwidth and storage.
  2. WAN Optimization – Understands high latency and noisy networks.
  3. Near Continuous Data Protection – snapshot/restore-points based point-in-time restores. No age-old full, incremental backups.
  4. Smart Bandwidth Scheduling - Set smart bandwidth limits for each backup schedule.

The Road Ahead

What we currently have is just a platform which will be used to showcase some market changing features -

  1. Search Based Restore – We missed this feature in v1.0, but should be available in the next v1.2 release
  2. “Blackbird SR-71 – A new storage engine with application aware data deduplication. This should be able to match an attachment inside exchange store at New Jersey to a file stored in a file-server at Kent. This should set the standards for backup performance.
  3. Long Distance Replication – Replicate backed up data over noisy long distance IP networks.
  4. Advanced Dashboard – The second best reporting dashboard (after Google Analytics).

Application aware Agents - Phoenix currently only comes with generic Windows agent, we plan to introduce these starting v2.0

Useful Links -

I welcome you guys to download a copy and share your feedback !

Performance Optimization

One of the major goals for inSync 2.1 release (due this week) is improved performance. With this new release users should be able to experience almost 30% speed improvements specially while syncing smaller files.

While working on inSync 2.1, team Druvaa rediscovered some tips and tricks for performance improvement -

Code Profilers
They can give you very quick insights into bottlenecks. It’s better to start at profiler output than from a hypothesis. Start working out a hypothesis only after profiler points out a bad function. We used gprof2dot, which plots a nice graph from prof or gprof output. An example is shown below -
The graph shows top down hierarchy of functions, the percentage of time each function consumes, the number of calls etc. The percentage of time consumed by a function puts the performance optimization exercise in the right perspective. You don’t want to optimize a function if it contributes just 1% to the whole processing time. The general idea is to concentrate on function that consumes substantial time and is not supposed to do it. Once a few functions like this are optimized, you can go for another round of profiling.

Network Utilization
It’s not sufficient to just reduce the network bandwidth usage. It’s equally important to completely utilize your share of the network bandwidth.
Especially for non-interactive applications, the throughput matters much more than the latency. In a system that uses a single threaded client to issue RPC calls, thethroughput is governed by the latency. If one RPC call takes a long time, the throughput is low even though there is no bottleneck, persay. Looking at it in a different way, the network is not being utilized when the server is processing the call. A multi-threaded client improves network utilization and also throughput. Sometimes the cause for poor network performance could be outside your code. For example, the TCP default window size shows poor performance with high latency-high bandwidth network. Increasing TCP window size improves performance for such networks and so does the use of multiple TCP connections.

Caching

Caching frequently used data reduces the database queries or disk reads. Database queries and disk reads may not consume the CPU cycles but they add to the latency in a big way.

Muti-threading can work around latency but it comes with its own overheads in terms of code complexity and resource consumption. Simple caching avoids frequent trips to database/disk. Databases and operating systems maintain their own cache but the overheads of connecting to a database or issuing a system call are avoided at best.
Beware of stale caches and serialization issues.

Delayed Writes
Synchronous writes are slow. Some writes, for example activity logs, can be delayed indefinitely. Other writes that need persistance gurantees can be synced in batches than individually.

This holds true for both databases and file systems. It’s cheaper to do multiple inserts in one sqlite transaction than to create one transaction for each insert. On the file system side, you are better

off writing a few MBytes to a file, followed by a fsync than multiple few KBytes of writes and a fsync for each write.

Batch requests

A batch of 10 queries sent to a database works faster than 10 queries issued one after the other. Encoding the 10 queries as a pl/sql function works even better. This is primarily due to the socket communication overheads, specifically the latency involved in it.

For inSync 2.1, we found that the lowest hanging fruits were with the database and file system interactions. We sure plucked all of them :)

Druvaa Replicator ver. 2.0 Released

May 5, 2008

Druvaa Software today announced the general availability of Druvaa Replicator version 2.0. Druvaa Replicator is a volume data replication and disaster recovery solution. It near-synchronously and non-disruptively replicates production data to target storage across heterogeneous operating environments (storage, application and OS) and over unlimited distances. The new release brings significant performance improvements for large servers and WAN based replication.

The new release comes with five key improvements -

  1. Performance improvements in replication agent specially for large servers
  2. Caching server is now an optional and separately priced
  3. Intelligent Data compression, minimal de-duplication and enhanced caching support at Caching Server
  4. Advanced reporting with detailed/searchable activity log
  5. Simplified user interface and license management

Version 2.0 is released on Microsoft Windows 2000/2003 server and RedHat Enterprise Linux release 4.x/5.x

More information about the product – http://www.druvaa.com/products/replicator.html

Evaluation version of Replication 2.0 can be directly downloaded from – http://www.druvaa.com/download/replicator.html
For further information and sales queries please contact sales@druvaa.com

About druvaa

Formed in 2007, Druvaa Software is a leading provider of Continuous Data Protection and Disaster Recovery solutions. Since inception Druvaa has released two products – Druvaa Replicator (Continuous Data Protection and Disaster Recovery) and Druvaa inSync (Enterprise Laptop Backup). Druvaa is angel funded by Indian Angel Network (IAN) and Accord Internation (HK).

About Druvaa – http://www.druvaa.com/about/
About Products – http://www.druvaa.com/products/

Druvaa Replicator ver 1.5 Released

November 01, 2007

Druvaa Software today announced the general availability of Druvaa Replicator version 1.5. Druvaa Replicator is a volume data replication and disaster recovery solution. It near-synchronously and non-disruptively replicates production data to target storage across heterogeneous operating environments (storage, application and OS) and over unlimited distances.

The new release comes with 4 new features -

  1. Fast writable snapshots
  2. Microsoft cluster (MSCS) support
  3. Multi-User interface with role-based access control
  4. Live Reports – graphs and system alerts

 

Version 1.5 is released on Microsoft Windows 2000/2003 server and RedHat Enterprise Linux release 4.x

More information about the product – http://www.druvaa.com/products/replicator.html
Would you like to evaluate the product ? Please send an email to sales@druvaa.com

About druvaa
Formed in 2007, Druvaa Software is a leading provider of Continuous Data Protection and Disaster Recovery solutions.

About Druvaa – http://www.druvaa.com/about/
About Products – http://www.druvaa.com/products/