Facebook, the global leader in social networking announced last week that it is planning to come up with an India office in Hyderabad this year. Don Faul, Facebook’s Director, Global Online Operations said,that Hyderabad office of Facebook will have operations & online sales teams.
The initial startup team of Facebook India office would have specialists on the Facebook product to handle online queries with online advertising experts to assist advertisers.
The India office of Facebook is planned along with a new office in Austin, Texas. The idea behind these expansion plan is to allow Facebook to better serve its more than 400 million users in addition to developers and advertisers.
It is interesting to know that over 70% Facebook users reside outside the U.S., using Facebook in more than 70 languages. In India alone, Facebook has over 8 million users.
Those who do not know Facebook is way ahead of Google’ social networking platform Orkut in terms of daily traffic and visit frequency.
The Facebook revolution internationally is a hit and Zynga, a developer of games for social networking sites has already launched its product development center in Bangalore.
Palo Alto-based Facebook however, ruled out plans to move sections of its product development & engineering to India.
There can be numerous ways your MySQL in database server can get corrupted despite the best of software and proficient users. Nevertheless MySQL recovery is not a complicated procedure especially in the presence of reliable backups.
InnoDB, the leading storage engine for MySQL has an automatic built-in recovery system that for large part operates very seamlessly. Whenever the database hosting goes down, InnoDB takes charge and tries to fix issue by running the log file from its last timestamp. In nine out of ten cases it actually succeeds. The not uncommon situations like and operating system crash or power failure provide instances where InnoDB itself takes care of tedious data recovery. However in the eventuality of InnoDB failing in providing automatic repair solution, the overall database will not start.
No less significant is the fact that regular backups of your database should be scheduled. Quite helpful is mysqldump utility for making backups of data as a snapshot in any available point of time. In order to create a “dump file” of MySQL database you can use the following command:
shell> mysqldump –single-transaction –flush-logs –master data=2 \
–all-databases > dump.sql
The output file can be named in any manner – in the above case it is named dump.sql. This dump.sql file consists of the tables, data, structures of all databases entirely backed up into an SQL text file, dump.sql.
In the above command “–single-transaction” option is particularly for InnoDB tables. This option carries out an online backup that allows no locks on tables.
Further to incremental changes have to be saved if you wish to make incremental backups, This process is best achieved by employing binary logs. It is advisable to start MySQL always with the –log-bin option to enable that binary log. In the mysqldump command referenced above there is a “–flush-logs” option which allows the server to flush out its logs. These logs can be scheduled to be flushed incrementally between dump backups to hold entire data changes made since the time of backup.
Let’s suppose you have a case where your database experiences a terrible crash. It is simple to restore If you have regular backups along with binary logs, restoring is not actually difficult. To begin with take restore to the last full backup which you have using the following command:
shell> mysql < dump.sql
This makes for restoration of data to the point it was at your last mysqldump backup. In order to restore various changes arisen since then, employ incremental backups from the binary log files that are clearly listed in the data directory of MySQL server (in our present example, logfilename-bin.000001 and logfilename-bin.000002).
shell> mysqlbinlog logfilename-bin.000001 logfilename-bin.000002 | mysql
About ZNetLive Blog
Welcome to ZNetLive Corporate Blog. Keep checking this blog for all the happenings of ZNetLive.
Subscribe for Exciting Offers:
Recent Posts
- Letter of Appreciation by Spring Fest 2012, IIT Kharagpur
- Announces 25% OFF
- ZNetLive bags HostReview-Readers’ Choice Award
- Opportunity for ZNet clients to win gift worth Rs. 14,000.
- Last Day to Grab .COM at Rs. 499
- ZNetLive Sponsoring IIT Madras Fest
- ZNetLive Announces Christmas Offers
- ZNetLive Announces 10 Exclusive Offers!!
- ZNetLive in Business Standard
- ZNetLive Celebrates Delhi 100th Birthday
- Nominate ZNetlive To Win Black iPod Touch 8GB!
- QR Code
- ZNetlive Won The Deloitte Technology Fast 500 Asia Pacific 2011 Award
- ZNetindia.com is now ZNetlive.in
- ZNet Technologies Won The Deloitte Technology Fast 50 India 2011 Award
