Hi all,
I am moving to Solaris11 and is trying to understand how ZFS snapshot works.
Chances upon this Oracle Blog and can't wrap my head around it.
https://blogs.oracle.com/solaris/understanding-the-space-used-by-zfs-v2
Hope gurus here can shed some light .
=======
... (4 Replies)
Hi,
I work as an Oracle Technical consultant (mainly DBA related), and I have used ZFS snapshots on previous projects which has helped me a great deal. I often take snapshots before doing some dev work, and then I can roll it back if I want to start again, or if it goes pear shaped!!
I have... (4 Replies)
I have a question regarding installing recommended patch clusters via ZFS snapshots. Someone wrote a pretty good blog about it here:
Initial Program Load: Live Upgrade to install the recommended patch cluster on a ZFS snapshot
The person's article is similar to what I've done in the past. ... (0 Replies)
Hi,
I'm thinking of running a script via cron (every hour) to do the log rolling.
The file is "file.txt" and there going to be 10 files rolling (file.txt.n).
The file is being written constantly by an application.
The script will do the following:
1. cat file.txt > file.txt.0
2. cat... (0 Replies)
Managed Object(3m17n) The m17n Library Managed Object(3m17n)NAME
Managed_Object - Objects managed by the reference count.
Data Structures
struct M17NObjectHead
The first member of a managed object.
Functions
void * m17n_object (int size, void(*freer)(void *))
Allocate a managed object.
int m17n_object_ref (void *object)
Increment the reference count of a managed object.
int m17n_object_unref (void *object)
Decrement the reference count of a managed object.
Detailed Description
Objects managed by the reference count.
Managed objects are objects managed by the reference count.
There are some types of m17n objects that are managed by their reference count. Those objects are called managed objects. When created, the
reference count of a managed object is initialized to one. The m17n_object_ref() function increments the reference count of a managed
object by one, and the m17n_object_unref() function decrements by one. A managed object is automatically freed when its reference count
becomes zero.
A property whose key is a managing key can have only a managed object as its value. Some functions, for instance msymbol_put() and
mplist_put(), pay special attention to such a property.
In addition to the predefined managed object types, users can define their own managed object types. See the documentation of the
m17n_object() for more details.
Author
Generated automatically by Doxygen for The m17n Library from the source code.
Data Structure Documentation
M17NObjectHead
FIELD DOCUMENTATION:
void* M17NObjectHead::filler[2]
COPYRIGHT
Copyright (C) 2001 Information-technology Promotion Agency (IPA)
Copyright (C) 2001-2011 National Institute of Advanced Industrial Science and Technology (AIST)
Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License
<http://www.gnu.org/licenses/fdl.html>.
Version 1.6.2 12 Jan 2011 Managed Object(3m17n)